@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=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..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", 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;
  background-color: #F1F1F1;
}
.wrapper > section {
  position: relative;
  z-index: 3;
}

.inner {
  position: relative;
  max-width: 800px;
  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 #F1F1F1;
  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;
  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: #6F6F6F;
  background-color: #cccccc;
  font-size: 1em;
  line-height: normal;
  clip-path: none;
  /* Above WP toolbar. */
}

/*
 * Module
 * -------------------------------------------------------------------
 */
/*
Theme Name:
Theme URI:
Author: Ryoka Ikematsu
Description:
Version: 1.0
*/
/** Global + Mixin
 * -------------------------------------------------------------------
 */
.roboto {
  font-family: "Noto Sans JP", sans-serif;
}

.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: #F1F1F1;
}
.scroll-box::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #cccccc;
}

/*========= 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;
  }
}

/*
Theme Name:
Theme URI:
Author: Ryoka Ikematsu
Description:
Version: 1.0
*/
/** Global + Mixin
 * -------------------------------------------------------------------
 */
.nav-header {
  width: 100%;
  background: #F1F1F1;
}
.nav-header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 800px;
  height: 6rem;
  margin: 0 auto;
  padding: 0 15px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.nav-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #55B9C7;
  font-size: 2.6rem;
  font-weight: 700;
}

/*
Theme Name:
Theme URI:
Author: Ryoka Ikematsu
Description:
Version: 1.0
*/
/** Global + Mixin
 * -------------------------------------------------------------------
 */
.nav-drawer {
  position: fixed;
  z-index: 1002;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.nav-drawer__container {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 80%;
  min-width: 200px;
  max-width: 350px;
  height: 100%;
  -webkit-animation-duration: var(--nav-drawer-duration);
          animation-duration: var(--nav-drawer-duration);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  border-left: #F1F1F1 1px solid;
  background: #ffffff;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.01);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.01);
}
.nav-drawer[data-open=true] .nav-drawer__container {
  -webkit-animation-name: menu-container-appeared;
          animation-name: menu-container-appeared;
}
.nav-drawer[data-open=false] .nav-drawer__container {
  -webkit-animation-name: menu-container-leaved;
          animation-name: menu-container-leaved;
}
.nav-drawer__menu {
  display: block;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-drawer__menu-item {
  border-bottom: #F1F1F1 1px dashed;
}
.nav-drawer__menu-item:hover {
  background: #cccccc;
}
.nav-drawer__link {
  position: relative;
  display: block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1em 2.5em 1em 2em;
  text-decoration: none;
  letter-spacing: 0.01em;
  color: inherit;
}
.nav-drawer__link-main {
  display: block;
  font-weight: 500;
}
.nav-drawer__link-sub {
  display: block;
  color: #C1C1C1;
}
.nav-drawer__menu-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
}
.nav-drawer__button-close {
  position: relative;
  width: 6rem;
  height: 6rem;
  margin: 0 0 0 auto;
  padding: 0;
  cursor: pointer;
  border: none;
  background-color: #55B9C7;
  -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.nav-drawer__button-close:hover, .nav-drawer__button-close:focus {
  outline: none;
  background: rgb(93.5, 188.5, 201.8);
}
.nav-drawer__button-close-line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 2px;
  margin: auto;
  background: #ffffff;
}
.nav-drawer__button-close-line:nth-child(1) {
  -webkit-transform: translateY(0) rotate(45deg);
          transform: translateY(0) rotate(45deg);
}
.nav-drawer__button-close-line:nth-child(2) {
  -webkit-transform: translateY(0) rotate(-45deg);
          transform: translateY(0) rotate(-45deg);
}
.nav-drawer__overlay {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-animation-duration: var(--nav-drawer-duration);
          animation-duration: var(--nav-drawer-duration);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  background: rgba(0, 0, 0, 0.08);
}
.nav-drawer[data-open=true] .nav-drawer__overlay {
  -webkit-animation-name: menu-overlay-appeared;
          animation-name: menu-overlay-appeared;
}
.nav-drawer[data-open=false] .nav-drawer__overlay {
  -webkit-animation-name: menu-overlay-leaved;
          animation-name: menu-overlay-leaved;
}

/*
Theme Name:
Theme URI:
Author: Ryoka Ikematsu
Description:
Version: 1.0
*/
/** Global + Mixin
 * -------------------------------------------------------------------
 */
.nav-fixed__sp {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1003;
}
@media screen and (min-width: 768px) {
  .nav-fixed__sp {
    display: none;
  }
}
.nav-fixed__sp .nav-fixed__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
}
.nav-fixed__sp .nav-fixed__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 33.3333333333%;
  height: 50px;
  background-color: #cccccc;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.1rem;
  padding: 0;
  margin: 0 auto;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  border-right: solid 1px #ffffff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.nav-fixed__sp .nav-fixed__link:hover {
  opacity: 0.7;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.nav-fixed__sp .nav-fixed__link:last-child {
  border-right: none;
}
.nav-fixed__sp .nav-fixed__link img {
  width: 100%;
}
.nav-fixed__pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .nav-fixed__pc {
    display: block;
    z-index: 1003;
  }
}
.nav-fixed__pc .nav-fixed__wrap {
  position: fixed;
  top: 50%;
  right: 0px;
  -webkit-transform: translate(0px, -50%);
          transform: translate(0px, -50%);
  z-index: 4;
}
.nav-fixed__pc .nav-fixed__link {
  background-color: rgba(204, 204, 204, 0.75);
  color: #ffffff;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.1rem;
  display: block;
  padding: 1rem 0.5rem;
  margin: 0 auto 1rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  border-radius: 5px 0 0 5px;
}
.nav-fixed__pc .nav-fixed__link:hover {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

/*
Theme Name:
Theme URI:
Author: Ryoka Ikematsu
Description:
Version: 1.0
*/
/** Global + Mixin
 * -------------------------------------------------------------------
 */
.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: #55B9C7;
  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: rgb(74.3185840708, 180.6017699115, 195.4814159292);
  -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);
}

