@charset "UTF-8";
/*
 * HTML
 * -------------------------------------------------------------------
 */
@import url("https://use.fontawesome.com/releases/v5.13.0/css/all.css");
html {
  font-size: 62.5%;
}

body {
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.8em;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #1b1b1b;
}

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

img[src*=".svg"] {
  width: 100%;
  height: auto;
}

/*
 * fadeIn
 * -------------------------------------------------------------------
 */
.fade {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(70px);
  transform: translateY(70px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.fade.is-show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

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

.sp_onry {
  display: block;
}

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

.pc_onry {
  display: none;
}

@media screen and (min-width: 992px) {
  .pc_onry {
    display: block;
  }
}

.color_yellow {
  color: #ffff64;
}

.color_blue {
  color: #0f64be;
}

/* 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, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

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;
  }
}

/* =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-left: auto;
  margin-right: auto;
}

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

.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 {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

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

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

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

/*
 * Mixin
 * -------------------------------------------------------------------
 */
@font-face {
  font-family: 'MyFont';
  src: url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap) rel= "stylesheet";
}

/*
 * Module
 * -------------------------------------------------------------------
 */
.mainvisual__container {
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 992px) {
  .mainvisual__container {
    max-width: 1920px;
  }
}

.mainvisual__item {
  position: relative;
}

.mainvisual__item .copy {
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 999;
}

@media screen and (min-width: 539px) {
  .mainvisual__item .copy {
    width: 60%;
  }
}

@media screen and (min-width: 749px) {
  .mainvisual__item .copy {
    width: auto;
  }
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {
  position: relative;
  z-index: 1;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  height: 375px;
}

@media screen and (min-width: 749px) {
  .slider {
    height: 750px;
  }
}

@media screen and (min-width: 992px) {
  .slider {
    height: 100vh;
    /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  }
}

/*　背景画像設定　*/
.slider-item01 {
  background: url(../img/mainimg01_sp.jpg);
}

@media screen and (min-width: 992px) {
  .slider-item01 {
    background: url(../img/mainimg01.jpg);
  }
}

.slider-item02 {
  background: url(../img/mainimg02_sp.jpg);
}

@media screen and (min-width: 992px) {
  .slider-item02 {
    background: url(../img/mainimg02.jpg);
  }
}

.slider-item03 {
  background: url(../img/mainimg03_sp.jpg);
}

@media screen and (min-width: 992px) {
  .slider-item03 {
    background: url(../img/mainimg03.jpg);
  }
}

.slider-item04 {
  background: url(../img/mainimg04_sp.jpg);
}

@media screen and (min-width: 992px) {
  .slider-item04 {
    background: url(../img/mainimg04.jpg);
  }
}

.slider-item {
  width: 100%;
  /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  height: 375px;
  background-repeat: no-repeat;
  /*背景画像をリピートしない*/
  background-position: center;
  /*背景画像の位置を中央に*/
  background-size: cover;
  /*背景画像が.slider-item全体を覆い表示*/
}

@media screen and (min-width: 749px) {
  .slider-item {
    height: 750px;
  }
}

@media screen and (min-width: 992px) {
  .slider-item {
    height: 100vh;
    /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  }
}

.subvisual {
  background-color: #f0fcfe;
  position: relative;
}

.subvisual img {
  width: 100%;
}

.subvisual__item {
  padding: 30px 0;
}

@media screen and (min-width: 992px) {
  .subvisual__item {
    max-width: 600px;
    background: #ffffffd4;
    padding: 30px 45px;
    position: absolute;
    top: 10%;
    left: 10%;
  }
}

.subvisual__heading h3 {
  text-align: center;
  letter-spacing: 0.05em;
  font-size: 1.5rem;
}

@media screen and (min-width: 749px) {
  .subvisual__heading h3 {
    font-size: 3rem;
  }
}

@media screen and (min-width: 992px) {
  .subvisual__heading h3 {
    font-size: 2.2rem;
    text-align: left;
    line-height: 2;
    letter-spacing: 0.018em;
  }
}

.subvisual__text {
  margin: 0 30px;
  padding-top: 15px;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.002em;
}

@media screen and (min-width: 749px) {
  .subvisual__text {
    font-size: 2.4rem;
  }
}

@media screen and (min-width: 992px) {
  .subvisual__text {
    font-size: 1.4rem;
    margin: 0;
  }
}

.pagevisual {
  position: relative;
  z-index: 0;
  margin: 0;
  padding-top: calc(6rem + 6.4rem);
  padding-bottom: 6.4rem;
  background-image: url("../img/mainvisual.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (min-width: 992px) {
  .pagevisual {
    padding-top: calc(6rem + 9.6rem);
    padding-bottom: 9.6rem;
  }
}

.pagevisual::before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.5);
  content: "";
}

.pagevisual__container {
  position: relative;
  max-width: 590px;
  margin: 0 20px;
  padding-top: 45px;
  padding-bottom: 40px;
  position: relative;
  z-index: 2;
  padding-top: 0;
  padding-bottom: 0;
}

@media screen and (min-width: 749px) {
  .pagevisual__container {
    margin: auto;
    max-width: 670px;
    padding-top: 70px;
    padding-bottom: 58px;
  }
}

@media screen and (min-width: 992px) {
  .pagevisual__container {
    padding-top: 115px;
    padding-bottom: 105px;
    max-width: 1100px;
  }
}

.pagevisual__text-main {
  font-size: 3.2rem;
}

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

.pagevisual__text-main:after {
  display: block;
  max-width: 20rem;
  margin: 1.6rem 0rem;
  border-bottom: 3px solid #1b1b1b;
  background: #1b1b1b;
  content: "";
}

.pagevisual__text-sub {
  color: #1b1b1b;
}

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

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

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

.page-heading__text-main {
  font-size: 2.1rem;
  text-align: center;
  color: #1b1b1b;
  font-weight: 600;
  line-height: .86;
  letter-spacing: 0.05em;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
              -ms-grid-row-align: center;
          align-self: center;
}

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

@media screen and (min-width: 992px) {
  .page-heading__text-main {
    font-size: 3.8rem;
    line-height: .95;
    letter-spacing: 0.1em;
  }
}

.page-heading__content--left .page-heading__text-main::after {
  margin-left: 0;
  margin-right: auto;
}

.page-heading__content--center .page-heading__text-main::after {
  margin-left: auto;
  margin-right: auto;
}

.page-heading__content--right .page-heading__text-main::after {
  margin-left: auto;
  margin-right: 0;
}

@media (min-width: 992px) {
  .page-heading__text-main:after {
    max-width: 1300px;
  }
}

.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__text {
  position: relative;
  font-size: 2.4rem;
}

.page-heading-sub__text:before {
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 1.6em;
  margin-right: .8rem;
  border-radius: 3px;
  background: #0f64be;
  content: "";
}

.page-heading-sub__message {
  margin: 0 auto;
  padding-top: 1.6rem;
  color: #f8f8f8;
  font-weight: 400;
  font-size: 1.6rem;
}

.header {
  position: relative;
}

.header__logo {
  position: absolute;
  top: 20px;
  left: 17px;
  width: 60px;
  z-index: 999;
}

@media screen and (min-width: 749px) {
  .header__logo {
    width: 185px;
  }
}

@media screen and (min-width: 992px) {
  .header__logo {
    width: 177px;
    top: 15px;
    left: 18px;
  }
}

@media screen and (min-width: 992px) {
  .footer__container {
    background: #fff882;
  }
}

.footer__list {
  display: none;
}

@media screen and (min-width: 992px) {
  .footer__list {
    max-width: 1100px;
    margin: auto;
    background: #fff882;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -webkit-justify-content: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    height: 450px;
  }
}

.footer__list__item {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
              -ms-grid-row-align: center;
          align-self: center;
}

.footer__list__item img {
  margin: auto;
  margin-bottom: 10px;
}

.footer__list__item .btn {
  margin-top: 30px;
}

.footer__menu {
  background: #eee;
}

@media screen and (min-width: 749px) {
  .footer__menu {
    background: #FFF;
  }
}

.footer__menu__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  padding-top: 20px;
}

