@charset "UTF-8";
/*
Theme Name:
Theme URI:
Author: Ryoka Ikematsu
Description:
Version: 1.0
*/
/** Global + Mixin
 * -------------------------------------------------------------------
 */
/*
 * Fonts
 * -------------------------------------------------------------------
 */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
/* A Modern CSS Reset */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
}

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

main {
  display: block;
}

body, p, figure, blockquote, dl, dd, table, address, pre, iframe, form {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

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

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

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

address {
  font-style: inherit;
}

small {
  font-size: 80%;
}

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

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

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

input, button, optgroup, select, textarea {
  margin: 0;
  padding: 0;
  text-align: inherit;
  vertical-align: middle;
  text-transform: inherit;
  color: inherit;
  border-radius: 0;
  background: transparent;
  font: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

button, [type=button], [type=reset], [type=submit] {
  cursor: pointer;
}

button:disabled, [type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled {
  cursor: default;
}

textarea {
  overflow: auto;
}

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

[type=search] {
  outline-offset: -2px;
  /* 1 */
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-collapse: collapse;
  border-color: inherit;
}

caption {
  text-align: left;
}

td, th {
  padding: 0;
  vertical-align: top;
}

th {
  text-align: left;
  font-weight: bold;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

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

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg, img, embed, object, iframe {
  vertical-align: bottom;
}

hr {
  clear: both;
  overflow: visible;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  margin: 0;
  color: inherit;
  border-top-width: 1px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
/*
 * HTML
 * -------------------------------------------------------------------
 */
html {
  font-size: 62.5%;
  overflow-x: hidden;
}

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

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

/*
 * wrapper
 * -------------------------------------------------------------------
 */
.wrapper {
  display: block;
  min-height: 100vh;
  margin: 0 auto;
  padding: 0;
}
.wrapper > section {
  position: relative;
  z-index: 3;
}

.inner {
  position: relative;
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .inner {
    padding: 0 25px;
  }
}
@media screen and (min-width: 992px) {
  .inner {
    padding: 0;
  }
}

@-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;
  }
}
/*
 * SCROLL DOWN
 * -------------------------------------------------------------------
 */
@-webkit-keyframes circlemove {
  0% {
    bottom: 45px;
  }
  100% {
    bottom: -5px;
  }
}
@keyframes circlemove {
  0% {
    bottom: 45px;
  }
  100% {
    bottom: -5px;
  }
}
@-webkit-keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
/*
 * Youtube
 * -------------------------------------------------------------------
 */
@-webkit-keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter, div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.wp-caption {
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
  border: 1px solid #dddddd;
  background: #ffffff;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  width: auto;
  max-width: 98.5%;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0 none;
}

.wp-caption p.wp-caption-txt {
  margin: 0;
  padding: 0 4px 5px;
  font-size: 11px;
  line-height: 17px;
}

/* Text meant only for screen readers. */
.screen-reader-txt {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  word-wrap: normal !important;
  border: 0;
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-txt:focus {
  z-index: 100000;
  top: 5px;
  left: 5px;
  display: block;
  clip: auto !important;
  width: auto;
  height: auto;
  padding: 15px 23px 14px;
  text-decoration: none;
  color: #333333;
  background-color: #aaaaaa;
  font-size: 1em;
  line-height: normal;
  -webkit-clip-path: none;
          clip-path: none;
  /* Above WP toolbar. */
}

/*
 * Module
 * -------------------------------------------------------------------
 */
.lato {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.light {
  font-weight: 300;
}

.medium {
  font-weight: 500;
}

.bold {
  font-weight: 700;
}

.pc-area {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-area {
    display: block;
  }
}

.sp-area {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp-area {
    display: none;
  }
}

.new-line--sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .new-line--sp {
    display: none;
  }
}
.new-line--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .new-line--pc {
    display: block;
  }
}

a[href^="tel:"] {
  pointer-events: initial;
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
a:hover {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  opacity: 0.7;
}

.zoom-in img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.zoom-in a:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.scroll-box {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.scroll-box::-webkit-scrollbar {
  height: 5px;
}
.scroll-box::-webkit-scrollbar-track {
  border-radius: 5px;
  background: #dddddd;
}
.scroll-box::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #aaaaaa;
}

/*========= Animation =========*/
.animate__animated {
  /* フェードアップ */
  /* フェードダウン */
  /* 右から左にフェード */
  /* 左から右にフェード */
}
.animate__animated.js_fadeup {
  -webkit-animation-name: fadeup;
          animation-name: fadeup;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  opacity: 0;
}
@-webkit-keyframes fadeup {
  from {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeup {
  from {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.animate__animated.js_fadedown {
  -webkit-animation-name: fadedown;
          animation-name: fadedown;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  opacity: 0;
}
@-webkit-keyframes fadedown {
  from {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadedown {
  from {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.animate__animated.js_fadeleft {
  -webkit-animation-name: fadeleft;
          animation-name: fadeleft;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  opacity: 0;
}
@-webkit-keyframes fadeleft {
  from {
    -webkit-transform: translateX(150px);
            transform: translateX(150px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeleft {
  from {
    -webkit-transform: translateX(150px);
            transform: translateX(150px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
.animate__animated.js_faderight {
  -webkit-animation-name: faderight;
          animation-name: faderight;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  opacity: 0;
}
@-webkit-keyframes faderight {
  from {
    -webkit-transform: translateX(-150px);
            transform: translateX(-150px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes faderight {
  from {
    -webkit-transform: translateX(-150px);
            transform: translateX(-150px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

.nav-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: #aaaaaa 1px solid;
}
.nav-header__container {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-end;
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  align-items: flex-end;
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  max-width: 1000px;
  height: 8rem;
  margin: 0 auto;
  padding: 10px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (min-width: 768px) {
  .nav-header__container {
    display: -webkit-box;
    display: flex;
    display: -ms-flexbox;
    justify-content: flex-end;
    -webkit-box-pack: flex-end;
    -ms-flex-pack: flex-end;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    height: 7rem;
  }
}
@media screen and (min-width: 992px) {
  .nav-header__container {
    padding: 15px;
  }
}
.nav-header__logo {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: auto;
  color: #333333;
  font-size: 2rem;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.nav-header__logo-img {
  display: block;
  max-width: 24rem;
}
@media screen and (min-width: 768px) {
  .nav-header__logo-img {
    max-width: 28.8rem;
  }
}
.nav-header__txt {
  background-color: #153276;
  color: #ffffff;
  padding: 0.4rem 0.4rem;
  border-radius: 0.4rem;
  display: block;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .nav-header__txt {
    display: inline-block;
    padding: 0.6rem 1rem;
    font-size: 1.8rem;
    margin-left: 1rem;
    margin-bottom: 0;
  }
}
.nav-header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-header__menu-item {
  position: relative;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.nav-header__contact {
  display: block;
  width: 4.5rem;
  height: auto;
  margin-left: 1rem;
}
.nav-header__contact--img {
  width: 100%;
  height: auto;
}
.nav-header__toggle {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 8rem;
  height: 8rem;
  cursor: pointer;
  background: #153276;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (min-width: 992px) {
  .nav-header__toggle {
    display: none;
  }
}
.nav-header__toggle:hover {
  background: #112960;
}
.nav-header__toggle-line {
  display: block;
  width: 35%;
  border-bottom: 2px solid #ffffff;
}
.nav-header__toggle-line:nth-child(2) {
  margin: 10% 0;
}

.nav-pagetop {
  position: fixed;
  z-index: -1000;
  right: 15px;
  bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -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;
  width: 60px;
  height: 60px;
  cursor: pointer;
  opacity: 0;
  color: #ffffff;
  border-radius: 50%;
  background: #153276;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.nav-pagetop.active {
  z-index: 1000;
  opacity: 1;
}
.nav-pagetop:before {
  display: block;
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  content: "\e5ce";
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.nav-pagetop:after {
  content: "PAGETOP";
  display: block;
  padding: 4px 0;
}
.nav-pagetop:hover {
  background: #112960;
  -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);
}

.mainvisual {
  position: relative;
}
.mainvisual__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
  max-width: 1000px;
  margin: 0 auto;
  padding: 8rem 15px 0;
  text-align: center;
  position: relative;
  height: 54vh;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .mainvisual__container {
    height: 35vh;
  }
}
.mainvisual__txt-group {
  text-align: left;
  border-left: #153276 3px solid;
  padding-left: 1.5rem;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .mainvisual__txt-group {
    padding-left: 2.5rem;
  }
}
@media screen and (min-width: 992px) {
  .mainvisual__txt-group {
    padding-left: 3.5rem;
  }
}
.mainvisual__txt-sub {
  color: #333333;
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .mainvisual__txt-sub {
    font-size: 2rem;
  }
}
.mainvisual__txt-main {
  font-size: 3rem;
  color: #153276;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .mainvisual__txt-main {
    font-size: 4.6rem;
  }
}
.mainvisual__txt-main span {
  display: block;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .mainvisual__txt-main span {
    font-size: 2.3rem;
  }
}
.mainvisual__list {
  margin-top: 1rem;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
.mainvisual__list-item {
  border: #153276 1px solid;
  border-radius: 0.4rem;
  padding: 0.4rem 0.8rem;
  margin-right: 0.8rem;
  color: #153276;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .mainvisual__list-item {
    font-size: 1.8rem;
  }
}
.mainvisual__message {
  margin-top: 2rem;
  font-size: 1.4rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .mainvisual__message {
    margin-top: 2.5rem;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .mainvisual__message {
    margin-top: 4rem;
  }
}

.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__txt-main {
  font-size: 2.5rem;
  border-left: #153276 3px solid;
  padding-left: 1rem;
}
@media screen and (min-width: 768px) {
  .page-heading__txt-main {
    font-size: 3.2rem;
  }
}
.page-heading__content--left .page-heading__txt-main::after {
  margin-right: auto;
  margin-left: 0;
}
.page-heading__content--center .page-heading__txt-main::after {
  margin-right: auto;
  margin-left: auto;
}
.page-heading__content--right .page-heading__txt-main::after {
  margin-right: 0;
  margin-left: auto;
}
.page-heading__txt-sub {
  padding-top: 2.4rem;
  color: #333333;
  font-size: 1.6rem;
  font-weight: 400;
}
.page-heading__message {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 3.2rem;
  text-align: left;
  color: #333333;
  font-size: 1.4rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .page-heading__message {
    font-size: 2rem;
  }
}

.page-heading-sub__content {
  margin: 0;
  padding: 0;
}
.page-heading-sub__content--left {
  text-align: left;
}
.page-heading-sub__content--center {
  text-align: center;
}
.page-heading-sub__content--right {
  text-align: right;
}
.page-heading-sub__txt {
  position: relative;
  font-size: 2.4rem;
}
.page-heading-sub__txt:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 1.6em;
  margin-right: 0.8rem;
  vertical-align: middle;
  border-radius: 3px;
  background: #153276;
}
.page-heading-sub__message {
  margin: 0 auto;
  padding-top: 1.6rem;
  color: #aaaaaa;
  font-size: 1.6rem;
  font-weight: 400;
}

.footer {
  position: relative;
  z-index: 3;
}
.footer__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.5rem;
}
.footer__columns {
  padding: 1.5rem 1.5rem 4rem;
}
@media screen and (min-width: 768px) {
  .footer__columns {
    display: -webkit-box;
    display: flex;
    display: -ms-flexbox;
    justify-content: space-between;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    align-items: flex-end;
    -webkit-box-align: flex-end;
    -ms-flex-align: flex-end;
  }
}
@media screen and (min-width: 768px) {
  .footer__column {
    width: 50%;
  }
}
.footer__column--link {
  margin-top: 1.5rem;
  display: block;
  cursor: pointer;
  padding: 0.5rem 1.5rem 1rem;
  border: #dddddd 1px solid;
}
.footer__column--tel {
  margin-top: 1.5rem;
  color: #153276;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3rem;
  text-align: center;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .footer__column--tel {
    font-size: 4.5rem;
  }
}
.footer__column--message {
  margin-top: 1rem;
  font-size: 1.3rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__column--message {
    font-size: 2rem;
  }
}
.footer__link {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: auto;
  color: #333333;
  font-size: 2rem;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media screen and (min-width: 768px) {
  .footer__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.footer__txt {
  background-color: #153276;
  color: #ffffff;
  padding: 0.4rem 0.4rem;
  border-radius: 0.4rem;
  display: block;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .footer__txt {
    display: inline-block;
    padding: 0.6rem 1rem;
    font-size: 1.8rem;
    margin-left: 1rem;
    margin-bottom: 0;
  }
}
.footer__img {
  display: block;
  max-width: 24rem;
}
@media screen and (min-width: 768px) {
  .footer__img {
    max-width: 28.8rem;
  }
}
.footer .footer-area {
  margin-top: 2.5rem;
}
.footer .footer-area__ttl {
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .footer .footer-area__ttl {
    font-size: 1.8rem;
  }
}
.footer .footer-area__list {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 1rem;
}
.footer .footer-area__list-item {
  margin-right: 1rem;
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .footer .footer-area__list-item {
    font-size: 1.6rem;
  }
}
.footer__copy {
  padding: 1.6rem 0;
  text-align: center;
  color: #666666;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .footer__copy {
    font-size: 1.4rem;
  }
}

.button-guide {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 60rem;
  margin: 0 auto;
  padding: 1.6rem;
  color: #333333;
  border: none;
  border-radius: 8px;
  background: #aaaaaa;
  font-size: 1.6rem;
  font-weight: 400;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s, -webkit-box-shadow 0.2s;
  transition: text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s, -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s, -webkit-box-shadow 0.2s;
  text-align: center;
  text-decoration: none;
  border: none;
  outline: none;
  line-height: 1;
  display: flex;
}
.button-guide::after {
  content: "";
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  content: "\e5cc";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 25px;
}
.button-guide:hover, .button-guide:focus {
  color: #ffffff;
  background: #153276;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.button-guide:hover::after {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  right: 20px;
}

.button-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 60rem;
  margin: 0 auto;
}
.button-detail .button-detail__button--next, .button-detail .button-detail__button--prev, .button-detail .button-detail__button--back, .button-detail .button-detail__button {
  margin-bottom: 2.4rem;
  padding: 1.6rem 2.4rem;
  color: #333333;
  border-radius: 0.4rem;
  background: #aaaaaa;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s, -webkit-box-shadow 0.2s;
  transition: text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s, -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s, -webkit-box-shadow 0.2s;
  text-align: center;
  text-decoration: none;
  border: none;
  outline: none;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.button-detail .button-detail__button--next:hover, .button-detail .button-detail__button--prev:hover, .button-detail .button-detail__button--back:hover, .button-detail .button-detail__button:hover, .button-detail .button-detail__button--next:focus, .button-detail .button-detail__button--prev:focus, .button-detail .button-detail__button--back:focus, .button-detail .button-detail__button:focus {
  color: #ffffff;
  background: #153276;
}
.button-detail__button--back {
  width: 100%;
}
.button-detail__button--back:before {
  margin-right: 0.8rem;
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  content: "\e896";
}
.button-detail__button--prev {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .button-detail__button--prev {
    width: calc(50% - 15px);
    margin-right: 15px;
  }
}
.button-detail__button--prev:before {
  margin-right: 0.8rem;
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  content: "\e5cb";
}
.button-detail__button--next {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .button-detail__button--next {
    width: calc(50% - 15px);
    margin-left: 15px;
  }
}
.button-detail__button--next:after {
  margin-left: 0.8rem;
  display: inline-block;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  direction: ltr;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  content: "\e5cc";
}

.form {
  margin-top: 2.4rem;
}
@media screen and (min-width: 992px) {
  .form__form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.form__form-group-title {
  padding: 1rem;
}
@media screen and (min-width: 992px) {
  .form__form-group-title {
    width: 260px;
    padding: 1.6rem;
  }
}
.form__form-group-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem 0;
}
@media screen and (min-width: 992px) {
  .form__form-group-content {
    width: calc(100% - 260px);
    padding: 1.5rem;
  }
}
.form .form__label--required, .form .form__label--itemname, .form .form__label {
  display: inline-block;
  letter-spacing: 0.08em;
  font-weight: 700;
  line-height: 1;
}
.form__label--itemname {
  color: #333333;
}
.form__label--required {
  margin-left: 0.4rem;
  padding: 0.4em 0.6em;
  color: #ffffff;
  border-radius: 3px;
  background: #e10000;
  font-size: 1.2rem;
}
.form__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.form__list-item {
  margin-bottom: 0.6rem;
}
.form .form__input--check, .form .form__input--radio, .form .form__input--select, .form .form__input--txtarea-half, .form .form__input--txtarea, .form .form__input--txt-half, .form .form__input--txt, .form .form__input {
  position: relative;
  width: 100%;
  padding: 0.4rem;
}
.form .form__input--select select, .form__input--select .form select, .form .form__input--txtarea-half textarea, .form__input--txtarea-half .form textarea, .form .form__input--txtarea textarea, .form__input--txtarea .form textarea, .form .form__input--txt-half input, .form__input--txt-half .form input, .form .form__input--txt input, .form__input--txt .form input {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin: 0;
  border: 1px solid #aaaaaa;
  outline: none;
  background: #ffffff;
  font-size: 1.6rem;
  font-weight: 400;
  border-radius: 0.4rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* 旧Edge対応 */
  /* IE対応 */
}
.form .form__input--select select::-ms-expand, .form__input--select .form select::-ms-expand, .form .form__input--txtarea-half textarea::-ms-expand, .form__input--txtarea-half .form textarea::-ms-expand, .form .form__input--txtarea textarea::-ms-expand, .form__input--txtarea .form textarea::-ms-expand, .form .form__input--txt-half input::-ms-expand, .form__input--txt-half .form input::-ms-expand, .form .form__input--txt input::-ms-expand, .form__input--txt .form input::-ms-expand {
  display: none;
}
.form .form__input--select select::-webkit-input-placeholder, .form__input--select .form select::-webkit-input-placeholder, .form .form__input--txtarea-half textarea::-webkit-input-placeholder, .form__input--txtarea-half .form textarea::-webkit-input-placeholder, .form .form__input--txtarea textarea::-webkit-input-placeholder, .form__input--txtarea .form textarea::-webkit-input-placeholder, .form .form__input--txt-half input::-webkit-input-placeholder, .form__input--txt-half .form input::-webkit-input-placeholder, .form .form__input--txt input::-webkit-input-placeholder, .form__input--txt .form input::-webkit-input-placeholder {
  color: #666666;
}
.form .form__input--select select::-moz-placeholder, .form__input--select .form select::-moz-placeholder, .form .form__input--txtarea-half textarea::-moz-placeholder, .form__input--txtarea-half .form textarea::-moz-placeholder, .form .form__input--txtarea textarea::-moz-placeholder, .form__input--txtarea .form textarea::-moz-placeholder, .form .form__input--txt-half input::-moz-placeholder, .form__input--txt-half .form input::-moz-placeholder, .form .form__input--txt input::-moz-placeholder, .form__input--txt .form input::-moz-placeholder {
  color: #666666;
}
.form .form__input--select select:-ms-input-placeholder, .form__input--select .form select:-ms-input-placeholder, .form .form__input--txtarea-half textarea:-ms-input-placeholder, .form__input--txtarea-half .form textarea:-ms-input-placeholder, .form .form__input--txtarea textarea:-ms-input-placeholder, .form__input--txtarea .form textarea:-ms-input-placeholder, .form .form__input--txt-half input:-ms-input-placeholder, .form__input--txt-half .form input:-ms-input-placeholder, .form .form__input--txt input:-ms-input-placeholder, .form__input--txt .form input:-ms-input-placeholder {
  color: #666666;
}
.form .form__input--select select::-ms-input-placeholder, .form__input--select .form select::-ms-input-placeholder, .form .form__input--txtarea-half textarea::-ms-input-placeholder, .form__input--txtarea-half .form textarea::-ms-input-placeholder, .form .form__input--txtarea textarea::-ms-input-placeholder, .form__input--txtarea .form textarea::-ms-input-placeholder, .form .form__input--txt-half input::-ms-input-placeholder, .form__input--txt-half .form input::-ms-input-placeholder, .form .form__input--txt input::-ms-input-placeholder, .form__input--txt .form input::-ms-input-placeholder {
  color: #666666;
}
.form .form__input--select select::placeholder, .form__input--select .form select::placeholder, .form .form__input--txtarea-half textarea::placeholder, .form__input--txtarea-half .form textarea::placeholder, .form .form__input--txtarea textarea::placeholder, .form__input--txtarea .form textarea::placeholder, .form .form__input--txt-half input::placeholder, .form__input--txt-half .form input::placeholder, .form .form__input--txt input::placeholder, .form__input--txt .form input::placeholder {
  color: #666666;
}
.form .form__input--select select::-ms-input-placeholder, .form__input--select .form select::-ms-input-placeholder, .form .form__input--txtarea-half textarea::-ms-input-placeholder, .form__input--txtarea-half .form textarea::-ms-input-placeholder, .form .form__input--txtarea textarea::-ms-input-placeholder, .form__input--txtarea .form textarea::-ms-input-placeholder, .form .form__input--txt-half input::-ms-input-placeholder, .form__input--txt-half .form input::-ms-input-placeholder, .form .form__input--txt input::-ms-input-placeholder, .form__input--txt .form input::-ms-input-placeholder {
  color: #666666;
}
.form .form__input--select select:-ms-input-placeholder, .form__input--select .form select:-ms-input-placeholder, .form .form__input--txtarea-half textarea:-ms-input-placeholder, .form__input--txtarea-half .form textarea:-ms-input-placeholder, .form .form__input--txtarea textarea:-ms-input-placeholder, .form__input--txtarea .form textarea:-ms-input-placeholder, .form .form__input--txt-half input:-ms-input-placeholder, .form__input--txt-half .form input:-ms-input-placeholder, .form .form__input--txt input:-ms-input-placeholder, .form__input--txt .form input:-ms-input-placeholder {
  color: #666666;
}
.form .form__input--txt-half input, .form__input--txt-half .form input, .form .form__input--txt input, .form__input--txt .form input {
  padding: 0.8rem 1.6rem;
  -webkit-transition: border-color 0.4s;
  transition: border-color 0.4s;
}
.form .form__input--txt-half input:focus, .form__input--txt-half .form input:focus, .form .form__input--txt input:focus, .form__input--txt .form input:focus {
  border: 2px solid #153276;
}
.form .form__input--txtarea-half textarea, .form__input--txtarea-half .form textarea, .form .form__input--txtarea textarea, .form__input--txtarea .form textarea {
  padding: 1.6rem;
  -webkit-transition: border-color 0.4s;
  transition: border-color 0.4s;
}
.form .form__input--txtarea-half textarea:focus, .form__input--txtarea-half .form textarea:focus, .form .form__input--txtarea textarea:focus, .form__input--txtarea .form textarea:focus {
  border: 2px solid #153276;
}
.form__input--txt-half {
  max-width: 50%;
}
.form__input--txtarea-half {
  max-width: 50%;
}
.form__input--select {
  max-width: 300px;
}
.form__input--select select {
  padding: 0.8rem 2.4rem 0.8rem 1.6rem;
  cursor: pointer;
}
.form__input--select::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 12px;
  bottom: 0;
  display: inline-block;
  width: 0;
  height: 0;
  margin: auto 0;
  pointer-events: none;
  border-width: 6px 4px 0;
  border-style: solid;
  border-color: #666666 transparent transparent transparent;
}
.form__input--radio {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.form__input--radio .radio-input {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  display: block !important;
  visibility: visible !important;
  overflow: hidden !important;
  width: 4px !important;
  height: 4px !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0 !important;
  border: none !important;
}
.form__input--radio .radio-icon {
  position: relative;
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.8rem;
  border: 1px solid #666666;
  border-radius: 50%;
}
.form__input--radio .radio-icon:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin: auto;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  opacity: 0;
  border-radius: 50%;
  background: #153276;
}
.form__input--radio .radio-txt {
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
  color: #666666;
}
.form__input--radio .radio-input:checked + .radio-icon {
  border-color: #153276;
}
.form__input--radio .radio-input:checked + .radio-icon:before {
  opacity: 1;
}
.form__input--radio .radio-input:checked ~ .radio-txt {
  color: #153276;
}
.form__input--check {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.form__input--check .check-input {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  display: block !important;
  visibility: visible !important;
  overflow: hidden !important;
  width: 4px !important;
  height: 4px !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0 !important;
  border: none !important;
}
.form__input--check .check-icon {
  position: relative;
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.8rem;
  border: 2px solid #aaaaaa;
}
.form__input--check .check-icon:after {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0.3rem;
  width: 1.6rem;
  height: 0.8rem;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  opacity: 0;
  border-bottom: 2px solid transparent;
  border-left: 2px solid transparent;
}
.form__input--check .check-txt {
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
  color: #666666;
}
.form__input--check .check-input:checked + .check-icon {
  border-color: #153276;
}
.form__input--check .check-input:checked + .check-icon:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  opacity: 1;
  border-bottom: 2px solid #153276;
  border-left: 2px solid #153276;
}
.form__input--check .check-input:checked ~ .check-txt {
  color: #153276;
}

.price-item__thumb {
  overflow: hidden;
}
.price-item__img {
  display: block;
  background-color: #ffffff;
  max-width: 150px;
  margin: 0 auto;
  border: #dddddd 1px solid;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .price-item__img {
    max-width: 226px;
  }
}
.price-item__content {
  padding: 1rem;
}
.price-item__ttl {
  font-size: 1.7rem;
  color: #153276;
}
.price-item__price {
  color: #e10000;
  font-size: 1.7rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .price-item__price {
    font-size: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .service-item {
    display: -webkit-box;
    display: flex;
    display: -ms-flexbox;
    justify-content: space-between;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.service-item__ttl {
  font-size: 2rem;
  color: #153276;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .service-item__ttl {
    font-size: 2.8rem;
  }
}
.service-item__thumb {
  display: block;
  margin-top: 1.5rem;
}
.service-item__img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.service-item__list {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 1rem;
}
.service-item__list-item {
  font-size: 1.2rem;
  width: 50%;
  list-style: square inside;
  text-indent: -18px;
  padding-left: 20px;
}
@media screen and (min-width: 992px) {
  .service-item__list-item {
    font-size: 1.8rem;
    text-indent: -26px;
    padding-left: 26px;
  }
}

.area__prefs {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  padding: 0.5rem 0;
}
.area__prefs li {
  border-bottom: #ffffff solid 2px;
  font-size: 1.4rem;
}
@media screen and (min-width: 992px) {
  .area__prefs li {
    font-size: 2rem;
  }
}
.area__prefs li.active {
  color: #153276;
  font-weight: bold;
  border-bottom: #153276 solid 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.area__prefs li:hover {
  color: #153276;
  border-bottom: #ffffff solid 2px;
  cursor: pointer;
}
.area__areas {
  display: none;
  margin-top: 1.5rem;
}
.area__areas.active {
  display: block;
}
.area__areas dt {
  font-size: 1.6rem;
}
.area__areas dd {
  background-color: rgba(204, 204, 204, 0.75);
  padding: 1.5rem;
  font-size: 1.4rem;
  border-radius: 0.4rem;
  margin: 0.8rem 0 1.6rem;
  line-height: 1.6;
}

.flow-item__ttl {
  font-size: 2rem;
  color: #153276;
}
@media screen and (min-width: 768px) {
  .flow-item__ttl {
    font-size: 2.4rem;
  }
}
.flow-item__thumb {
  display: block;
  margin-top: 1.5rem;
}
.flow-item__img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.faq-list {
  border: #dddddd 1px solid;
  margin: 0 auto;
  padding: 1rem 0;
}
.faq-list:not(:first-child) {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .faq-list:not(:first-child) {
    margin-top: 2.5rem;
  }
}
.faq-list__q {
  padding: 1rem;
  text-indent: -32px;
  padding-left: 42px;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .faq-list__q {
    text-indent: -40px;
    padding-left: 60px;
  }
}
.faq-list__q:before {
  content: "Q. ";
  line-height: 1;
  color: #153276;
  font-size: 2.2rem;
}
@media screen and (min-width: 768px) {
  .faq-list__q:before {
    font-size: 3.2rem;
  }
}
.faq-list__a {
  padding: 1rem;
  text-indent: -32px;
  padding-left: 42px;
}
@media screen and (min-width: 768px) {
  .faq-list__a {
    text-indent: -40px;
    padding-left: 60px;
  }
}
.faq-list__a:before {
  content: "A. ";
  line-height: 1;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #153276;
  font-size: 2.2rem;
}
@media screen and (min-width: 768px) {
  .faq-list__a:before {
    font-size: 3.2rem;
  }
}

/*
 * トップページ
 * -------------------------------------------------------------------
 */
.top-price__container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2.4rem 15px;
}
@media screen and (min-width: 992px) {
  .top-price__container {
    padding: 4rem 15px;
  }
}
.top-price__heading {
  margin-bottom: 2.4rem;
}
.top-price__content {
  background: #f2f5f8;
  padding: 1.5rem;
}
@media screen and (min-width: 992px) {
  .top-price__list {
    display: -webkit-box;
    display: flex;
    display: -ms-flexbox;
    justify-content: flex-start;
    -webkit-box-pack: flex-start;
    -ms-flex-pack: flex-start;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.top-price__list-item {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  padding: 1rem 0;
}
@media screen and (min-width: 992px) {
  .top-price__list-item {
    width: calc(50% - 2rem);
  }
}
.top-price__list-item:nth-last-child(-n+3) {
  display: block;
  width: 100%;
}
.top-price__list-item:nth-last-child(-n+3) .price-item__content {
  padding: 0;
}
.top-price__attention {
  padding-top: 2.4rem;
  font-size: 1.4rem;
}

.top-payment__container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2.4rem 15px;
}
@media screen and (min-width: 992px) {
  .top-payment__container {
    padding: 4rem 15px;
  }
}
.top-payment__heading {
  margin-bottom: 2.4rem;
}
.top-payment__list {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: stretch;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.top-payment__list-item {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 25%;
          flex: 1 1 25%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 114px;
  padding: 0.8rem 1.2rem;
  margin: 0.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #153276;
  border: #153276 1px solid;
  text-align: center;
  line-height: 1.2;
}

.top-service__container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2.4rem 15px;
}
@media screen and (min-width: 992px) {
  .top-service__container {
    padding: 4rem 15px;
  }
}
.top-service__heading {
  margin-bottom: 2.4rem;
}
.top-service__content {
  background: #f2f5f8;
  padding: 1.5rem 1.5rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .top-service__content {
    padding: 2.5rem 2.5rem 4rem;
  }
}
@media screen and (min-width: 768px) {
  .top-service__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
.top-service__list-item {
  background-color: #ffffff;
  border: #dddddd 1px solid;
  padding: 1.5rem;
}
@media screen and (min-width: 768px) {
  .top-service__list-item {
    padding: 2.5rem;
  }
}
.top-service__list-item:not(:first-child) {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .top-service__list-item:not(:first-child) {
    margin-top: 0;
  }
}
.top-service__message {
  margin-top: 2.5rem;
  font-size: 1.4rem;
}
@media screen and (min-width: 992px) {
  .top-service__message {
    font-size: 2rem;
  }
}

.top-area__container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2.4rem 15px;
}
@media screen and (min-width: 992px) {
  .top-area__container {
    padding: 4rem 15px;
  }
}
.top-area__heading {
  margin-bottom: 2.4rem;
}
.top-area__content {
  padding: 1.5rem;
}
.top-area__ttl {
  color: #153276;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 0.5rem 0;
}
.top-area__ttl:not(:first-child) {
  margin-top: 1.6rem;
}
@media screen and (min-width: 768px) {
  .top-area__ttl:not(:first-child) {
    margin-top: 2.4rem;
  }
}
@media screen and (min-width: 992px) {
  .top-area__ttl {
    font-size: 2.4rem;
  }
}

.top-flow__container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2.4rem 15px;
}
@media screen and (min-width: 992px) {
  .top-flow__container {
    padding: 4rem 15px;
  }
}
.top-flow__heading {
  margin-bottom: 2.4rem;
}
.top-flow__content {
  background: #f2f5f8;
  padding: 1.5rem 1.5rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .top-flow__content {
    padding: 2.5rem 2.5rem 4rem;
  }
}
.top-flow__ttl {
  color: #153276;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .top-flow__ttl {
    font-size: 2.4rem;
    text-align: center;
  }
}
.top-flow__list {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .top-flow__list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem 0;
  }
}
.top-flow__list-item {
  background-color: #ffffff;
  border: #dddddd 1px solid;
  padding: 1.5rem;
  max-width: 45rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .top-flow__list-item {
    padding: 2.5rem;
  }
}
.top-flow__list-item:not(:first-child) {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .top-flow__list-item:not(:first-child) {
    margin-top: 0;
  }
}

.top-result__container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2.4rem 15px;
}
@media screen and (min-width: 992px) {
  .top-result__container {
    padding: 4rem 15px;
  }
}
.top-result__heading {
  margin-bottom: 2.4rem;
}
@media screen and (min-width: 768px) {
  .top-result__content {
    padding: 2.5rem 2.5rem 4rem;
  }
}
.top-result__list {
  border: #dddddd 1px solid;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-evenly;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 80rem;
  margin: 0 auto;
}
.top-result__list-item {
  padding: 1rem;
  width: 20%;
}
@media screen and (min-width: 768px) {
  .top-result__list-item {
    padding: 2rem;
    width: 16.66666667%;
  }
}

.top-faq__container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2.4rem 15px;
}
@media screen and (min-width: 992px) {
  .top-faq__container {
    padding: 4rem 15px;
  }
}
.top-faq__heading {
  margin-bottom: 2.4rem;
}
@media screen and (min-width: 768px) {
  .top-faq__content {
    padding: 2.5rem 0;
  }
}

/*
 * 新着情報
 * -------------------------------------------------------------------
 */
/*
 * サービス紹介
 * -------------------------------------------------------------------
 */
/*
 * 料金表
 * -------------------------------------------------------------------
 */
/*
 * CONTACT
 * -------------------------------------------------------------------
 */
.contact-form__container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2.4rem 15px;
}
@media screen and (min-width: 992px) {
  .contact-form__container {
    padding: 4rem 15px;
  }
}
.contact-form__heading {
  margin-bottom: 3.2rem;
}
.contact-form__content {
  margin: 0 auto;
  background: #f2f5f8;
  padding: 1.5rem 1.5rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .contact-form__content {
    padding: 2.5rem 2.5rem 4rem;
  }
}
.contact-form__cta {
  max-width: 950px;
  margin: 0 auto 1.5rem auto;
  padding: 2.5rem 1.5rem;
  background-color: #ffffff;
  border: #dddddd 1px solid;
}
@media screen and (min-width: 768px) {
  .contact-form__cta {
    padding: 3.5rem 2.5rem;
  }
}
.contact-form__cta .contact-form__message {
  text-align: center;
}
.contact-form__ttl--cta {
  position: relative;
  font-size: 1.5rem;
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: #dddddd 1px solid;
  padding-left: 32px;
}
@media screen and (min-width: 768px) {
  .contact-form__ttl--cta {
    font-size: 2.2rem;
  }
}
.contact-form__ttl--cta:before {
  content: "";
  background-image: url("../images/icn_tel.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-65%);
          transform: translateY(-65%);
  left: 0;
}
@supports (background-image: format("webp")) {
  .contact-form__ttl--cta:before {
    background-image: url("../images/icn_tel.webp");
  }
}
@media screen and (min-width: 768px) {
  .contact-form__ttl--cta:before {
    width: 32px;
    height: 32px;
    -webkit-transform: translateY(-60%);
            transform: translateY(-60%);
  }
}
.contact-form__ttl--form {
  position: relative;
  font-size: 1.5rem;
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: #dddddd 1px solid;
  padding-left: 32px;
  max-width: 40rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .contact-form__ttl--form {
    font-size: 2.2rem;
  }
}
.contact-form__ttl--form:before {
  content: "";
  background-image: url("../images/icn_mail.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-65%);
          transform: translateY(-65%);
  left: 0;
}
@supports (background-image: format("webp")) {
  .contact-form__ttl--form:before {
    background-image: url("../images/icn_mail.webp");
  }
}
@media screen and (min-width: 768px) {
  .contact-form__ttl--form:before {
    width: 32px;
    height: 32px;
    -webkit-transform: translateY(-60%);
            transform: translateY(-60%);
  }
}
.contact-form__thumb {
  display: block;
  margin-top: 1.5rem;
}
.contact-form__img {
  width: 100%;
  max-width: 21.6rem;
  display: block;
  margin: 0;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .contact-form__img {
    max-width: 32.4rem;
  }
}
.contact-form__tel {
  margin-top: 1.5rem;
  color: #153276;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3rem;
  text-align: center;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .contact-form__tel {
    font-size: 4.5rem;
  }
}
.contact-form__message {
  margin-top: 2.5rem;
  font-size: 1.3rem;
  text-align: center;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .contact-form__message {
    font-size: 1.6rem;
  }
}
.contact-form__link {
  display: block;
  cursor: pointer;
  max-width: 40rem;
  margin: 0 auto;
}
.contact-form__inner {
  max-width: 70rem;
  margin: 0 auto;
}
.contact-form__form {
  max-width: 950px;
  margin: 1.5rem auto 1.5rem auto;
  padding: 2.5rem 1.5rem;
  background-color: #ffffff;
  border: #dddddd 1px solid;
}
@media screen and (min-width: 768px) {
  .contact-form__form {
    padding: 3.5rem 2.5rem;
    margin: 2.5rem auto 0 auto;
  }
}
.contact-form__sub-ttl {
  color: #153276;
  font-size: 2rem;
  text-align: center;
  margin-top: 2.5rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .contact-form__sub-ttl {
    font-size: 2.8rem;
  }
}
.contact-form__table {
  width: 100%;
  margin: 2.5rem auto;
}
@media screen and (min-width: 768px) {
  .contact-form__table {
    width: auto;
  }
}
.contact-form__table th {
  padding: 0.5rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .contact-form__table th {
    padding: 1rem;
    display: table-cell;
    min-width: 15rem;
  }
}
.contact-form__table td {
  padding: 0 0.5rem 1rem 1em;
  display: block;
}
@media screen and (min-width: 768px) {
  .contact-form__table td {
    padding: 1rem;
    display: table-cell;
  }
}
.contact-form__button {
  margin-top: 2.4rem;
  text-align: center;
}
.contact-form__button-submit {
  width: 100%;
  max-width: 20rem;
  padding: 1em 3em;
  color: #ffffff;
  background: #153276;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin: 0 auto;
  display: block;
  cursor: pointer;
  line-height: 1;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .contact-form__button-submit {
    display: inline-block;
    margin: 0 1rem;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .contact-form__button-submit {
    max-width: 30rem;
  }
}
.contact-form__button-submit:hover, .contact-form__button-submit:focus {
  background: #112960;
}
.contact-form__button-return {
  width: 100%;
  max-width: 20rem;
  padding: 1em 3em;
  color: #ffffff;
  background: #aaaaaa;
  border: #aaaaaa 1px solid;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin: 0 auto;
  display: block;
  cursor: pointer;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .contact-form__button-return {
    display: inline-block;
    margin: 0 1rem;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .contact-form__button-return {
    max-width: 30rem;
  }
}
.contact-form__button-return:hover, .contact-form__button-return:focus {
  background: #ffffff;
  border: #aaaaaa 1px solid;
  color: #333333;
}
.contact-form__err-message {
  margin-top: 2.5rem;
}
.contact-form__err-message .error_messe {
  margin-top: 1.5rem;
  color: #e10000;
}
.contact-form__thanks {
  margin-top: 2.5rem;
}
.contact-form__txt {
  text-align: center;
}
.contact-form__btn {
  margin-top: 1.5rem;
  text-align: center;
}
.contact-form__btn-link {
  width: 100%;
  max-width: 20rem;
  padding: 1em 3em;
  color: #ffffff;
  background: #153276;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin: 2.5rem auto 0 auto;
  display: block;
  cursor: pointer;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .contact-form__btn-link {
    display: inline-block;
    margin: 2.5rem 0 0;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .contact-form__btn-link {
    max-width: 30rem;
  }
}
.contact-form__btn-link:hover, .contact-form__btn-link:focus {
  background: #112960;
}/*# sourceMappingURL=style.css.map */