/*
Theme Name:
Theme URI:
Author: Ryoka Ikematsu
Description:
Version: 1.0
*/
/** Global + Mixin
 * -------------------------------------------------------------------
 */
.mainvisual {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("images/mainvisual.jpg");
  background-repeat: no-repeat;
}
@supports (background-image: format("webp")) {
  .mainvisual {
    background-image: url("images/mainvisual.webp");
  }
}
.mainvisual::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background-color: rgba(255, 255, 255, 0.3);
}
.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: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-direction: column;
      flex-direction: column;
  max-width: 800px;
  height: 80vh;
  margin: 0 auto;
  padding-top: 6rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.mainvisual__txt-main {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 992px) {
  .mainvisual__txt-main {
    font-size: 5.6rem;
  }
}
.mainvisual__txt-sub {
  padding-top: 1.6rem;
  color: #6F6F6F;
  font-size: 1.6rem;
}

/*
Theme Name:
Theme URI:
Author: Ryoka Ikematsu
Description:
Version: 1.0
*/
/** Global + Mixin
 * -------------------------------------------------------------------
 */
.scrolldown {
  position: absolute;
  z-index: 1;
  right: 10%;
  bottom: 30px;
}
@media screen and (min-width: 768px) {
  .scrolldown {
    bottom: 5%;
  }
}
.scrolldown span {
  position: absolute;
  bottom: -2px;
  left: 10px;
  width: 10px;
  height: auto;
  letter-spacing: 0.05em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  color: #ffffff;
  font-size: 10px;
  line-height: 1.25;
}
.scrolldown:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 10px;
  height: 10px;
  -webkit-animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
          animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
  border-radius: 50%;
  background: #ffffff;
}
.scrolldown:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 50px;
  background: #ffffff;
}

/*
Theme Name:
Theme URI:
Author: Ryoka Ikematsu
Description:
Version: 1.0
*/
/** Global + Mixin
 * -------------------------------------------------------------------
 */