@media screen and (min-width: 749px) {
  .footer__menu__item {
    padding-top: 40px;
  }
}

@media screen and (min-width: 992px) {
  .footer__menu__item {
    width: 50%;
    padding-top: 0;
  }
}

.footer__menu__item__list {
  font-size: .8rem;
  line-height: 2.5;
  letter-spacing: 0.015em;
}

@media screen and (min-width: 749px) {
  .footer__menu__item__list {
    font-size: 2rem;
  }
}

@media screen and (min-width: 992px) {
  .footer__menu__item__list {
    font-size: 1.4rem;
    line-height: 3.1;
  }
}

.footer__menu__item__list a {
  color: #1b1b1b;
}

.footer__menu__item__list.borderline {
  position: relative;
}

.footer__menu__item__list.borderline::before, .footer__menu__item__list.borderline::after {
  content: '|';
  position: absolute;
  top: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateX(-50%);
  left: -65%;
}

.footer__menu__item__list.borderline::after {
  left: auto;
  right: -65%;
}

@media screen and (min-width: 992px) {
  .footer__menu-list {
    padding-top: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 970px;
    margin: auto;
  }
}

.footer__copy {
  padding: .8rem 0;
  color: #1b1b1b;
  font-size: .8rem;
  font-weight: 400;
  line-height: 3;
  letter-spacing: 0.015em;
  text-align: center;
}

@media screen and (min-width: 749px) {
  .footer__copy {
    padding: 1.6rem 0;
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 992px) {
  .footer__copy {
    font-size: 1.2rem;
    line-height: 3.6;
  }
}

.photo-modal {
  display: none;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1002;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-animation-duration: var(--photo-modal-duration);
          animation-duration: var(--photo-modal-duration);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.photo-modal[data-open="true"] {
  -webkit-animation-name: modal-photo-open;
          animation-name: modal-photo-open;
}

.photo-modal[data-open="false"] {
  -webkit-animation-name: modal-photo-close;
          animation-name: modal-photo-close;
}

.photo-modal__container {
  max-width: 800px;
  max-height: 80%;
  margin: auto;
  overflow: auto;
}

.photo-modal__image img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.photo-modal .photo-modal__button, .photo-modal .photo-modal__button--close, .photo-modal .photo-modal__button--prev, .photo-modal .photo-modal__button--next, .photo-modal .button-detail__button, .photo-modal .button-detail__button--back, .photo-modal .button-detail__button--prev, .photo-modal .button-detail__button--next {
  position: absolute;
  width: 4rem;
  height: 4rem;
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  color: #ffffff;
  cursor: pointer;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.photo-modal .photo-modal__button:hover, .photo-modal .photo-modal__button--close:hover, .photo-modal .photo-modal__button--prev:hover, .photo-modal .photo-modal__button--next:hover, .photo-modal .button-detail__button:hover, .photo-modal .button-detail__button--back:hover, .photo-modal .button-detail__button--prev:hover, .photo-modal .button-detail__button--next:hover, .photo-modal .photo-modal__button:focus, .photo-modal .photo-modal__button--close:focus, .photo-modal .photo-modal__button--prev:focus, .photo-modal .photo-modal__button--next:focus, .photo-modal .button-detail__button:focus, .photo-modal .button-detail__button--back:focus, .photo-modal .button-detail__button--prev:focus, .photo-modal .button-detail__button--next:focus {
  color: #f2f2f2;
  outline: none;
}

.photo-modal .photo-modal__button::before, .photo-modal .photo-modal__button--close::before, .photo-modal .photo-modal__button--prev::before, .photo-modal .photo-modal__button--next::before, .photo-modal .button-detail__button::before, .photo-modal .button-detail__button--back::before, .photo-modal .button-detail__button--prev::before, .photo-modal .button-detail__button--next::before {
  font-size: 2.5rem;
}

.photo-modal__button--close {
  top: 0;
  right: 0;
}

.photo-modal__button--close::before {
  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: "\e5cd";
}

.photo-modal__button--prev {
  top: 50%;
  left: 0;
}

.photo-modal__button--prev::before {
  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: "\e5cb";
}

.photo-modal__button--next {
  top: 50%;
  right: 0;
}

.photo-modal__button--next::before {
  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: "\e5cc";
}

.photo-modal__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.85);
}

.btn,
a.btn,
button.btn {
  font-size: 2.1rem;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #ffffff;
  border-radius: 0.5rem;
}

.btn--blue,
a.btn--blue {
  color: #FFF;
  background-color: #0f64be;
  border: 2px #FFF solid;
  border-radius: 34px;
  width: 290px;
  height: 68px;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 2rem 1rem;
  position: fixed;
  top: 20px;
  right: 17px;
  z-index: 999;
}

.btn--white,
a.btn--white {
  color: #0f64be;
  background-color: #FFF;
  border: 2px #0f64be solid;
  border-radius: 34px;
  width: 290px;
  height: 68px;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 2rem 1rem;
  position: fixed;
  top: 20px;
  right: 17px;
  z-index: 999;
}

.btn-wrap.btn--white,
.btn-wrap a.btn--white,
.btn-wrap.btn--blue,
.btn-wrap a.btn--blue {
  position: initial;
  font-size: 2.4rem;
  padding: 3rem 1rem;
  width: 500px;
  height: 105px;
  border-radius: 52px;
}

@media screen and (max-width: 599px) {
  .btn-wrap.btn--white,
  .btn-wrap a.btn--white,
  .btn-wrap.btn--blue,
  .btn-wrap a.btn--blue {
    width: 85%;
    height: 80%;
    font-size: 1.8rem;
    padding: 2rem 1rem;
  }
}

.footer-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer-btn .btn--white,
.footer-btn a.btn--white,
.footer-btn .btn--blue,
.footer-btn a.btn--blue {
  position: relative;
  padding: 2.5rem 1rem;
  width: 650px;
  height: 90px;
}

.footer-btn .btn--white::before,
.footer-btn a.btn--white::before,
.footer-btn .btn--blue::before,
.footer-btn a.btn--blue::before {
  content: '\f105';
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 5%;
}

.btn--white:hover,
a.btn--white:hover {
  color: #ffffff;
  border: 2px #FFF solid;
  background: #0f64be;
}

.btn--blue:hover,
a.btn--blue:hover {
  color: #0f64be;
  border: 2px #0f64be solid;
  background: #FFF;
}

.footer-btn .btn:hover {
  opacity: .9;
}

.footer-btn .btn:hover.btn--blue {
  color: #FFF;
  background-color: #0f64be;
  border: 2px #FFF solid;
}

.footer-btn .btn:hover.btn--white {
  color: #0f64be;
  background-color: #FFF;
  border: 2px #0f64be solid;
}

.footer-btn .btn:hover::before {
  right: 4%;
}

.button-detail {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  max-width: 60rem;
  margin: 0 auto;
}

.button-detail .photo-modal__button, .button-detail .photo-modal__button--close, .button-detail .photo-modal__button--prev, .button-detail .photo-modal__button--next, .button-detail .button-detail__button, .button-detail .button-detail__button--back, .button-detail .button-detail__button--prev, .button-detail .button-detail__button--next {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: 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;
  margin-bottom: 2.4rem;
  padding: 1.6rem 2.4rem;
  border-radius: 0.4rem;
  background: #eeeeee;
  color: #1b1b1b;
}

.button-detail .photo-modal__button:hover, .button-detail .photo-modal__button--close:hover, .button-detail .photo-modal__button--prev:hover, .button-detail .photo-modal__button--next:hover, .button-detail .button-detail__button:hover, .button-detail .button-detail__button--back:hover, .button-detail .button-detail__button--prev:hover, .button-detail .button-detail__button--next:hover, .button-detail .photo-modal__button:focus, .button-detail .photo-modal__button--close:focus, .button-detail .photo-modal__button--prev:focus, .button-detail .photo-modal__button--next:focus, .button-detail .button-detail__button:focus, .button-detail .button-detail__button--back:focus, .button-detail .button-detail__button--prev:focus, .button-detail .button-detail__button--next:focus {
  background: #0f64be;
  color: #ffffff;
}

.button-detail__button--back {
  width: 100%;
}

.button-detail__button--back:before {
  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: "\e896";
  margin-right: 0.8rem;
}

.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 {
  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: "\e5cb";
  margin-right: 0.8rem;
}

.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 {
  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: "\e5cc";
  margin-left: 0.8rem;
}

.pagination__list,
.pagination .page-numbers {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.pagination__list-item,
.pagination .page-numbers > li {
  margin: 0.3rem;
}

.pagination .pagination__link,
.pagination .page-numbers > li > a, .pagination .pagination__link--prev,
.pagination .page-numbers > li > a--prev,
.pagination .page-numbers > li > a.prev, .pagination .pagination__link--next,
.pagination .page-numbers > li > a--next,
.pagination .page-numbers > li > a.next {
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.2rem 1.6rem;
  border-radius: 6px;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
}

.pagination__link,
.pagination .page-numbers > li > a {
  background-color: #eeeeee;
  color: #1b1b1b;
}

.pagination__link:hover, .pagination__link:focus,
.pagination .page-numbers > li > a:hover,
.pagination .page-numbers > li > a:focus {
  background-color: #0f64be;
  color: #ffffff;
}

.pagination__link--prev, .pagination__link.prev,
.pagination .page-numbers > li > a--prev,
.pagination .page-numbers > li > a.prev {
  min-width: 12rem;
  background-color: #eeeeee;
  color: #1b1b1b;
}

.pagination__link--prev:before, .pagination__link.prev:before,
.pagination .page-numbers > li > a--prev:before,
.pagination .page-numbers > li > a.prev:before {
  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: "\e5cb";
  display: inline-block;
  margin-right: 0.6rem;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.pagination__link--prev:hover, .pagination__link--prev:focus, .pagination__link.prev:hover, .pagination__link.prev:focus,
.pagination .page-numbers > li > a--prev:hover,
.pagination .page-numbers > li > a--prev:focus,
.pagination .page-numbers > li > a.prev:hover,
.pagination .page-numbers > li > a.prev:focus {
  background-color: #0f64be;
  color: #ffffff;
}

.pagination__link--prev:hover:before, .pagination__link--prev:focus:before, .pagination__link.prev:hover:before, .pagination__link.prev:focus:before,
.pagination .page-numbers > li > a--prev:hover:before,
.pagination .page-numbers > li > a--prev:focus:before,
.pagination .page-numbers > li > a.prev:hover:before,
.pagination .page-numbers > li > a.prev:focus:before {
  -webkit-transform: translateX(-4px);
          transform: translateX(-4px);
}

.pagination__link--next, .pagination__link.next,
.pagination .page-numbers > li > a--next,
.pagination .page-numbers > li > a.next {
  min-width: 12rem;
  background-color: #eeeeee;
  color: #1b1b1b;
}

.pagination__link--next:after, .pagination__link.next:after,
.pagination .page-numbers > li > a--next:after,
.pagination .page-numbers > li > a.next:after {
  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: "\e5cc";
  display: inline-block;
  margin-left: 0.6rem;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.pagination__link--next:hover, .pagination__link--next:focus, .pagination__link.next:hover, .pagination__link.next:focus,
.pagination .page-numbers > li > a--next:hover,
.pagination .page-numbers > li > a--next:focus,
.pagination .page-numbers > li > a.next:hover,
.pagination .page-numbers > li > a.next:focus {
  background-color: #0f64be;
  color: #ffffff;
}

.pagination__link--next:hover:after, .pagination__link--next:focus:after, .pagination__link.next:hover:after, .pagination__link.next:focus:after,
.pagination .page-numbers > li > a--next:hover:after,
.pagination .page-numbers > li > a--next:focus:after,
.pagination .page-numbers > li > a.next:hover:after,
.pagination .page-numbers > li > a.next:focus:after {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.pagination .pagination__text,
.pagination .page-numbers > li > span, .pagination .pagination__text--current,
.pagination .page-numbers > li > span--current,
.pagination .page-numbers > li > span.current, .pagination .pagination__text--dots,
.pagination .page-numbers > li > span--dots,
.pagination .page-numbers > li > span.dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.2rem 1.6rem;
  border-radius: 6px;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
}

.pagination__text,
.pagination .page-numbers > li > span {
  background-color: #eeeeee;
  color: #1b1b1b;
}

.pagination__text--current, .pagination__text.current,
.pagination .page-numbers > li > span--current,
.pagination .page-numbers > li > span.current {
  background-color: #0f64be;
  color: #ffffff;
}

.pagination__text--dots, .pagination__text.dots,
.pagination .page-numbers > li > span--dots,
.pagination .page-numbers > li > span.dots {
  background-color: #eeeeee;
  color: #1b1b1b;
}

.table-overview {
  width: 100%;
  line-height: 1.8;
  text-align: left;
}

.table-overview tr th {
  width: 16rem;
  padding: .8rem;
  vertical-align: top;
}

.table-overview tr td {
  width: calc(100% - 16rem);
  padding: .8rem 1.6rem;
  vertical-align: top;
}

/*
 * Fonts
 * -------------------------------------------------------------------
 */
/*
 * トップページ
 * -------------------------------------------------------------------
 */
.features {
  position: relative;
}

.features__container {
  position: relative;
  max-width: 590px;
  margin: 0 20px;
  padding-top: 45px;
  padding-bottom: 40px;
}

@media screen and (min-width: 749px) {
  .features__container {
    margin: auto;
    max-width: 670px;
    padding-top: 70px;
    padding-bottom: 58px;
  }
}

@media screen and (min-width: 992px) {
  .features__container {
    padding-top: 115px;
    padding-bottom: 105px;
    max-width: 1100px;
  }
}

.features__heading {
  position: relative;
}

.features__heading::before {
  content: '-Features-';
  color: #00c1ba;
  font-family: 'Helvetica';
  font-size: 1.6rem;
  line-height: 2.5;
  letter-spacing: 0.1em;
  position: absolute;
  top: -90%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

@media screen and (min-width: 749px) {
  .features__heading::before {
    top: -40%;
    font-size: 2.6rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 992px) {
  .features__heading::before {
    font-size: 1.6rem;
    line-height: 2.5;
  }
}

.features .page-heading__content--center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.features .page-heading__content--center img {
  width: 80px;
  margin-right: 10px;
}

@media screen and (min-width: 749px) {
  .features .page-heading__content--center img {
    width: auto;
  }
}

.features__list {
  padding-top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

@media screen and (min-width: 992px) {
  .features__list {
    padding-top: 25px;
  }
}

.features__list__item {
  margin: auto;
  padding-top: 15px;
}

@media screen and (min-width: 992px) {
  .features__list__item {
    padding-top: 80px;
  }
}

.features__list__item img {
  margin: auto;
  width: 70%;
}

@media screen and (min-width: 749px) {
  .features__list__item img {
    width: auto;
  }
}

.features__list__item h4 {
  text-align: center;
  color: #00c1ba;
  letter-spacing: 0.025em;
}

@media screen and (min-width: 749px) {
  .features__list__item h4 {
    margin-top: 30px;
    font-size: 3.6rem;
    line-height: 1.38;
  }
}

@media screen and (min-width: 992px) {
  .features__list__item h4 {
    margin-top: 20px;
    font-size: 2.2rem;
    line-height: 1.45;
  }
}

.features__list__item p {
  margin-top: 20px;
  color: #1b1b1b;
  letter-spacing: 0.025em;
}

@media screen and (min-width: 749px) {
  .features__list__item p {
    font-size: 3rem;
    line-height: 1.53;
  }
}

@media screen and (min-width: 992px) {
  .features__list__item p {
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.74;
  }
}

.features__list__item p span {
  font-size: 1.6rem;
  line-height: 2.3;
}

@media screen and (min-width: 749px) {
  .features__list__item p span {
    font-size: 2rem;
  }
}

@media screen and (min-width: 992px) {
  .features__list__item p span {
    font-size: 1.2rem;
    line-height: 1.1;
  }
}

.features__info {
  background: #EEECE9;
  max-width: 320px;
  margin: 30px auto;
}

@media screen and (min-width: 992px) {
  .features__info {
    max-width: 460px;
  }
}

.features__info__box {
  max-width: 160px;
  margin: auto;
  padding: 30px 0;
  font-size: 1.6rem;
}

@media screen and (min-width: 992px) {
  .features__info__box {
    max-width: 220px;
    font-size: 2.25rem;
    padding: 45px 0;
  }
}

.features__info .tel {
  color: #A89286;
}

.features__info .tel span {
  font-size: 1.49rem;
}

@media screen and (min-width: 992px) {
  .features__info .tel span {
    font-size: 2.1rem;
  }
}

.features__info p {
  margin-top: 25px;
  text-align: start;
  font-size: 1.2rem;
}

@media screen and (min-width: 992px) {
  .features__info p {
    font-size: 1.68rem;
  }
}

.cases {
  background: #edfcfa;
}

.cases__container {
  position: relative;
  max-width: 590px;
  margin: 0 20px;
  padding-top: 45px;
  padding-bottom: 40px;
  padding-top: 80px;
}

@media screen and (min-width: 749px) {
  .cases__container {
    margin: auto;
    max-width: 670px;
    padding-top: 70px;
    padding-bottom: 58px;
  }
}

@media screen and (min-width: 992px) {
  .cases__container {
    padding-top: 115px;
    padding-bottom: 105px;
    max-width: 1100px;
  }
}

@media screen and (min-width: 749px) {
  .cases__container {
    padding-top: 100px;
    padding-bottom: 72px;
  }
}

@media screen and (min-width: 992px) {
  .cases__container {
    padding-top: 130px;
    padding-bottom: 135px;
  }
}

.cases__heading {
  position: relative;
}

.cases__heading::before {
  content: '-Cases-';
  color: #00c1ba;
  font-family: 'Helvetica';
  font-size: 1.6rem;
  line-height: 2.5;
  letter-spacing: 0.1em;
  position: absolute;
  top: -200%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

@media screen and (min-width: 749px) {
  .cases__heading::before {
    top: -110%;
    font-size: 2.6rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 992px) {
  .cases__heading::before {
    font-size: 1.6rem;
    line-height: 2.5;
  }
}

.cases__list {
  padding-top: 30px;
}

@media screen and (min-width: 749px) {
  .cases__list {
    padding-top: 62px;
  }
}

.cases__list__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 992px) {
  .cases__list__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
}

.cases__list__item:nth-child(2) {
  padding: 60px 0;
}

@media screen and (min-width: 992px) {
  .cases__list__item:nth-child(2) {
    padding: 70px 0;
  }
}

.cases__list__img-box {
  margin: auto;
  text-align: center;
}

.cases__list__img-box span {
  letter-spacing: 0.1em;
}

@media screen and (min-width: 749px) {
  .cases__list__img-box span {
    font-size: 2.6rem;
  }
}

@media screen and (min-width: 992px) {
  .cases__list__img-box span {
    font-size: 1.8rem;
    line-height: 2.2;
  }
}

.cases__list__text-box {
  margin-top: 25px;
  background: #FFF;
  border-radius: 0 50px 50px 50px;
  padding: 18px;
}

@media screen and (min-width: 749px) {
  .cases__list__text-box {
    width: 660px;
    padding: 40px 30px;
  }
}

@media screen and (min-width: 992px) {
  .cases__list__text-box {
    margin-top: 0;
    width: 890px;
    padding: 45px 50px;
  }
}

.cases__list__text-box h4 {
  color: #00c1ba;
  text-align: center;
  letter-spacing: 0.025em;
}

@media screen and (min-width: 749px) {
  .cases__list__text-box h4 {
    font-size: 3rem;
    line-height: 1.1;
  }
}

@media screen and (min-width: 992px) {
  .cases__list__text-box h4 {
    text-align: start;
    font-size: 2rem;
    line-height: 1.6;
  }
}

.cases__list__text-box p {
  margin-top: 20px;
  color: #1b1b1b;
  letter-spacing: 0.025em;
}

@media screen and (min-width: 749px) {
  .cases__list__text-box p {
    font-size: 2.4rem;
    line-height: 1.9;
  }
}

@media screen and (min-width: 992px) {
  .cases__list__text-box p {
    font-size: 1.6rem;
    line-height: 2;
  }
}

.cases__list__text-box p span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #ffff64));
  background: -webkit-linear-gradient(transparent 60%, #ffff64 60%);
  background: linear-gradient(transparent 60%, #ffff64 60%);
}

.side {
  font-size: 1.2rem;
  position: fixed;
  left: 3%;
  top: 35%;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  font-weight: bold;
  letter-spacing: .2em;
}

@media screen and (min-width: 992px) {
  .side {
    font-size: 1.8rem;
    top: 50%;
  }
}

.btn {
  max-width: 100%;
  z-index: 0;
  pointer-events: all;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  z-index: 999;
}

@media screen and (min-width: 992px) {
  .btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.side-btn {
  margin: 0 0 0 0;
  padding: 0;
  position: fixed;
  left: auto;
  right: 0px;
  bottom: 0;
  width: 100%;
  max-width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 749px) {
  .side-btn {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
}

@media screen and (min-width: 992px) {
  .side-btn {
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    background: rgba(0, 0, 0, 0);
    bottom: auto;
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    height: 100vh;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    right: 0px;
    top: 15%;
    width: auto;
  }
}

/*フッターまでスクロールしたら消す*/
.is-hidden {
  visibility: hidden;
  opacity: 0;
}

.sp-calendar, .sp-form {
  background: #0573b8;
  border-bottom: 1px solid #0573b8;
  border-left: 1px solid #0573b8;
  border-radius: 4px;
  border-right: 1px solid #0573b8;
  border-top: 1px solid #0573b8;
  color: #FFFFFF;
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  font-family: var(--s-font-998bcc15);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  height: auto;
  margin: 0px 0px 5px 0px;
  padding: 20px 10px;
  position: relative;
  text-align: center;
  width: 49%;
  max-width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 749px) {
  .sp-calendar, .sp-form {
    font-size: 3rem;
    padding: 10px 10px 10px 10px;
    width: 372px;
  }
}

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

.flow {
  position: relative;
}

.flow__container {
  position: relative;
  max-width: 590px;
  margin: 0 20px;
  padding-top: 45px;
  padding-bottom: 40px;
}

@media screen and (min-width: 749px) {
  .flow__container {
    margin: auto;
    max-width: 670px;
    padding-top: 70px;
    padding-bottom: 58px;
  }
}

@media screen and (min-width: 992px) {
  .flow__container {
    padding-top: 115px;
    padding-bottom: 105px;
    max-width: 1100px;
  }
}

.flow__heading {
  position: relative;
}

.flow__heading::before {
  content: '-Flow-';
  color: #00c1ba;
  font-family: 'Helvetica';
  font-size: 1.6rem;
  line-height: 2.5;
  letter-spacing: 0.1em;
  position: absolute;
  top: -200%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

@media screen and (min-width: 749px) {
  .flow__heading::before {
    top: -110%;
    font-size: 2.6rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 992px) {
  .flow__heading::before {
    font-size: 1.6rem;
    line-height: 2.5;
  }
}

.flow__text {
  font-size: 2rem;
  line-height: 1.7;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 40px;
}

.flow__list {
  padding-top: 30px;
}

@media screen and (min-width: 992px) {
  .flow__list {
    padding-top: 50px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.flow__list__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 35px;
}

@media screen and (min-width: 992px) {
  .flow__list__item {
    padding-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    margin: auto;
    margin-top: 0;
    width: 23%;
  }
}

.flow__list__item:first-child {
  padding-top: 0;
}

.flow__list__item img {
  width: 40%;
  height: 100%;
}

@media screen and (min-width: 749px) {
  .flow__list__item img {
    width: auto;
  }
}

.flow__list__text-box {
  margin-left: 20px;
  margin-top: 10px;
}

@media screen and (min-width: 749px) {
  .flow__list__text-box {
    margin-left: 30px;
    margin-top: 40px;
  }
}

@media screen and (min-width: 992px) {
  .flow__list__text-box {
    margin-left: 0;
    margin-top: 20px;
  }
}

.flow__list__text-box h4 {
  color: #00c1ba;
}

@media screen and (min-width: 749px) {
  .flow__list__text-box h4 {
    font-size: 3rem;
    line-height: .66;
  }
}

@media screen and (min-width: 992px) {
  .flow__list__text-box h4 {
    font-size: 2rem;
    line-height: 1;
  }
}

.flow__list__text-box p {
  margin-top: 10px;
  font-size: 1.4rem;
  color: #1b1b1b;
}

@media screen and (min-width: 749px) {
  .flow__list__text-box p {
    font-size: 2.4rem;
    line-height: 1.53;
  }
}

@media screen and (min-width: 992px) {
  .flow__list__text-box p {
    font-size: 1.6rem;
    line-height: 1.75;
  }
}

.flow__list__text-box p span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #ffff64));
  background: -webkit-linear-gradient(transparent 60%, #ffff64 60%);
  background: linear-gradient(transparent 60%, #ffff64 60%);
}
/*# sourceMappingURL=style.css.map */

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  /* ... other styling ... */
}

/* Modal Content */
.modal-content {
  /* Style the modal content */
}