.pagevisual {
  margin: 0;
}
.pagevisual__container {
  position: relative;
  z-index: 2;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 15px;
}
@media screen and (min-width: 992px) {
  .pagevisual__container {
    padding: 2.4rem 15px;
  }
}
.pagevisual__message {
  font-size: 1.6rem;
  text-align: center;
}

/*
Theme Name:
Theme URI:
Author: Ryoka Ikematsu
Description:
Version: 1.0
*/
/** Global + Mixin
 * -------------------------------------------------------------------
 */
.breadcrumbs__container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0.8rem 15px;
}
.breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow: hidden;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumbs__list-item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.4rem;
  line-height: 1;
}
.breadcrumbs__list-item:not(:first-child)::before {
  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";
}
.breadcrumbs__list-item:last-child {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
}
.breadcrumbs__link {
  color: #6F6F6F;
  line-height: 1;
}
.breadcrumbs__link:hover, .breadcrumbs__link:focus {
  text-decoration: underline;
}
.breadcrumbs__txt {
  color: #6F6F6F;
  display: inline-block;
  max-width: 92%;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1;
}

/*
Theme Name:
Theme URI:
Author: Ryoka Ikematsu
Description:
Version: 1.0
*/
/** Global + Mixin
 * -------------------------------------------------------------------
 */
.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: 4rem;
  font-family: "Noto Sans JP", sans-serif;
}
.page-heading__txt-main:after {
  content: "";
  display: block;
  max-width: 240px;
  padding-top: 2.4rem;
  border-bottom: 3px solid #6F6F6F;
}
.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: #6F6F6F;
  font-size: 1.6rem;
  font-weight: 400;
}
.page-heading__read {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: #6F6F6F;
  text-align: center;
}
.page-heading__message {
  margin: 0 auto;
  color: #6F6F6F;
  font-size: 1.8rem;
  font-weight: 700;
}

/*
Theme Name:
Theme URI:
Author: Ryoka Ikematsu
Description:
Version: 1.0
*/
/** Global + Mixin
 * -------------------------------------------------------------------
 */
.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: #55B9C7;
}
.page-heading-sub__message {
  margin: 0 auto;
  padding-top: 1.6rem;
  color: #cccccc;
  font-size: 1.6rem;
  font-weight: 400;
}

/*
Theme Name:
Theme URI:
Author: Ryoka Ikematsu
Description:
Version: 1.0
*/
/** Global + Mixin
 * -------------------------------------------------------------------
 */
.footer {
  position: relative;
  background: #F1F1F1;
}
.footer__container {
  max-width: 800px;
  margin: 0 auto;
}
.footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  padding: 4rem 0;
  list-style: none;
}
.footer__menu-item:not(:first-child) {
  margin-left: 1.6rem;
}
.footer__menu-item-link {
  color: #cccccc;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.footer__menu-item-link:hover, .footer__menu-item-link:focus {
  text-decoration: underline;
}
.footer__copy {
  padding: 1.6rem 0;
  text-align: center;
  color: #6F6F6F;
  font-size: 1.2rem;
}

/*
Theme Name:
Theme URI:
Author: Ryoka Ikematsu
Description:
Version: 1.0
*/
/** Global + Mixin
 * -------------------------------------------------------------------
 */
.js-open_modal {
  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;
  width: 160px;
  height: 40px;
  padding: 0.25rem 0.5rem;
  border-radius: 100vh;
  background-color: #cccccc;
  font-size: 14px;
  font-size: 0.875rem;
}
.js-open_modal img {
  width: 22px;
}
.js-open_modal.is_active {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.js-modal_area {
  position: fixed;
  z-index: 100;
  top: 70px;
  left: 0;
  display: none;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  margin: 0;
  padding: 25px;
  background-color: #ffffff;
}
.js-modal_area .bl_list_unit {
  margin-bottom: 2rem;
}
.js-modal_area .bl_list_unit .bl_list_head {
  display: block;
  width: 100%;
  margin-bottom: 0.5rem;
}
.js-modal_area .bl_list_unit .bl_list_head .el_list_date {
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
}
.js-modal_area .bl_list_unit .bl_list_head .el_list_cat {
  display: inline-block;
  margin-left: 1rem;
  padding: 4px 10px;
  letter-spacing: 0.1em;
  color: #ffffff;
  border-radius: 5px;
  background-color: #C1C1C1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
}
.js-modal_area .bl_list_unit .bl_list_body {
  width: 100%;
  margin-bottom: 1.5rem;
}
.js-modal_area .js-close_modal {
  position: relative;
  width: 260px;
  margin: 3rem auto;
  padding: 10px;
  cursor: pointer;
  text-align: center;
  color: #ffffff;
  border-radius: 5px;
  background-color: #cccccc;
  font-size: 14px;
  font-size: 0.875rem;
}
.js-modal_area .js-close_modal i {
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*
Theme Name:
Theme URI:
Author: Ryoka Ikematsu
Description:
Version: 1.0
*/
/** Global + Mixin
 * -------------------------------------------------------------------
 */
.photo-modal {
  position: fixed;
  z-index: 1002;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  -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 {
  overflow: auto;
  max-width: 800px;
  max-height: 80%;
  margin: auto;
}
.photo-modal__image img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.photo-modal .photo-modal__button--next, .photo-modal .photo-modal__button--prev, .photo-modal .photo-modal__button--close, .photo-modal .photo-modal__button {
  position: absolute;
  width: 4rem;
  height: 4rem;
  margin: 0;
  padding: 0;
  cursor: pointer;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
  color: #ffffff;
  border: none;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.photo-modal .photo-modal__button--next:hover, .photo-modal .photo-modal__button--prev:hover, .photo-modal .photo-modal__button--close:hover, .photo-modal .photo-modal__button:hover, .photo-modal .photo-modal__button--next:focus, .photo-modal .photo-modal__button--prev:focus, .photo-modal .photo-modal__button--close:focus, .photo-modal .photo-modal__button:focus {
  color: rgb(242.25, 242.25, 242.25);
  outline: none;
}
.photo-modal .photo-modal__button--next::before, .photo-modal .photo-modal__button--prev::before, .photo-modal .photo-modal__button--close::before, .photo-modal .photo-modal__button::before {
  font-size: 2.5rem;
}
.photo-modal__button--close {
  top: 0;
  right: 0;
}
.photo-modal__button--close::before {
  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: "\e5cd";
}
.photo-modal__button--prev {
  top: 50%;
  left: 0;
}
.photo-modal__button--prev::before {
  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";
}
.photo-modal__button--next {
  top: 50%;
  right: 0;
}
.photo-modal__button--next::before {
  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";
}
.photo-modal__overlay {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.85);
}

/*
Theme Name:
Theme URI:
Author: Ryoka Ikematsu
Description:
Version: 1.0
*/
/** Global + Mixin
 * -------------------------------------------------------------------
 */
.button-guide {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 60rem;
  margin: 0 auto;
  padding: 1.6rem;
  color: #6F6F6F;
  border: none;
  border-radius: 8px;
  background: #cccccc;
  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: #55B9C7;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.button-guide:hover::after {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  right: 20px;
}

/*
Theme Name:
Theme URI:
Author: Ryoka Ikematsu
Description:
Version: 1.0
*/
/** Global + Mixin
 * -------------------------------------------------------------------
 */
.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: #6F6F6F;
  border-radius: 0.4rem;
  background: #cccccc;
  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: #55B9C7;
}
.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";
}

/*
Theme Name:
Theme URI:
Author: Ryoka Ikematsu
Description:
Version: 1.0
*/
/** Global + Mixin
 * -------------------------------------------------------------------
 */
.wp-pagenavi {
  clear: both;
  text-align: center;
  margin-top: 5.4rem;
}

.wp-pagenavi a {
  padding: 1.2rem 1.6rem;
  text-align: center;
  border-radius: 6px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  margin: 0.3rem;
  color: #6F6F6F;
  background-color: #F1F1F1;
  cursor: pointer;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.wp-pagenavi a:hover, .wp-pagenavi a:focus {
  color: #ffffff;
  background-color: #55B9C7;
}
.wp-pagenavi span {
  padding: 1.2rem 1.6rem;
  text-align: center;
  border-radius: 6px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  color: #6F6F6F;
  background-color: #F1F1F1;
  margin: 0.3rem;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.wp-pagenavi span.current {
  color: #ffffff;
  background-color: #55B9C7;
}

/*
Theme Name:
Theme URI:
Author: Ryoka Ikematsu
Description:
Version: 1.0
*/
/** Global + Mixin
 * -------------------------------------------------------------------
 */
.form__form-group {
  background-color: #ffffff;
  border-radius: 1rem;
  -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);
}
.form__form-group:not(:first-child) {
  margin-top: 2rem;
}
.form__form-group-title {
  padding: 15px;
  border-bottom: #cccccc 1px solid;
}
.form__form-group-content {
  padding: 2rem 1.5rem;
}
@media screen and (min-width: 992px) {
  .form__form-group-content {
    padding: 2rem 1.5rem;
  }
}
.form .form__label--selected, .form .form__label--required, .form .form__label--itemname, .form .form__label {
  font-weight: 700 !important;
}
.form__label {
  border-bottom: #C1C1C1 1px solid;
}
.form__label--itemname {
  display: inline;
  color: #55B9C7;
  font-size: 2rem;
  line-height: 1.35;
  font-weight: 700;
}
.form__label--required {
  margin-left: 0.2rem;
  padding: 0.4em 0.4em;
  color: #ffffff;
  border-radius: 2px;
  background: #F20000;
  font-size: 1.2rem;
  line-height: 1;
  white-space: nowrap;
}
.form__label--selected {
  margin-left: 0.2rem;
  padding: 0.4em 0.4em;
  color: #ffffff;
  border-radius: 2px;
  background: #6F6F6F;
  font-size: 1.2rem;
  line-height: 1;
  white-space: nowrap;
}
.form__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.form__list-item {
  margin-bottom: 1rem;
}
.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.8rem;
}
.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: 2px solid #55B9C7;
  border-radius: 0.8rem;
  outline: none;
  background: #ffffff;
  color: #6F6F6F;
  font-size: 1.6rem;
  font-weight: 400;
  -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: #C1C1C1;
}
.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: #C1C1C1;
}
.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: #C1C1C1;
}
.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: #C1C1C1;
}
.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: #C1C1C1;
}
.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: #C1C1C1;
}
.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: #C1C1C1;
}
.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 #55B9C7;
}
.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;
  color: #6F6F6F;
  width: 100%;
}
.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 #55B9C7;
}
.form__input--txt-half {
  max-width: 50%;
}
.form__input--txtarea textarea {
  display: block;
  width: 100%;
  padding: 1.5rem;
  border: #55B9C7 2px solid;
  border-radius: 0.8rem;
  outline: none;
}
.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: #C1C1C1 transparent transparent transparent;
}
.form__input--radio {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  padding: 1.8rem 2.5rem;
  border: 2px solid #55B9C7;
  border-radius: 50vh;
  background: #ffffff;
  -webkit-transition: background-color 0.3s, border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, border-color 0.3s, box-shadow 0.3s;
  transition: background-color 0.3s, border-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
  cursor: pointer;
  color: #55B9C7;
}
.form__input--radio:has(.mwform-radio-field) {
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: default;
  color: inherit;
  pointer-events: none;
  pointer-events: auto;
}
.form__input--radio:has(.mwform-radio-field):hover, .form__input--radio:has(.mwform-radio-field):has(> .radio-input:checked) {
  background: transparent;
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: inherit;
}
.form__input--radio .mwform-radio-field {
  display: block;
  width: 100%;
  pointer-events: auto;
}
.form__input--radio .mwform-radio-field:not(:first-child) {
  margin-top: 0.8rem !important;
}
.form__input--radio .mwform-radio-field label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  width: 100%;
  padding: 1rem 2.5rem;
  border: 2px solid #C1C1C1;
  border-radius: 50vh;
  background: #ffffff;
  -webkit-transition: background-color 0.3s, border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, border-color 0.3s, box-shadow 0.3s;
  transition: background-color 0.3s, border-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
  color: #6F6F6F;
  cursor: pointer;
}
.form__input--radio .mwform-radio-field label:hover {
  background: #55B9C7;
  border-color: #55B9C7;
  color: #ffffff;
}
.form__input--radio .mwform-radio-field label:has(input:focus-visible) {
  -webkit-box-shadow: 0 0 0 3px rgba(85, 185, 199, 0.25);
          box-shadow: 0 0 0 3px rgba(85, 185, 199, 0.25);
}
.form__input--radio .mwform-radio-field label:has(input:checked) {
  background: #55B9C7;
  border-color: #55B9C7;
  -webkit-box-shadow: 0 6px 14px rgba(85, 185, 199, 0.26);
          box-shadow: 0 6px 14px rgba(85, 185, 199, 0.26);
  color: #ffffff;
}
.form__input--radio .mwform-radio-field label 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 .mwform-radio-field label .mwform-radio-field-text {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  color: #6F6F6F;
  font-weight: 500;
}
.form__input--radio .mwform-radio-field label:hover .mwform-radio-field-text, .form__input--radio .mwform-radio-field label:has(input:checked) .mwform-radio-field-text {
  color: #ffffff;
}
.form__input--radio:hover {
  background: #55B9C7;
  border-color: #55B9C7;
  color: #ffffff;
}
.form__input--radio:hover .radio-txt {
  color: #ffffff;
}
.form__input--radio:has(> .radio-input:focus-visible) {
  -webkit-box-shadow: 0 0 0 3px rgba(85, 185, 199, 0.25);
          box-shadow: 0 0 0 3px rgba(85, 185, 199, 0.25);
}
.form__input--radio:has(> .radio-input:checked) {
  background: #55B9C7;
  border-color: #55B9C7;
  -webkit-box-shadow: 0 6px 14px rgba(85, 185, 199, 0.26);
          box-shadow: 0 6px 14px rgba(85, 185, 199, 0.26);
}
.form__input--radio:has(> .radio-input:checked) .radio-txt {
  color: #ffffff;
}
.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-input,
.form__input--radio > .radio-txt {
  display: none;
}
.form__input--radio > .radio-input,
.form__input--radio > .radio-txt {
  display: none;
}
.form__input--radio .radio-txt {
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
  color: #55B9C7;
  font-weight: 500;
}
.form__input--radio .radio-input:checked ~ .radio-txt {
  color: #ffffff;
}
.form__input--check {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  padding: 1.8rem 2.5rem;
  border: 2px solid #55B9C7;
  border-radius: 50vh;
  background: #ffffff;
  -webkit-transition: background-color 0.3s, border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, border-color 0.3s, box-shadow 0.3s;
  transition: background-color 0.3s, border-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
  cursor: pointer;
  color: #55B9C7;
}
.form__input--check:has(.mwform-checkbox-field) {
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: default;
  color: inherit;
  pointer-events: none;
  pointer-events: auto;
}
.form__input--check:has(.mwform-checkbox-field):hover, .form__input--check:has(.mwform-checkbox-field):has(> .check-input:checked) {
  background: transparent;
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: inherit;
}
.form__input--check:has(.mwform-checkbox-field) {
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: default;
  color: inherit;
  pointer-events: none;
}
.form__input--check .mwform-checkbox-field {
  display: block;
  width: 100%;
  pointer-events: auto;
}
.form__input--check .mwform-checkbox-field:not(:first-child) {
  margin-top: 0.8rem !important;
}
.form__input--check .mwform-checkbox-field label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  width: 100%;
  padding: 1rem 2.5rem;
  border: 2px solid #C1C1C1;
  border-radius: 50vh;
  background: #ffffff;
  -webkit-transition: background-color 0.3s, border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, border-color 0.3s, box-shadow 0.3s;
  transition: background-color 0.3s, border-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
  color: #6F6F6F;
  cursor: pointer;
}
.form__input--check .mwform-checkbox-field label:hover {
  background: #55B9C7;
  border-color: #55B9C7;
  color: #ffffff;
}
.form__input--check .mwform-checkbox-field label:has(input:focus-visible) {
  -webkit-box-shadow: 0 0 0 3px rgba(85, 185, 199, 0.25);
          box-shadow: 0 0 0 3px rgba(85, 185, 199, 0.25);
}
.form__input--check .mwform-checkbox-field label:has(input:checked) {
  background: #55B9C7;
  border-color: #55B9C7;
  -webkit-box-shadow: 0 6px 14px rgba(85, 185, 199, 0.26);
          box-shadow: 0 6px 14px rgba(85, 185, 199, 0.26);
  color: #ffffff;
}
.form__input--check .mwform-checkbox-field label 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 .mwform-checkbox-field label .mwform-checkbox-field-text {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  color: #6F6F6F;
  font-weight: 500;
}
.form__input--check .mwform-checkbox-field label:hover .mwform-checkbox-field-text, .form__input--check .mwform-checkbox-field label:has(input:checked) .mwform-checkbox-field-text {
  color: #ffffff;
}
.form__input--check:hover {
  background: #55B9C7;
  border-color: #55B9C7;
  color: #ffffff;
}
.form__input--check:hover .check-txt {
  color: #ffffff;
}
.form__input--check:has(> .check-input:focus-visible) {
  -webkit-box-shadow: 0 0 0 3px rgba(85, 185, 199, 0.25);
          box-shadow: 0 0 0 3px rgba(85, 185, 199, 0.25);
}
.form__input--check:has(> .check-input:checked) {
  background: #55B9C7;
  border-color: #55B9C7;
  -webkit-box-shadow: 0 6px 14px rgba(85, 185, 199, 0.26);
          box-shadow: 0 6px 14px rgba(85, 185, 199, 0.26);
}
.form__input--check:has(> .check-input:checked) .check-txt {
  color: #ffffff;
}
.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-input,
.form__input--check > .check-txt {
  display: none;
}
.form__input--check > .check-input,
.form__input--check > .check-txt {
  display: none;
}
.form__input--check .check-txt {
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
  color: #55B9C7;
  font-weight: 500;
}
.form__input--check .check-input:checked ~ .check-txt {
  color: #ffffff;
}

/*
Theme Name:
Theme URI:
Author: Ryoka Ikematsu
Description:
Version: 1.0
*/
/** Global + Mixin
 * -------------------------------------------------------------------
 */
.table-overview {
  width: 100%;
  text-align: left;
  line-height: 1.8;
}
.table-overview tr th {
  width: 16rem;
  padding: 0.8rem;
  vertical-align: top;
}
.table-overview tr td {
  width: calc(100% - 16rem);
  padding: 0.8rem 1.6rem;
  vertical-align: top;
}

/*
 * トップページ
 * -------------------------------------------------------------------
 */
/*
 * CONTACT
 * -------------------------------------------------------------------
 */
/*
Theme Name:
Theme URI:
Author: Ryoka Ikematsu
Description:
Version: 1.0
*/
/** Global + Mixin
 * -------------------------------------------------------------------
 */
.contact-form__container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 15px;
  padding-top: 0;
  padding-bottom: 0;
}
@media screen and (min-width: 992px) {
  .contact-form__container {
    padding: 2.4rem 15px;
  }
}
@media screen and (min-width: 992px) {
  .contact-form__container {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.contact-form__heading {
  margin-bottom: 3.2rem;
}
.contact-form__content {
  margin: 0 auto;
}
.contact-form__form {
  max-width: 800px;
  margin: 0 auto 1.6rem auto;
}
@media screen and (min-width: 992px) {
  .contact-form__form {
    margin: 0 auto 6.4rem auto;
  }
}
.contact-form__button {
  margin-top: 3.2rem;
  text-align: center;
}
.contact-form__button-submit {
  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-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  max-width: 100%;
  padding: 1em 3em;
  color: #ffffff;
  border-radius: 50vh;
  background: #55B9C7;
  font-weight: 700;
}
@media screen and (min-width: 992px) {
  .contact-form__button-submit {
    max-width: 37.5rem;
  }
}
.contact-form__button-submit:hover, .contact-form__button-submit:focus {
  background: rgb(74.3185840708, 180.6017699115, 195.4814159292);
}
.contact-form__button-return {
  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-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  max-width: 30rem;
  padding: 1em 3em;
  color: #C1C1C1;
  border-radius: 50vh;
  border: #C1C1C1 1px solid;
}
@media screen and (min-width: 768px) {
  .contact-form__button-return {
    max-width: 20rem;
    margin: 0 0.8rem;
  }
}
.contact-form__button-return:hover, .contact-form__button-return:focus {
  background: #cccccc;
  color: #ffffff;
}

.google-user-voice {
  background-color: #F1F1F1;
}
.google-user-voice__container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 15px;
  max-width: 60rem;
}
@media screen and (min-width: 992px) {
  .google-user-voice__container {
    padding: 2.4rem 15px;
  }
}
.google-user-voice__heading {
  margin-bottom: 3.2rem;
}
.google-user-voice__cta {
  position: relative;
  background-color: rgb(246.1238938053, 251.3451327434, 252.0761061947);
  border: #55B9C7 4px solid;
  border-radius: 0.8rem;
  padding: 2.5rem 1.8rem;
  -webkit-box-shadow: 0 12px 28px rgba(85, 185, 199, 0.14);
          box-shadow: 0 12px 28px rgba(85, 185, 199, 0.14);
}
.google-user-voice__cta:first-child::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
}
.google-user-voice__cta .cta__ttl {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}
.google-user-voice__cta .cta__copy {
  margin: 2.4rem auto;
  text-align: center;
}
.google-user-voice__cta .cta__attention {
  color: #F20000;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.6;
}
.google-user-voice__cta .copy-button {
  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-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  display: inline-flex;
  min-width: 28rem;
  width: 100%;
  max-width: 40rem;
  padding: 2rem 2.4rem;
  background-color: #55B9C7;
  border: 2px solid #55B9C7;
  border-radius: 9999px;
  color: #ffffff;
  text-align: center;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  -webkit-box-shadow: 0 0 0.8rem 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 0.8rem 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.google-user-voice__cta .copy-button:hover {
  background-color: white;
  -webkit-box-shadow: 0 14px 28px rgba(85, 185, 199, 0.3);
          box-shadow: 0 14px 28px rgba(85, 185, 199, 0.3);
  color: #55B9C7;
}
.google-user-voice__cta .copy-button--done {
  background-color: #55B9C7;
  color: #ffffff;
  border-color: #55B9C7;
}
.google-user-voice .columns {
  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;
  gap: 3.2rem;
  padding: 2.4rem 1.6rem 0.8rem;
}
@media screen and (min-width: 992px) {
  .google-user-voice .columns {
    padding: 2.4rem 4.8rem 0.8rem;
  }
}
.google-user-voice .columns .column {
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  .google-user-voice .columns .column {
    width: calc(50% - 1.6rem);
  }
}
.google-user-voice .columns .column__img {
  width: 100%;
  max-width: 15rem;
}
.google-user-voice__list-item {
  -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);
  background-color: #ffffff;
  border-radius: 0.8rem;
}
.google-user-voice__list-item:not(:first-child) {
  margin-top: 1.8rem;
}
.google-user-voice .voice-item__ttl {
  background-color: #55B9C7;
  border-radius: 0.8rem 0.8rem 0 0;
  color: #ffffff;
  padding: 1rem 1.5rem;
  font-size: 1.6rem;
  font-weight: 700;
}
.google-user-voice .voice-item__thumb {
  display: block;
  padding: 1.5rem 1.5rem 2.5rem;
}
.google-user-voice .voice-item__img {
  display: block;
  margin: 0;
  margin: 0 auto;
  min-width: 32.5rem;
}/*# sourceMappingURL=style.css.map */