@charset "UTF-8";
/*--------------------------------------
　　　　　　共通スタイル
--------------------------------------*/
/* 【iPhone】【Safari】【css】ボタンの角丸などの初期化 */
input[type="button"], input[type="submit"] {
  -webkit-appearance: none; }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; }

html {
  font-size: 2.6666666667vw;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal; }
  @media print, screen and (min-width: 768px) {
    html {
      font-size: 1.2195121951vw; } }
  @media print, screen and (min-width: 1160px) {
    html {
      font-size: 10px; } }

body {
  font-size: 1.4rem;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  color: #000;
  position: relative;
  background: url("../images/hougan.png") repeat; }
  @media print, screen and (min-width: 768px) {
    body {
      line-height: 1.8;
      font-size: 1.5rem; } }
  @media print, screen and (min-width: 1160px) {
    body {
      font-size: 1.6rem; } }

a:link {
  color: #00a199;
  text-decoration: none; }
a:visited {
  color: #00a199;
  text-decoration: none; }
a.underline {
  text-decoration: underline; }
  a.underline:hover {
    text-decoration: none; }
a.underline-hover:hover {
  text-decoration: underline; }
a.opacity-hover {
  display: block;
  transition: opacity 0.3s ease 0s; }
  a.opacity-hover:hover {
    opacity: 0.7; }
a.opacity-hover-inline {
  transition: opacity 0.3s ease 0s; }
  a.opacity-hover-inline:hover {
    opacity: 0.7; }

a.link-button {
  background-color: #d6730b;
  border: 1px #d6730b solid;
  color: #fff;
  font-weight: bold;
  display: inline-block;
  padding: 0.6em 2.5em;
  border-radius: 1rem; }
  @media print, screen and (min-width: 1160px) {
    a.link-button {
      transition: .3s; }
      a.link-button:hover {
        color: #d6730b;
        background-color: #fff; } }

.wrap-button {
  margin-top: 8vw;
  text-align: center; }
  @media print, screen and (min-width: 768px) {
    .wrap-button {
      margin-top: 3.6585365854vw; } }
  @media print, screen and (min-width: 1160px) {
    .wrap-button {
      margin-top: 30px; } }

#pageTop {
  position: fixed;
  bottom: 2.6666666667vw;
  right: 2.6666666667vw;
  z-index: 10; }
  #pageTop img {
    width: 10.6666666667vw;
    height: auto;
    vertical-align: bottom; }
  @media print, screen and (min-width: 768px) {
    #pageTop {
      bottom: 2.4390243902vw;
      right: 2.4390243902vw; }
      #pageTop img {
        width: 4.8780487805vw; } }
  @media print, screen and (min-width: 1160px) {
    #pageTop {
      bottom: 20px;
      right: 20px; }
      #pageTop img {
        width: 40px; } }

/*その他*/
.indent-1 {
  padding-left: 1em;
  text-indent: -1em; }

.indent-2 {
  padding-left: 2em;
  text-indent: -2em; }

.img-max-width-100 {
  max-width: 100%;
  height: auto;
  vertical-align: bottom; }

.overflow-hidden {
  overflow: hidden; }

.color-main {
  color: #00a199; }

.color-red {
  color: #ff0000; }

.common-title, .common-title-w {
  font-size: 2.0rem;
  font-weight: 500;
  text-align: center;
  color: #7e7e7e; }
  @media print, screen and (min-width: 768px) {
    .common-title, .common-title-w {
      font-size: 3.0rem; } }
  @media print, screen and (min-width: 1160px) {
    .common-title, .common-title-w {
      font-size: 3.6rem; } }

.common-title-w {
  color: #fff; }

.mincho {
  font-family: "Noto Serif JP", serif; }

/* ----------------------------------------
　　　　　　　ここから
---------------------------------------- */
/* 共通 */
.wrap-container {
  width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
  position: relative; }
  @media print, screen and (min-width: 768px) {
    .wrap-container {
      padding-left: 4rem;
      padding-right: 4rem; } }
  @media print, screen and (min-width: 1160px) {
    .wrap-container {
      max-width: 1160px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 3rem;
      padding-right: 3rem; } }

/* パンくずリスト */
.wrap-breadcrumbs {
  padding: 1em 0;
  background-color: #fff; }
  .wrap-breadcrumbs .breadcrumbs {
    font-size: 1.2rem; }
    .wrap-breadcrumbs .breadcrumbs a {
      color: #00a199; }
      .wrap-breadcrumbs .breadcrumbs a:hover {
        text-decoration: underline; }
  @media print, screen and (min-width: 768px) {
    .wrap-breadcrumbs {
      padding: 1em 0; } }

/* ロード画面 ここから */
.preloader-common {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  transition: .5s;
  background-color: #fff; }
  .preloader-common .load-text {
    font-size: 10px;
    margin-top: 5px;
    text-align: center;
    font-family: 'メイリオ', 'Meiryo', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', sans-serif; }
  .preloader-common i {
    color: #00a199; }

@keyframes puff-in-center {
  0% {
    -webkit-filter: blur(8px);
    filter: blur(8px);
    opacity: 0; }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1; } }
.common-marker {
  line-height: 1.6; }
  .common-marker span {
    background: linear-gradient(transparent 70%, #ffda2a 30%);
    padding: 0 0.4em;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    transition: background-size 1.5s; }

html.wf-active body.complete .preloader-common, html.loading-delay body.complete .preloader-common {
  pointer-events: none;
  opacity: 0; }
html.wf-active body.complete .common-marker.visible span, html.loading-delay body.complete .common-marker.visible span {
  background-size: 100% 100%; }
html.wf-active body.complete .main-catch-copy, html.loading-delay body.complete .main-catch-copy {
  animation: puff-in-center 1.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both; }

/* ロード画面 ここまで */
.wrap-youtube {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  width: 100%; }
  .wrap-youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important; }

/* header *********************************************************************************************************/
/* ------------------引出しメニュー ここから-------------------*/
.wrap-hamberger-menu {
  position: fixed;
  cursor: pointer;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  box-shadow: 0px 0px 8px 0px rgba(0, 161, 153, 0.6);
  background-color: #fff;
  right: 1.5rem;
  top: 1.2rem;
  z-index: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .6s; }
  .wrap-hamberger-menu .box {
    width: 2rem;
    height: 1.8rem;
    position: relative; }
  .wrap-hamberger-menu span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.2rem;
    background-color: #00a199;
    overflow: hidden;
    transition: all .4s; }
    .wrap-hamberger-menu span:nth-of-type(1) {
      width: 100%; }
    .wrap-hamberger-menu span:nth-of-type(2) {
      top: 0.8rem;
      width: 100%; }
    .wrap-hamberger-menu span:nth-of-type(3) {
      top: 1.6rem;
      width: 100%; }
  .wrap-hamberger-menu.open span:nth-of-type(1) {
    top: 0;
    left: 0;
    transform: translateY(1rem) rotate(-135deg);
    width: 2rem; }
  .wrap-hamberger-menu.open span:nth-of-type(2) {
    opacity: 0; }
  .wrap-hamberger-menu.open span:nth-of-type(3) {
    top: 2rem;
    left: 0;
    transform: translateY(-1rem) rotate(135deg);
    width: 2rem; }
  @media print, screen and (min-width: 768px) {
    .wrap-hamberger-menu {
      display: none;
      width: 7rem;
      height: 7rem;
      right: 2rem;
      top: 2rem; }
      .wrap-hamberger-menu .box {
        width: 2.6rem;
        height: 2.2rem; }
      .wrap-hamberger-menu span:nth-of-type(1) {
        width: 100%; }
      .wrap-hamberger-menu span:nth-of-type(2) {
        top: 1rem;
        width: 100%; }
      .wrap-hamberger-menu span:nth-of-type(3) {
        top: 2rem;
        width: 100%; }
      .wrap-hamberger-menu.open span:nth-of-type(1) {
        transform: translateY(1rem) rotate(-135deg);
        width: 2.6rem; }
      .wrap-hamberger-menu.open span:nth-of-type(3) {
        top: 2rem;
        transform: translateY(-1rem) rotate(135deg);
        width: 2.6rem; } }
  @media print, screen and (min-width: 1160px) {
    .wrap-hamberger-menu {
      display: none; } }

.wrap-all {
  -webkit-transition: -webkit-transform .6s;
  transition: transform .6s;
  position: relative;
  overflow: hidden; }

#navTgl:checked ~ .wrap-all {
  transform: translateX(-25rem); }

#navTgl {
  display: none;
  overflow: hidden; }

label.hamberger-menu-close {
  cursor: pointer;
  position: fixed;
  top: 2.5rem;
  right: 0.6rem; }

#navTgl:checked ~ .wrap-hamberger-menu {
  transform: translateX(-24.6rem); }
  #navTgl:checked ~ .wrap-hamberger-menu span:nth-of-type(1) {
    top: 0;
    left: 0;
    transform: translateY(1rem) rotate(-135deg);
    width: 2rem; }
  #navTgl:checked ~ .wrap-hamberger-menu span:nth-of-type(2) {
    opacity: 0; }
  #navTgl:checked ~ .wrap-hamberger-menu span:nth-of-type(3) {
    top: 2rem;
    left: 0;
    transform: translateY(-1rem) rotate(135deg);
    width: 2rem; }
  @media print, screen and (min-width: 768px) {
    #navTgl:checked ~ .wrap-hamberger-menu span:nth-of-type(1) {
      transform: translateY(1rem) rotate(-135deg);
      width: 2.6rem; }
    #navTgl:checked ~ .wrap-hamberger-menu span:nth-of-type(3) {
      top: 2rem;
      transform: translateY(-1rem) rotate(135deg);
      width: 2.6rem; } }

.hamberger-menu-close {
  pointer-events: none;
  z-index: 4;
  width: 100%;
  height: 100%;
  transition: background-color 0.6s;
  top: 0 !important;
  right: 0 !important;
  position: fixed !important; }

#navTgl:checked ~ .hamberger-menu-close {
  pointer-events: auto;
  background-color: rgba(0, 0, 0, 0.4);
  top: 0;
  right: 0; }

.fixed-slide-menu {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10;
  position: fixed;
  overflow: auto;
  top: 0;
  right: -25rem;
  width: 25rem;
  height: 100%;
  padding: 1rem 0;
  background-color: #fff;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: -webkit-transform .6s;
  transition: transform .6s;
  font-size: 1.2rem; }
  .fixed-slide-menu a.sp-contact {
    padding: 2rem;
    display: block;
    background-color: #00a199;
    color: #fff;
    text-align: center; }
  .fixed-slide-menu .sp-shop-info {
    padding: 1.5rem 2rem;
    background-color: #f9f9f9;
    font-size: 1.2rem;
    text-align: center; }
    .fixed-slide-menu .sp-shop-info .name {
      font-size: 1.6rem; }
  .fixed-slide-menu .sp-menu-tel {
    background-color: #00a199;
    text-align: center;
    padding: 2rem;
    color: #fff; }
    .fixed-slide-menu .sp-menu-tel a {
      color: #fff;
      font-weight: normal; }
  .fixed-slide-menu ul.fixed-slide-menu__list > li {
    border-bottom: 1px solid #ddd;
    line-height: 1.3; }
    .fixed-slide-menu ul.fixed-slide-menu__list > li:first-child {
      border-top: 1px solid #ddd; }
    .fixed-slide-menu ul.fixed-slide-menu__list > li a {
      padding: 1.2rem 3rem 1.2rem 2rem;
      display: block;
      color: #00a199;
      position: relative;
      font-weight: 500; }
      .fixed-slide-menu ul.fixed-slide-menu__list > li a:after {
        content: "\f105";
        font-family: FontAwesome;
        position: absolute;
        right: 1.5rem;
        top: 50%;
        margin-top: -0.5em; }
    .fixed-slide-menu ul.fixed-slide-menu__list > li .menu-toggle {
      display: none; }
    .fixed-slide-menu ul.fixed-slide-menu__list > li .menu-label {
      padding: 1.2rem 3rem 1.2rem 2rem;
      display: block;
      color: #00a199;
      position: relative;
      font-weight: 500;
      cursor: pointer; }
      .fixed-slide-menu ul.fixed-slide-menu__list > li .menu-label:after {
        content: "\f0d7";
        font-family: FontAwesome;
        position: absolute;
        right: 1.5rem;
        top: 50%;
        margin-top: -0.5em; }
    .fixed-slide-menu ul.fixed-slide-menu__list > li .menu-toggle:not(:checked) ~ .fixed-slide-menu__list {
      display: none; }
    .fixed-slide-menu ul.fixed-slide-menu__list > li .menu-toggle:checked ~ .fixed-slide-menu__list {
      display: block; }
    .fixed-slide-menu ul.fixed-slide-menu__list > li .menu-toggle:checked ~ .menu-label:after {
      content: "\f0d8"; }
  .fixed-slide-menu ul.fixed-slide-menu__list--sub-menu {
    padding-left: 1rem; }
    .fixed-slide-menu ul.fixed-slide-menu__list--sub-menu > li {
      border-bottom: 1px dotted #ddd; }
      .fixed-slide-menu ul.fixed-slide-menu__list--sub-menu > li:first-child {
        border-top: 1px dotted #ddd; }
      .fixed-slide-menu ul.fixed-slide-menu__list--sub-menu > li:last-child {
        border-bottom: none; }

#navTgl:checked ~ .fixed-slide-menu {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%); }

/* ------------------引出しメニュー ここまで-------------------*/
/* 動きの定義 */
@keyframes sway {
  0% {
    transform: rotate(5deg); }
  50% {
    transform: rotate(-5deg); }
  100% {
    transform: rotate(5deg); } }
.wrap-header {
  padding: 1rem 0;
  background-color: #fff; }
  .wrap-header .wrap-container {
    position: relative; }
  .wrap-header .logo img {
    width: 16rem;
    height: auto;
    vertical-align: bottom; }
  .wrap-header .sun {
    display: none; }
  @media print, screen and (min-width: 768px) {
    .wrap-header {
      padding: 5rem 0 5rem; }
      .wrap-header .logo img {
        width: 21.4rem; }
      .wrap-header .sun {
        display: inline-block;
        position: absolute;
        right: 2.5rem;
        top: -7rem;
        width: 26rem;
        z-index: 1;
        /* アニメーションの設定 */
        animation: sway 4s ease-in-out infinite;
        /* 回転の中心点を中央に設定（デフォルトですが明示しておくと安心です） */
        transform-origin: center; } }
  @media print, screen and (min-width: 1160px) {
    .wrap-header {
      padding: 7rem 0 5rem; }
      .wrap-header .sun {
        right: 0;
        top: -4rem;
        width: 26rem; } }

.wrap-g-nav {
  display: none; }
  @media print, screen and (min-width: 768px) {
    .wrap-g-nav {
      display: flex;
      gap: 5rem;
      margin-top: 4rem;
      position: relative;
      z-index: 2; }
      .wrap-g-nav li a {
        display: inline-block;
        color: #000;
        text-align: center;
        transition: color .3s; }
        .wrap-g-nav li a img {
          width: 4rem;
          height: auto; }
        .wrap-g-nav li a:hover {
          color: #00a199; } }
  @media print, screen and (min-width: 1160px) {
    .wrap-g-nav {
      gap: 7rem;
      margin-top: 5rem; } }

/* トップページ-------------------------------------------------------------------------------------*/
.wrap-top-contents01 {
  background: url("../images/pattern01.png") no-repeat center 4rem;
  background-size: 127.7rem 57.3rem;
  color: #fff;
  padding: 4rem 0 6rem;
  overflow: hidden; }
  .wrap-top-contents01 .wrap-container {
    position: relative; }
  .wrap-top-contents01 h2 span {
    background-color: #5582b0;
    color: #fff;
    padding: 0.5em 2em;
    font-size: 1.8rem;
    border-radius: 1rem;
    display: inline-block; }
  .wrap-top-contents01 h3 {
    font-size: 2.3rem;
    text-shadow: 0px 4px 7px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
    margin-top: 1.5rem; }
  .wrap-top-contents01 .desc {
    margin-top: 2rem;
    font-weight: bold; }
  .wrap-top-contents01 .photo01 {
    margin-top: 2rem; }
    .wrap-top-contents01 .photo01 img {
      width: 100%;
      height: auto; }
  .wrap-top-contents01 .photo-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0.5rem;
    margin-top: 0;
    position: relative;
    z-index: 2; }
    .wrap-top-contents01 .photo-list img {
      width: 100%;
      height: auto; }
    .wrap-top-contents01 .photo-list li:nth-child(2) img {
      transform: translateY(1rem); }
    .wrap-top-contents01 .photo-list li:nth-child(3) img {
      transform: translateY(1rem); }
  @media print, screen and (min-width: 768px) {
    .wrap-top-contents01 {
      padding: 7rem 0; }
      .wrap-top-contents01 h2 span {
        font-size: 2.0rem; }
      .wrap-top-contents01 .desc {
        margin-top: 2rem;
        font-size: 2rem; }
      .wrap-top-contents01 h3 {
        font-size: 3.2rem;
        text-shadow: 0px 4px 7px rgba(0, 0, 0, 0.3);
        line-height: 1.4;
        margin-top: 1.5rem; }
      .wrap-top-contents01 .desc {
        margin-top: 2rem;
        font-weight: bold; }
      .wrap-top-contents01 .photo01 {
        margin-top: 0; }
        .wrap-top-contents01 .photo01 img {
          position: absolute;
          z-index: 1;
          right: 1rem;
          top: 7rem;
          width: 35.4rem;
          height: auto; }
      .wrap-top-contents01 .photo-list {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 2rem;
        margin-top: 3rem;
        position: relative;
        z-index: 2; }
        .wrap-top-contents01 .photo-list img {
          width: 100%;
          height: auto; }
        .wrap-top-contents01 .photo-list li:nth-child(2) img {
          transform: translateY(3rem); }
        .wrap-top-contents01 .photo-list li:nth-child(3) img {
          transform: translateY(1rem); }
        .wrap-top-contents01 .photo-list li:nth-child(4) img {
          transform: translateY(-4rem); } }
  @media print, screen and (min-width: 1160px) {
    .wrap-top-contents01 h3 {
      font-size: 4rem; }
    .wrap-top-contents01 .photo01 {
      margin-top: 0; }
      .wrap-top-contents01 .photo01 img {
        position: absolute;
        z-index: 1;
        right: -3rem;
        top: 0;
        width: 60.4rem;
        height: auto; } }

.wrap-top-contents02 {
  background-color: #fff;
  padding: 4rem 0 6rem;
  overflow: hidden;
  margin-top: -3rem; }
  .wrap-top-contents02 .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem; }
    .wrap-top-contents02 .grid .left-block h2 {
      font-size: 2.2rem;
      padding-bottom: 2rem; }
    .wrap-top-contents02 .grid .left-block img {
      width: 100%;
      height: auto;
      border-radius: 1rem; }
    .wrap-top-contents02 .grid .right-block {
      color: #00a199; }
  @media print, screen and (min-width: 768px) {
    .wrap-top-contents02 .grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem; }
      .wrap-top-contents02 .grid .left-block h2 {
        font-size: 3rem;
        text-align: left; }
      .wrap-top-contents02 .grid .left-block img {
        width: 100%;
        height: auto; }
      .wrap-top-contents02 .grid .right-block {
        color: #00a199; }
        .wrap-top-contents02 .grid .right-block .desc {
          font-size: 2.0rem;
          padding-top: 0.7em; } }
  @media print, screen and (min-width: 1160px) {
    .wrap-top-contents02 {
      background: url("../images/pattern02.png") no-repeat calc(50% - 10rem) 3rem;
      background-size: 180rem 60.6rem;
      padding: 9rem 0 18rem;
      margin-top: -11rem; }
      .wrap-top-contents02 .grid {
        display: grid;
        grid-template-columns: 41rem 1fr;
        gap: 2rem; }
        .wrap-top-contents02 .grid .left-block h2 {
          font-size: 5rem;
          padding-bottom: 0; }
        .wrap-top-contents02 .grid .left-block img {
          width: 100%;
          height: auto; }
        .wrap-top-contents02 .grid .right-block {
          color: #00a199; }
          .wrap-top-contents02 .grid .right-block .desc {
            font-size: 2.0rem; } }

.wrap-top-contents03 {
  background: url("../images/pattern03.png") no-repeat center top;
  background-size: 122.3rem 52rem;
  color: #fff;
  padding: 4rem 0 6rem;
  margin-top: 3rem; }
  .wrap-top-contents03 .wrap-container {
    position: relative; }
  .wrap-top-contents03 h2 span {
    background-color: #d6730b;
    color: #fff;
    padding: 0.5em 2em;
    font-size: 1.8rem;
    border-radius: 1rem;
    display: block;
    text-align: center; }
  .wrap-top-contents03 h3 {
    font-size: 2.3rem;
    text-shadow: 0px 4px 7px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
    margin-top: 1.5rem; }
  .wrap-top-contents03 .desc {
    margin-top: 2rem;
    font-weight: bold; }
  .wrap-top-contents03 .photo01 {
    margin-bottom: 2rem; }
    .wrap-top-contents03 .photo01 img {
      width: 50%;
      height: auto; }
  .wrap-top-contents03 .illust {
    position: absolute;
    right: 2rem;
    top: 3rem;
    width: 40%;
    height: auto; }
  @media print, screen and (min-width: 768px) {
    .wrap-top-contents03 {
      padding: 7rem 0 9rem;
      margin-top: 3rem; }
      .wrap-top-contents03 h2 span {
        font-size: 2.0rem;
        display: inline-block; }
      .wrap-top-contents03 .desc {
        margin-top: 2rem;
        font-size: 2rem; }
      .wrap-top-contents03 h3 {
        font-size: 3.2rem;
        text-shadow: 0px 4px 7px rgba(0, 0, 0, 0.3);
        line-height: 1.4;
        margin-top: 1.5rem; }
      .wrap-top-contents03 .desc {
        margin-top: 2rem;
        font-weight: bold; }
      .wrap-top-contents03 .photo01 {
        margin-bottom: 0; }
        .wrap-top-contents03 .photo01 img {
          position: absolute;
          z-index: 1;
          left: 2rem;
          top: 0;
          width: 35.4rem;
          height: auto; }
      .wrap-top-contents03 .content-block {
        padding-left: 50%; }
      .wrap-top-contents03 .illust {
        position: absolute;
        right: 5rem;
        top: -17rem;
        width: 22.5rem;
        height: auto; } }
  @media print, screen and (min-width: 1160px) {
    .wrap-top-contents03 {
      padding: 9rem 0; }
      .wrap-top-contents03 h3 {
        font-size: 4rem; }
      .wrap-top-contents03 .photo01 {
        margin-top: 0; }
        .wrap-top-contents03 .photo01 img {
          position: absolute;
          z-index: 1;
          left: -3rem;
          top: -21rem;
          width: 56.2rem;
          height: auto; }
      .wrap-top-contents03 .content-block {
        padding-left: 53rem; }
      .wrap-top-contents03 .illust {
        position: absolute;
        right: 15rem;
        top: -23rem;
        width: 32.5rem; } }

.wrap-top-contents04 {
  padding: 2rem 0 0; }
  .wrap-top-contents04 h2 {
    text-align: center; }
    .wrap-top-contents04 h2 img {
      width: 80%;
      height: auto;
      vertical-align: bottom; }
  .wrap-top-contents04 .point-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem; }
    .wrap-top-contents04 .point-grid img {
      width: 100%;
      height: auto;
      vertical-align: bottom;
      filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5)); }
  @media print, screen and (min-width: 768px) {
    .wrap-top-contents04 h2 {
      text-align: left; }
      .wrap-top-contents04 h2 img {
        width: 50%; }
    .wrap-top-contents04 .point-grid {
      margin-top: -15rem;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      gap: 1rem; } }
  @media print, screen and (min-width: 1160px) {
    .wrap-top-contents04 h2 img {
      width: 54.1rem; }
    .wrap-top-contents04 .point-grid {
      margin-top: -23rem;
      gap: 1.5rem; } }

.wrap-top-contents05 {
  position: relative;
  background-image: url("../images/pattern04.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 102rem;
  display: flex;
  align-items: center; }
  .wrap-top-contents05 .wrap-container {
    position: relative;
    z-index: 2; }
  .wrap-top-contents05 h2 {
    color: #fff;
    font-size: 3.0rem; }
  .wrap-top-contents05 .price img {
    width: 100%;
    height: auto; }
  @media print, screen and (min-width: 768px) {
    .wrap-top-contents05 {
      min-height: 92rem; }
      .wrap-top-contents05 h2 {
        font-size: 4.0rem;
        margin-top: -10rem; } }
  @media print, screen and (min-width: 1160px) {
    .wrap-top-contents05 h2 {
      font-size: 6.8rem;
      margin-top: -10rem; } }
  @media print, screen and (min-width: 1920px) {
    .wrap-top-contents05 {
      background-size: contain;
      height: 47.91vw; } }

.wrap-top-contents06 {
  background-color: rgba(210, 236, 148, 0.5);
  padding: 8rem 0 0;
  margin-top: -11rem; }
  .wrap-top-contents06 h2 img {
    width: 16rem;
    height: auto; }
  .wrap-top-contents06 .school-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem; }
    .wrap-top-contents06 .school-list li img {
      width: 100%;
      height: auto;
      border-radius: 1rem; }
    .wrap-top-contents06 .school-list li .name {
      margin-top: 1rem;
      text-align: center; }
      .wrap-top-contents06 .school-list li .name img {
        width: 100%;
        height: auto; }
  .wrap-top-contents06 .company-info {
    margin-top: 6rem; }
    .wrap-top-contents06 .company-info .image-block img {
      width: 100%;
      height: auto;
      border-radius: 1rem; }
    .wrap-top-contents06 .company-info .text-block {
      font-weight: bold;
      font-size: 1.7rem;
      padding-top: 1rem; }
  @media print, screen and (min-width: 768px) {
    .wrap-top-contents06 {
      padding: 16rem 0 0;
      margin-top: -16rem; }
      .wrap-top-contents06 h2 img {
        width: 21.9rem;
        height: auto; }
      .wrap-top-contents06 .school-list {
        grid-template-columns: 19rem 1fr 1fr 1fr;
        gap: 3rem; }
        .wrap-top-contents06 .school-list li .name {
          text-align: center; }
          .wrap-top-contents06 .school-list li .name img {
            width: 100%; }
      .wrap-top-contents06 .company-info {
        margin-top: 9rem;
        display: flex; }
        .wrap-top-contents06 .company-info .image-block {
          padding-top: 0.5em; }
          .wrap-top-contents06 .company-info .image-block img {
            width: 26.4rem;
            height: auto;
            border-radius: 1rem; }
        .wrap-top-contents06 .company-info .text-block {
          padding-left: 3rem;
          font-weight: bold;
          font-size: 2.1rem;
          padding-top: 0; }
          .wrap-top-contents06 .company-info .text-block p {
            padding-left: 0.5em; } }
  @media print, screen and (min-width: 1160px) {
    .wrap-top-contents06 {
      padding: 16rem 0 0;
      margin-top: -16rem; }
      .wrap-top-contents06 h2 img {
        width: 31.9rem;
        height: auto; }
      .wrap-top-contents06 .school-list {
        grid-template-columns: 29rem 1fr 1fr 1fr;
        gap: 5rem; }
        .wrap-top-contents06 .school-list li .name img {
          width: 100%; }
      .wrap-top-contents06 .company-info {
        margin-top: 9rem;
        display: flex; }
        .wrap-top-contents06 .company-info .image-block img {
          width: 28.4rem;
          height: auto; }
        .wrap-top-contents06 .company-info .text-block {
          padding-left: 3rem;
          font-weight: bold;
          font-size: 2.5rem; }
          .wrap-top-contents06 .company-info .text-block p {
            padding-left: 0.5em; } }

/* footer-------------------------------------------------------------------------------------*/
.wrap-footer {
  background-color: rgba(210, 236, 148, 0.5);
  padding: 6rem 0; }
  .wrap-footer .bg-city {
    background: url("../images/footer-city.png") repeat-x;
    height: 3rem;
    background-size: auto 3rem; }
  @media print, screen and (min-width: 768px) {
    .wrap-footer .bg-city {
      background: url("../images/footer-city.png") repeat-x;
      height: 6.1rem;
      background-size: auto 6.1rem; } }

/* 下層ページ *********************************************************************************************************************************/
.wrap-school-contents-top {
  padding: 7rem 0 0; }
  .wrap-school-contents-top h2 img {
    width: 16rem;
    height: auto; }
  .wrap-school-contents-top .name {
    margin-top: 1rem; }
    .wrap-school-contents-top .name img {
      width: 90%;
      height: auto; }
  .wrap-school-contents-top .photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem; }
    .wrap-school-contents-top .photo-grid .tomita-img01 {
      background: url("../images/tomita-img01.jpg") no-repeat center center;
      background-size: cover;
      grid-column: span 2;
      height: 24rem;
      border-radius: 1rem; }
    .wrap-school-contents-top .photo-grid .tomita-img02 {
      background: url("../images/tomita-img02.jpg") no-repeat center center;
      background-size: cover;
      border-radius: 1rem;
      height: 12rem; }
    .wrap-school-contents-top .photo-grid .tomita-img03 {
      background: url("../images/tomita-img03.jpg") no-repeat center center;
      background-size: cover;
      border-radius: 1rem;
      height: 12rem; }
    .wrap-school-contents-top .photo-grid .asaka-img01 {
      background: url("../images/asaka-img01.jpg") no-repeat center center;
      background-size: cover;
      grid-column: span 2;
      height: 24rem;
      border-radius: 1rem; }
    .wrap-school-contents-top .photo-grid .asaka-img02 {
      background: url("../images/asaka-img02.jpg") no-repeat center center;
      background-size: cover;
      border-radius: 1rem;
      height: 12rem; }
    .wrap-school-contents-top .photo-grid .asaka-img03 {
      background: url("../images/asaka-img03.jpg") no-repeat center center;
      background-size: cover;
      border-radius: 1rem;
      height: 12rem; }
    .wrap-school-contents-top .photo-grid .fukuyama-img01 {
      background: url("../images/fukuyama-img01.jpg") no-repeat center center;
      background-size: cover;
      grid-column: span 2;
      height: 24rem;
      border-radius: 1rem; }
    .wrap-school-contents-top .photo-grid .fukuyama-img02 {
      background: url("../images/fukuyama-img02.jpg") no-repeat center center;
      background-size: cover;
      border-radius: 1rem;
      height: 12rem; }
    .wrap-school-contents-top .photo-grid .fukuyama-img03 {
      background: url("../images/fukuyama-img03.jpg") no-repeat center center;
      background-size: cover;
      border-radius: 1rem;
      height: 12rem; }
  @media print, screen and (min-width: 768px) {
    .wrap-school-contents-top {
      padding: 10rem 0 0; }
      .wrap-school-contents-top h2 img {
        width: 21.9rem; }
      .wrap-school-contents-top .name {
        margin-top: 2rem; }
        .wrap-school-contents-top .name img {
          width: 40rem; }
      .wrap-school-contents-top .photo-grid {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 2rem;
        margin-top: 2rem; }
        .wrap-school-contents-top .photo-grid .tomita-img01 {
          grid-column: auto;
          grid-row: span 2;
          height: 40rem; }
        .wrap-school-contents-top .photo-grid .tomita-img02 {
          height: auto; }
        .wrap-school-contents-top .photo-grid .tomita-img03 {
          height: auto; }
        .wrap-school-contents-top .photo-grid .asaka-img01 {
          grid-column: auto;
          grid-row: span 2;
          height: 40rem; }
        .wrap-school-contents-top .photo-grid .asaka-img02 {
          height: auto; }
        .wrap-school-contents-top .photo-grid .asaka-img03 {
          height: auto; }
        .wrap-school-contents-top .photo-grid .fukuyama-img01 {
          grid-column: auto;
          grid-row: span 2;
          height: 40rem; }
        .wrap-school-contents-top .photo-grid .fukuyama-img02 {
          height: auto; }
        .wrap-school-contents-top .photo-grid .fukuyama-img03 {
          height: auto; } }
  @media print, screen and (min-width: 1160px) {
    .wrap-school-contents-top {
      padding: 10rem 0 0; }
      .wrap-school-contents-top h2 img {
        width: 31.9rem; }
      .wrap-school-contents-top .name img {
        width: 54rem; }
      .wrap-school-contents-top .photo-grid {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
        margin-top: 2rem; }
        .wrap-school-contents-top .photo-grid .tomita-img01 {
          grid-row: span 2;
          height: 54.6rem; }
        .wrap-school-contents-top .photo-grid .asaka-img01 {
          grid-row: span 2;
          height: 54.6rem; }
        .wrap-school-contents-top .photo-grid .fukuyama-img01 {
          grid-row: span 2;
          height: 54.6rem; } }

.wrap-school-contents-info {
  padding: 5rem 0 0;
  position: relative;
  z-index: 2; }
  .wrap-school-contents-info h2 {
    font-size: 2.2rem; }
    .wrap-school-contents-info h2 span {
      display: inline-block;
      background-color: #fff;
      border-radius: 1rem 1rem 0 0;
      padding: 0.2em 1.5em;
      margin-left: 0.5em; }
  .wrap-school-contents-info .wrap-table {
    background-color: #fff;
    padding: 2rem;
    border-radius: 1rem; }
    .wrap-school-contents-info .wrap-table .small-font {
      font-size: 0.8em; }
    .wrap-school-contents-info .wrap-table .color-gray {
      color: #bbb; }
    .wrap-school-contents-info .wrap-table table th {
      border: 1px #000 solid;
      padding: 1em;
      background-color: #f4efe5;
      text-align: center;
      vertical-align: middle;
      white-space: nowrap;
      font-size: 1.2rem; }
    .wrap-school-contents-info .wrap-table table td {
      border: 1px #000 solid;
      padding: 1em;
      font-weight: 500;
      vertical-align: middle;
      font-size: 1.2rem; }
      .wrap-school-contents-info .wrap-table table td span {
        display: inline-block; }
  @media print, screen and (min-width: 768px) {
    .wrap-school-contents-info {
      padding: 8rem 0 0; }
      .wrap-school-contents-info h2 {
        font-size: 3rem; }
      .wrap-school-contents-info .wrap-table {
        padding: 4rem; }
        .wrap-school-contents-info .wrap-table table th {
          font-size: 2.0rem;
          padding: 1.5em 1.5em; }
        .wrap-school-contents-info .wrap-table table td {
          font-size: 1.6rem;
          padding: 1.5em 1.5em; } }
  @media print, screen and (min-width: 1160px) {
    .wrap-school-contents-info h2 {
      font-size: 4rem; }
    .wrap-school-contents-info .wrap-table table th {
      font-size: 2.8rem;
      padding: 1.5em 1.5em; }
    .wrap-school-contents-info .wrap-table table td {
      font-size: 2.4rem;
      padding: 1.5em 1.5em; } }

.wrap-school-contents-price {
  padding: 5rem 0 0;
  position: relative; }
  .wrap-school-contents-price .bg-image {
    position: absolute;
    right: 0;
    bottom: -15rem;
    width: 100%;
    height: auto;
    min-width: 133rem; }
  .wrap-school-contents-price h2 {
    font-size: 2.2rem; }
    .wrap-school-contents-price h2 span {
      display: inline-block;
      background-color: #fff;
      border-radius: 1rem 1rem 0 0;
      padding: 0.2em 1.5em;
      margin-left: 0.5em; }
  .wrap-school-contents-price .wrap-table {
    background-color: #fff;
    padding: 2rem;
    border-radius: 1rem; }
    .wrap-school-contents-price .wrap-table li {
      border-top: 2px #000 solid;
      padding: 0.5em 1em; }
      .wrap-school-contents-price .wrap-table li .small {
        font-size: 0.8em; }
      .wrap-school-contents-price .wrap-table li:last-child {
        border-bottom: 2px #000 solid; }
  .wrap-school-contents-price .desc {
    text-align: center;
    color: #fff;
    font-size: 1.6rem;
    padding: 2em 0; }
  @media print, screen and (min-width: 768px) {
    .wrap-school-contents-price {
      padding: 8rem 0 0; }
      .wrap-school-contents-price .bg-image {
        bottom: -20rem;
        min-width: auto; }
      .wrap-school-contents-price h2 {
        font-size: 3rem; }
      .wrap-school-contents-price .wrap-table {
        padding: 4rem; }
        .wrap-school-contents-price .wrap-table li {
          font-size: 2.2rem; }
          .wrap-school-contents-price .wrap-table li .flex {
            display: flex;
            justify-content: space-between; }
      .wrap-school-contents-price .desc {
        font-size: 2.4rem;
        padding: 1.5em 0; } }
  @media print, screen and (min-width: 1160px) {
    .wrap-school-contents-price .bg-image {
      bottom: -30rem;
      min-width: auto; }
    .wrap-school-contents-price h2 {
      font-size: 4rem; }
    .wrap-school-contents-price .wrap-table li {
      font-size: 2.9rem; } }

.wrap-school-contents-map {
  background-color: rgba(210, 236, 148, 0.5); }
  .wrap-school-contents-map .desc {
    margin-top: 3rem;
    text-align: center; }
    .wrap-school-contents-map .desc span {
      display: inline-block; }
  .wrap-school-contents-map a.link-button {
    font-size: 1.8rem; }
  .wrap-school-contents-map .wrap-button {
    margin-top: 6rem; }
  .wrap-school-contents-map .small-font {
    font-size: 0.8em; }
  @media print, screen and (min-width: 768px) {
    .wrap-school-contents-map .desc {
      font-size: 2.2rem; }
    .wrap-school-contents-map a.link-button {
      font-size: 2.6rem; }
    .wrap-school-contents-map .wrap-button {
      margin-top: 10rem; }
    .wrap-school-contents-map .small-font {
      font-size: 0.7em; } }
  @media print, screen and (min-width: 1160px) {
    .wrap-school-contents-map .desc {
      font-size: 2.9rem; }
    .wrap-school-contents-map a.link-button {
      font-size: 3.2rem; } }

/*メールフォームここから*/
#mailformpro {
  text-align: left;
  margin-top: 10.6666666667vw; }
  #mailformpro input {
    padding: 1.3333333333vw;
    font-family: 'メイリオ', 'Meiryo', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', sans-serif;
    border: 1px #ddd solid; }
  #mailformpro select {
    padding: 1.3333333333vw;
    font-family: 'メイリオ', 'Meiryo', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', sans-serif;
    border: 1px #ddd solid; }
  #mailformpro textarea {
    width: 100%;
    font-family: 'メイリオ', 'Meiryo', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', sans-serif;
    border: 1px #ddd solid; }
  #mailformpro input[type=checkbox] {
    width: 5.3333333333vw;
    height: 5.3333333333vw; }
  #mailformpro label.checkbox {
    margin-right: 3em; }
  #mailformpro .table .tr .th {
    padding: 0.5em;
    background-color: #f3f3f3;
    margin-bottom: 5.3333333333vw; }
  #mailformpro .table .tr .td, #mailformpro .table .tr .td-2 {
    margin-bottom: 8vw;
    background-color: #fff; }
  #mailformpro .note-box02 {
    border: 1px #ddd solid;
    font-size: 1.2rem;
    background-color: #fff;
    padding: 5.3333333333vw;
    margin: 8vw auto 0; }
  #mailformpro .sub-text {
    color: #aaa;
    font-size: 1.4rem;
    font-weight: normal; }
  @media print, screen and (min-width: 768px) {
    #mailformpro {
      margin-top: 4.8780487805vw; }
      #mailformpro input {
        padding: 0.6097560976vw; }
      #mailformpro select {
        padding: 0.6097560976vw; }
      #mailformpro input[type=checkbox] {
        width: 2.4390243902vw;
        height: 2.4390243902vw; }
      #mailformpro .table .tr .th {
        margin-bottom: 2.4390243902vw; }
      #mailformpro .table .tr .td, #mailformpro .table .tr .td-2 {
        margin-bottom: 3.6585365854vw; }
      #mailformpro .note-box02 {
        padding: 3.6585365854vw;
        margin: 3.6585365854vw auto 0; } }
  @media print, screen and (min-width: 1160px) {
    #mailformpro {
      margin-top: 60px; }
      #mailformpro input {
        padding: 5px; }
      #mailformpro select {
        padding: 5px; }
      #mailformpro input[type=checkbox] {
        width: 20px;
        height: 20px; }
      #mailformpro .table {
        display: table;
        width: 100%;
        border-collapse: collapse; }
        #mailformpro .table .tr {
          display: table-row; }
          #mailformpro .table .tr .th {
            display: table-cell;
            width: 200px;
            padding: 20px;
            vertical-align: middle;
            border: 1px #ddd solid;
            line-height: 1.2;
            margin-bottom: 0; }
          #mailformpro .table .tr .td, #mailformpro .table .tr .td-2 {
            display: table-cell;
            padding: 20px 40px 20px 40px;
            vertical-align: middle;
            border: 1px #ddd solid;
            margin-bottom: 0; }
          #mailformpro .table .tr .td-2 {
            padding: 20px 0 20px 40px; }
      #mailformpro .note-box02 {
        padding: 30px;
        margin: 50px auto 0; } }

.mfp_not_checked {
  padding: 0.5em;
  border: none !important; }

.mfp_checked {
  border: none !important;
  background-color: transparent !important;
  box-shadow: none !important; }

.form-1 {
  width: 100%; }
  @media print, screen and (min-width: 1160px) {
    .form-1 {
      width: 50%; } }

.form-3 {
  width: 100%; }

.form-4 {
  width: 100%; }
  @media print, screen and (min-width: 1160px) {
    .form-4 {
      width: 49%;
      margin-right: 15px; } }

.form-6 {
  width: 100% !important;
  height: 18.6666666667vw !important; }
  @media print, screen and (min-width: 768px) {
    .form-6 {
      height: 8.5365853659vw !important; } }
  @media print, screen and (min-width: 1160px) {
    .form-6 {
      height: 70px !important; } }

.form-7 {
  width: 100% !important;
  height: 53.3333333333vw !important; }
  @media print, screen and (min-width: 768px) {
    .form-7 {
      height: 24.3902439024vw !important; } }
  @media print, screen and (min-width: 1160px) {
    .form-7 {
      height: 200px !important; } }

.mfp_address {
  list-style: none; }
  .mfp_address .table-row .cell-02 {
    padding-bottom: 2.6666666667vw; }
  @media print, screen and (min-width: 768px) {
    .mfp_address .table-row .cell-02 {
      padding-bottom: 1.2195121951vw; } }
  @media print, screen and (min-width: 1160px) {
    .mfp_address {
      display: table;
      width: 100%; }
      .mfp_address .table-row {
        display: table-row; }
        .mfp_address .table-row .cell-01 {
          width: 70px;
          display: table-cell;
          padding-bottom: 10px; }
        .mfp_address .table-row .cell-02 {
          width: 510px;
          display: table-cell; } }

.mfp_buttons {
  text-align: center;
  margin-top: 10.6666666667vw; }
  .mfp_buttons button, .mfp_buttons input {
    border-radius: 5px;
    background-color: #e1e1e1;
    padding: 1em 0;
    width: 32vw;
    border-style: none;
    font-size: 1.4rem;
    margin: 0 2.6666666667vw;
    cursor: pointer; }
    .mfp_buttons button.submit-btn, .mfp_buttons button.wpcf7-submit, .mfp_buttons input.submit-btn, .mfp_buttons input.wpcf7-submit {
      background-color: #00a199;
      font-weight: bold;
      color: #fff; }
  @media print, screen and (min-width: 768px) {
    .mfp_buttons {
      margin-top: 4.8780487805vw; }
      .mfp_buttons button, .mfp_buttons input {
        width: 14.6341463415vw;
        margin: 0 1.2195121951vw; } }
  @media print, screen and (min-width: 1160px) {
    .mfp_buttons {
      margin-top: 60px; }
      .mfp_buttons button, .mfp_buttons input {
        font-size: 1.6rem;
        width: 180px;
        margin: 0 10px; } }

.contact-required {
  color: #e73357;
  font-style: normal; }

.thanks-message {
  margin-top: 40px;
  text-align: left; }
  @media print, screen and (min-width: 768px) {
    .thanks-message {
      text-align: center; } }

.caution {
  border: 1px #ddd solid;
  font-size: 1.2rem;
  padding: 1em;
  margin: 8vw 0 0;
  padding: 5.3333333333vw;
  display: inline-block;
  text-align: left; }
  @media print, screen and (min-width: 768px) {
    .caution {
      margin: 3.6585365854vw 0 0;
      padding: 3.6585365854vw;
      text-align: center; } }
  @media print, screen and (min-width: 1160px) {
    .caution {
      margin: 30px 0 0;
      padding: 30px;
      text-align: center; } }

/* ========== ページャー ========== */
.pager {
  margin-bottom: 1.4rem;
  text-align: center;
  clear: both;
  margin: 13.3333333333vw 1.4rem 2.6666666667vw;
  padding-top: 5.3333333333vw; }
  .pager a, .pager span {
    display: inline-block; }
  .pager .current {
    border: #00a199 1px solid;
    border-radius: 5px;
    padding: 0.3em 0.6em;
    margin: 0 0.1em;
    background: #00a199;
    color: #fff; }
  .pager a:hover {
    border: rgba(221, 221, 221, 0.8) 1px solid;
    background: rgba(242, 242, 242, 0.8);
    text-decoration: none; }
  @media print, screen and (min-width: 768px) {
    .pager {
      margin: 6.0975609756vw 1.4rem 1.2195121951vw;
      padding-top: 2.4390243902vw; } }
  @media print, screen and (min-width: 1160px) {
    .pager {
      margin: 50px 1.4rem 10px;
      padding-top: 20px; } }

a.page-numbers {
  border: #ddd 1px solid;
  border-radius: 5px;
  padding: 0.3em 0.6em;
  margin: 0 0.1em;
  color: #000; }

/* パンくずリスト */
.breadcrumbs {
  font-size: 1.0rem; }

.breadcrumbs a {
  color: #00a199; }

.breadcrumbs a:hover {
  text-decoration: underline; }

/*　ページナビ　*/
.page-navi {
  overflow: hidden;
  clear: both;
  text-align: center;
  margin-top: 10.6666666667vw;
  line-height: 1.2;
  font-size: 1.2rem; }
  .page-navi p {
    display: inline-block; }
    .page-navi p:first-child {
      padding-right: 8vw; }
    .page-navi p:nth-child(2) {
      padding-left: 8vw;
      border-left: 1px #ddd solid; }
  .page-navi a {
    transition: color 0.3s ease 0s;
    color: #888; }
    .page-navi a:hover {
      color: #00a199; }
  @media print, screen and (min-width: 768px) {
    .page-navi {
      margin-top: 7.3170731707vw;
      font-size: 1.4rem; }
      .page-navi p:first-child {
        padding-right: 6.0975609756vw; }
      .page-navi p:nth-child(2) {
        padding-left: 6.0975609756vw; } }
  @media print, screen and (min-width: 1160px) {
    .page-navi {
      margin-top: 60px; }
      .page-navi p:first-child {
        padding-right: 50px; }
      .page-navi p:nth-child(2) {
        padding-left: 50px; } }

.google-map {
  position: relative;
  height: 42rem;
  overflow: hidden;
  width: 100%; }
  .google-map img {
    width: auto; }
  .google-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important; }
  @media print, screen and (min-width: 768px) {
    .google-map {
      height: 60rem; } }
  @media print, screen and (min-width: 1160px) {
    .google-map {
      height: 75rem; } }

/**********************************************************************************************************************************/
.editor-contents {
  margin-top: 8vw; }
  .editor-contents p {
    margin-bottom: 1em; }
  .editor-contents table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2em; }
    .editor-contents table th {
      border: 1px #ddd solid;
      padding: 0.5em; }
    .editor-contents table td {
      border: 1px #ddd solid;
      padding: 0.5em; }
    .editor-contents table thead {
      border-bottom: 2px #bbb solid; }
    .editor-contents table tfoot {
      border-top: 2px #bbb solid; }
  .editor-contents ul {
    margin-bottom: 1em; }
    .editor-contents ul > li {
      list-style-type: disc;
      list-style-position: outside;
      margin-left: 1.3em; }
      .editor-contents ul > li ul > li {
        list-style-type: circle;
        list-style-position: outside;
        margin-left: 1.3em; }
        .editor-contents ul > li ul > li ul > li {
          list-style-type: square;
          list-style-position: outside;
          margin-left: 1.3em; }
  .editor-contents ol {
    margin-bottom: 1em; }
    .editor-contents ol > li {
      list-style-type: decimal;
      list-style-position: outside;
      margin-left: 1.3em; }
      .editor-contents ol > li ul > li {
        list-style-type: circle;
        list-style-position: outside;
        margin-left: 1.3em; }
        .editor-contents ol > li ul > li ul > li {
          list-style-type: square;
          list-style-position: outside;
          margin-left: 1.3em; }
  .editor-contents .wp-block-file__button {
    background-color: #00a199 !important; }
  .editor-contents .wp-block-embed-youtube {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    width: 100%; }
    .editor-contents .wp-block-embed-youtube .wp-block-embed__wrapper {
      position: static !important; }
    .editor-contents .wp-block-embed-youtube iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100% !important;
      height: 100% !important; }
  .editor-contents .wp-block-image img {
    height: auto;
    vertical-align: bottom; }
  .editor-contents .wp-block-image figcaption {
    color: #555d66;
    text-align: center;
    font-size: 1.3rem; }
  .editor-contents .wp-block-file .wp-block-file__button {
    border-radius: 2em;
    background: #00a199;
    color: #fff;
    font-size: .8em;
    padding: 0.5em 1em; }
  .editor-contents .wp-block-file:not(.wp-element-button) {
    font-size: 1em; }
  .editor-contents .wp-block-heading {
    font-size: 1.3em;
    margin-bottom: 1em; }
  .editor-contents h2.has-background, .editor-contents h3.has-background, .editor-contents h4.has-background, .editor-contents h5.has-background, .editor-contents h6.has-background {
    padding: 0.5em 1em; }
  @media screen and (max-width: 767px) {
    .editor-contents .fb_iframe_widget,
    .editor-contents .fb_iframe_widget span,
    .editor-contents .fb_iframe_widget iframe[style] {
      width: 100% !important; } }
  @media print, screen and (min-width: 768px) {
    .editor-contents {
      margin-top: 3.6585365854vw; } }
  @media print, screen and (min-width: 1160px) {
    .editor-contents {
      margin-top: 30px; } }

/*-------------------------------------------------------------------------------------*/
/*フォントサイズ*/
.fs-10 {
  font-size: 2.6666666667vw; }

.fs-11 {
  font-size: 2.9333333333vw; }

.fs-12 {
  font-size: 3.2vw; }

.fs-13 {
  font-size: 3.4666666667vw; }

.fs-14 {
  font-size: 3.7333333333vw; }

.fs-15 {
  font-size: 4vw; }

.fs-16 {
  font-size: 4.2666666667vw; }

.fs-17 {
  font-size: 4.5333333333vw; }

.fs-18 {
  font-size: 4.8vw; }

.fs-19 {
  font-size: 5.0666666667vw; }

.fs-20 {
  font-size: 5.3333333333vw; }

.fs-21 {
  font-size: 5.6vw; }

.fs-22 {
  font-size: 5.8666666667vw; }

.fs-23 {
  font-size: 6.1333333333vw; }

.fs-24 {
  font-size: 6.4vw; }

.fs-25 {
  font-size: 6.6666666667vw; }

.fs-26 {
  font-size: 6.9333333333vw; }

.fs-27 {
  font-size: 7.2vw; }

.fs-28 {
  font-size: 7.4666666667vw; }

.fs-29 {
  font-size: 7.7333333333vw; }

.fs-30 {
  font-size: 8vw; }

.pt-5 {
  padding-top: 1.3333333333vw; }

.pt-10 {
  padding-top: 2.6666666667vw; }

.pt-15 {
  padding-top: 4vw; }

.pt-20 {
  padding-top: 5.3333333333vw; }

.pt-25 {
  padding-top: 6.6666666667vw; }

.pt-30 {
  padding-top: 8vw; }

.pt-35 {
  padding-top: 9.3333333333vw; }

.pt-40 {
  padding-top: 10.6666666667vw; }

.pt-45 {
  padding-top: 12vw; }

.pt-50 {
  padding-top: 13.3333333333vw; }

.pt-55 {
  padding-top: 14.6666666667vw; }

.pt-60 {
  padding-top: 16vw; }

.mt-5 {
  margin-top: 1.3333333333vw; }

.mt-10 {
  margin-top: 2.6666666667vw; }

.mt-15 {
  margin-top: 4vw; }

.mt-20 {
  margin-top: 5.3333333333vw; }

.mt-25 {
  margin-top: 6.6666666667vw; }

.mt-30 {
  margin-top: 8vw; }

.mt-35 {
  margin-top: 9.3333333333vw; }

.mt-40 {
  margin-top: 10.6666666667vw; }

.mt-45 {
  margin-top: 12vw; }

.mt-50 {
  margin-top: 13.3333333333vw; }

.mt-55 {
  margin-top: 14.6666666667vw; }

.mt-60 {
  margin-top: 16vw; }

.font-weight-normal {
  font-weight: normal; }

.font-weight-500 {
  font-weight: 500; }

.font-weight-bold {
  font-weight: bold; }

.line-height80 {
  line-height: 0.8; }

.line-height90 {
  line-height: 0.9; }

.line-height100 {
  line-height: 1.0; }

.line-height110 {
  line-height: 1.1; }

.line-height120 {
  line-height: 1.2; }

.line-height130 {
  line-height: 1.3; }

.line-height140 {
  line-height: 1.4; }

.line-height145 {
  line-height: 1.45; }

.line-height150 {
  line-height: 1.5; }

.line-height160 {
  line-height: 1.6; }

.line-height170 {
  line-height: 1.7; }

.line-height180 {
  line-height: 1.8; }

.line-height190 {
  line-height: 1.9; }

.line-height200 {
  line-height: 2.0; }

.t-align-left {
  text-align: left; }

.t-align-center {
  text-align: center; }

.t-align-right {
  text-align: right; }

.inline-block {
  display: inline-block; }

.visible-tb {
  display: none; }

.visible-pc {
  display: none; }

@media screen and (max-width: 767px) {
  .hidden-sp {
    display: none !important; }

  .fs-10 {
    font-size: 2.6666666667vw; }

  .fs-11 {
    font-size: 2.9333333333vw; }

  .fs-12 {
    font-size: 3.2vw; }

  .fs-13 {
    font-size: 3.4666666667vw; }

  .fs-14 {
    font-size: 3.7333333333vw; }

  .fs-15 {
    font-size: 4vw; }

  .fs-16 {
    font-size: 4.2666666667vw; }

  .fs-17 {
    font-size: 4.5333333333vw; }

  .fs-18 {
    font-size: 4.8vw; }

  .fs-19 {
    font-size: 5.0666666667vw; }

  .fs-20 {
    font-size: 5.3333333333vw; }

  .fs-21 {
    font-size: 5.6vw; }

  .fs-22 {
    font-size: 5.8666666667vw; }

  .fs-23 {
    font-size: 6.1333333333vw; }

  .fs-24 {
    font-size: 6.4vw; }

  .fs-25 {
    font-size: 6.6666666667vw; }

  .fs-26 {
    font-size: 6.9333333333vw; }

  .fs-27 {
    font-size: 7.2vw; }

  .fs-28 {
    font-size: 7.4666666667vw; }

  .fs-29 {
    font-size: 7.7333333333vw; }

  .fs-30 {
    font-size: 8vw; }

  .pt-5 {
    padding-top: 1.3333333333vw; }

  .pt-10 {
    padding-top: 2.6666666667vw; }

  .pt-15 {
    padding-top: 4vw; }

  .pt-20 {
    padding-top: 5.3333333333vw; }

  .pt-25 {
    padding-top: 6.6666666667vw; }

  .pt-30 {
    padding-top: 8vw; }

  .pt-35 {
    padding-top: 9.3333333333vw; }

  .pt-40 {
    padding-top: 10.6666666667vw; }

  .pt-45 {
    padding-top: 12vw; }

  .pt-50 {
    padding-top: 13.3333333333vw; }

  .pt-55 {
    padding-top: 14.6666666667vw; }

  .pt-60 {
    padding-top: 16vw; }

  .mt-5 {
    margin-top: 1.3333333333vw; }

  .mt-10 {
    margin-top: 2.6666666667vw; }

  .mt-15 {
    margin-top: 4vw; }

  .mt-20 {
    margin-top: 5.3333333333vw; }

  .mt-25 {
    margin-top: 6.6666666667vw; }

  .mt-30 {
    margin-top: 8vw; }

  .mt-35 {
    margin-top: 9.3333333333vw; }

  .mt-40 {
    margin-top: 10.6666666667vw; }

  .mt-45 {
    margin-top: 12vw; }

  .mt-50 {
    margin-top: 13.3333333333vw; }

  .mt-55 {
    margin-top: 14.6666666667vw; }

  .mt-60 {
    margin-top: 16vw; }

  .fs-10-sp {
    font-size: 2.6666666667vw; }

  .fs-11-sp {
    font-size: 2.9333333333vw; }

  .fs-12-sp {
    font-size: 3.2vw; }

  .fs-13-sp {
    font-size: 3.4666666667vw; }

  .fs-14-sp {
    font-size: 3.7333333333vw; }

  .fs-15-sp {
    font-size: 4vw; }

  .fs-16-sp {
    font-size: 4.2666666667vw; }

  .fs-17-sp {
    font-size: 4.5333333333vw; }

  .fs-18-sp {
    font-size: 4.8vw; }

  .fs-19-sp {
    font-size: 5.0666666667vw; }

  .fs-20-sp {
    font-size: 5.3333333333vw; }

  .fs-21-sp {
    font-size: 5.6vw; }

  .fs-22-sp {
    font-size: 5.8666666667vw; }

  .fs-23-sp {
    font-size: 6.1333333333vw; }

  .fs-24-sp {
    font-size: 6.4vw; }

  .fs-25-sp {
    font-size: 6.6666666667vw; }

  .fs-26-sp {
    font-size: 6.9333333333vw; }

  .fs-27-sp {
    font-size: 7.2vw; }

  .fs-28-sp {
    font-size: 7.4666666667vw; }

  .fs-29-sp {
    font-size: 7.7333333333vw; }

  .fs-30-sp {
    font-size: 8vw; }

  .pt-5-sp {
    padding-top: 1.3333333333vw; }

  .pt-10-sp {
    padding-top: 2.6666666667vw; }

  .pt-15-sp {
    padding-top: 4vw; }

  .pt-20-sp {
    padding-top: 5.3333333333vw; }

  .pt-25-sp {
    padding-top: 6.6666666667vw; }

  .pt-30-sp {
    padding-top: 8vw; }

  .pt-35-sp {
    padding-top: 9.3333333333vw; }

  .pt-40-sp {
    padding-top: 10.6666666667vw; }

  .pt-45-sp {
    padding-top: 12vw; }

  .pt-50-sp {
    padding-top: 13.3333333333vw; }

  .pt-55-sp {
    padding-top: 14.6666666667vw; }

  .pt-60-sp {
    padding-top: 16vw; }

  .mt-5-sp {
    margin-top: 1.3333333333vw; }

  .mt-10-sp {
    margin-top: 2.6666666667vw; }

  .mt-15-sp {
    margin-top: 4vw; }

  .mt-20-sp {
    margin-top: 5.3333333333vw; }

  .mt-25-sp {
    margin-top: 6.6666666667vw; }

  .mt-30-sp {
    margin-top: 8vw; }

  .mt-35-sp {
    margin-top: 9.3333333333vw; }

  .mt-40-sp {
    margin-top: 10.6666666667vw; }

  .mt-45-sp {
    margin-top: 12vw; }

  .mt-50-sp {
    margin-top: 13.3333333333vw; }

  .mt-55-sp {
    margin-top: 14.6666666667vw; }

  .mt-60-sp {
    margin-top: 16vw; }

  .t-align-left-sp {
    text-align: left; }

  .t-align-center-sp {
    text-align: center; }

  .t-align-right-sp {
    text-align: right; } }
@media print, screen and (min-width: 768px) {
  .hidden-tb {
    display: none !important; }

  .visible-tb {
    display: inline; }

  .fs-10 {
    font-size: 1.2195121951vw; }

  .fs-11 {
    font-size: 1.3414634146vw; }

  .fs-12 {
    font-size: 1.4634146341vw; }

  .fs-13 {
    font-size: 1.5853658537vw; }

  .fs-14 {
    font-size: 1.7073170732vw; }

  .fs-15 {
    font-size: 1.8292682927vw; }

  .fs-16 {
    font-size: 1.9512195122vw; }

  .fs-17 {
    font-size: 2.0731707317vw; }

  .fs-18 {
    font-size: 2.1951219512vw; }

  .fs-19 {
    font-size: 2.3170731707vw; }

  .fs-20 {
    font-size: 2.4390243902vw; }

  .fs-21 {
    font-size: 2.5609756098vw; }

  .fs-22 {
    font-size: 2.6829268293vw; }

  .fs-23 {
    font-size: 2.8048780488vw; }

  .fs-24 {
    font-size: 2.9268292683vw; }

  .fs-25 {
    font-size: 3.0487804878vw; }

  .fs-26 {
    font-size: 3.1707317073vw; }

  .fs-27 {
    font-size: 3.2926829268vw; }

  .fs-28 {
    font-size: 3.4146341463vw; }

  .fs-29 {
    font-size: 3.5365853659vw; }

  .fs-30 {
    font-size: 3.6585365854vw; }

  .pt-5 {
    padding-top: 0.6097560976vw; }

  .pt-10 {
    padding-top: 1.2195121951vw; }

  .pt-15 {
    padding-top: 1.8292682927vw; }

  .pt-20 {
    padding-top: 2.4390243902vw; }

  .pt-25 {
    padding-top: 3.0487804878vw; }

  .pt-30 {
    padding-top: 3.6585365854vw; }

  .pt-35 {
    padding-top: 4.2682926829vw; }

  .pt-40 {
    padding-top: 4.8780487805vw; }

  .pt-45 {
    padding-top: 5.487804878vw; }

  .pt-50 {
    padding-top: 6.0975609756vw; }

  .pt-55 {
    padding-top: 6.7073170732vw; }

  .pt-60 {
    padding-top: 7.3170731707vw; }

  .mt-5 {
    margin-top: 0.6097560976vw; }

  .mt-10 {
    margin-top: 1.2195121951vw; }

  .mt-15 {
    margin-top: 1.8292682927vw; }

  .mt-20 {
    margin-top: 2.4390243902vw; }

  .mt-25 {
    margin-top: 3.0487804878vw; }

  .mt-30 {
    margin-top: 3.6585365854vw; }

  .mt-35 {
    margin-top: 4.2682926829vw; }

  .mt-40 {
    margin-top: 4.8780487805vw; }

  .mt-45 {
    margin-top: 5.487804878vw; }

  .mt-50 {
    margin-top: 6.0975609756vw; }

  .mt-55 {
    margin-top: 6.7073170732vw; }

  .mt-60 {
    margin-top: 7.3170731707vw; }

  .fs-10-tb {
    font-size: 1.2195121951vw; }

  .fs-11-tb {
    font-size: 1.3414634146vw; }

  .fs-12-tb {
    font-size: 1.4634146341vw; }

  .fs-13-tb {
    font-size: 1.5853658537vw; }

  .fs-14-tb {
    font-size: 1.7073170732vw; }

  .fs-15-tb {
    font-size: 1.8292682927vw; }

  .fs-16-tb {
    font-size: 1.9512195122vw; }

  .fs-17-tb {
    font-size: 2.0731707317vw; }

  .fs-18-tb {
    font-size: 2.1951219512vw; }

  .fs-19-tb {
    font-size: 2.3170731707vw; }

  .fs-20-tb {
    font-size: 2.4390243902vw; }

  .fs-21-tb {
    font-size: 2.5609756098vw; }

  .fs-22-tb {
    font-size: 2.6829268293vw; }

  .fs-23-tb {
    font-size: 2.8048780488vw; }

  .fs-24-tb {
    font-size: 2.9268292683vw; }

  .fs-25-tb {
    font-size: 3.0487804878vw; }

  .fs-26-tb {
    font-size: 3.1707317073vw; }

  .fs-27-tb {
    font-size: 3.2926829268vw; }

  .fs-28-tb {
    font-size: 3.4146341463vw; }

  .fs-29-tb {
    font-size: 3.5365853659vw; }

  .fs-30-tb {
    font-size: 3.6585365854vw; }

  .pt-5-tb {
    padding-top: 0.6097560976vw; }

  .pt-10-tb {
    padding-top: 1.2195121951vw; }

  .pt-15-tb {
    padding-top: 1.8292682927vw; }

  .pt-20-tb {
    padding-top: 2.4390243902vw; }

  .pt-25-tb {
    padding-top: 3.0487804878vw; }

  .pt-30-tb {
    padding-top: 3.6585365854vw; }

  .pt-35-tb {
    padding-top: 4.2682926829vw; }

  .pt-40-tb {
    padding-top: 4.8780487805vw; }

  .pt-45-tb {
    padding-top: 5.487804878vw; }

  .pt-50-tb {
    padding-top: 6.0975609756vw; }

  .pt-55-tb {
    padding-top: 6.7073170732vw; }

  .pt-60-tb {
    padding-top: 7.3170731707vw; }

  .mt-5-tb {
    margin-top: 0.6097560976vw; }

  .mt-10-tb {
    margin-top: 1.2195121951vw; }

  .mt-15-tb {
    margin-top: 1.8292682927vw; }

  .mt-20-tb {
    margin-top: 2.4390243902vw; }

  .mt-25-tb {
    margin-top: 3.0487804878vw; }

  .mt-30-tb {
    margin-top: 3.6585365854vw; }

  .mt-35-tb {
    margin-top: 4.2682926829vw; }

  .mt-40-tb {
    margin-top: 4.8780487805vw; }

  .mt-45-tb {
    margin-top: 5.487804878vw; }

  .mt-50-tb {
    margin-top: 6.0975609756vw; }

  .mt-55-tb {
    margin-top: 6.7073170732vw; }

  .mt-60-tb {
    margin-top: 7.3170731707vw; }

  .t-align-left-tb {
    text-align: left; }

  .t-align-center-tb {
    text-align: center; }

  .t-align-right-tb {
    text-align: right; } }
@media print, screen and (min-width: 1160px) {
  .hidden-pc {
    display: none !important; }

  .visible-pc {
    display: block !important; }

  .visible-tb {
    display: none; }

  .fs-10 {
    font-size: 1.0rem; }

  .fs-11 {
    font-size: 1.1rem; }

  .fs-12 {
    font-size: 1.2rem; }

  .fs-13 {
    font-size: 1.3rem; }

  .fs-14 {
    font-size: 1.4rem; }

  .fs-15 {
    font-size: 1.5rem; }

  .fs-16 {
    font-size: 1.6rem; }

  .fs-17 {
    font-size: 1.7rem; }

  .fs-18 {
    font-size: 1.8rem; }

  .fs-19 {
    font-size: 1.9rem; }

  .fs-20 {
    font-size: 2.0rem; }

  .fs-21 {
    font-size: 2.1rem; }

  .fs-22 {
    font-size: 2.2rem; }

  .fs-23 {
    font-size: 2.3rem; }

  .fs-24 {
    font-size: 2.4rem; }

  .fs-25 {
    font-size: 2.5rem; }

  .fs-26 {
    font-size: 2.6rem; }

  .fs-27 {
    font-size: 2.7rem; }

  .fs-28 {
    font-size: 2.8rem; }

  .fs-29 {
    font-size: 2.9rem; }

  .fs-30 {
    font-size: 3.0rem; }

  .pt-5 {
    padding-top: 5px; }

  .pt-10 {
    padding-top: 10px; }

  .pt-15 {
    padding-top: 15px; }

  .pt-20 {
    padding-top: 20px; }

  .pt-25 {
    padding-top: 25px; }

  .pt-30 {
    padding-top: 30px; }

  .pt-35 {
    padding-top: 35px; }

  .pt-40 {
    padding-top: 40px; }

  .pt-45 {
    padding-top: 45px; }

  .pt-50 {
    padding-top: 50px; }

  .pt-55 {
    padding-top: 55px; }

  .pt-60 {
    padding-top: 60px; }

  .mt-5 {
    margin-top: 5px; }

  .mt-10 {
    margin-top: 10px; }

  .mt-15 {
    margin-top: 15px; }

  .mt-20 {
    margin-top: 20px; }

  .mt-25 {
    margin-top: 25px; }

  .mt-30 {
    margin-top: 30px; }

  .mt-35 {
    margin-top: 35px; }

  .mt-40 {
    margin-top: 40px; }

  .mt-45 {
    margin-top: 45px; }

  .mt-50 {
    margin-top: 50px; }

  .mt-55 {
    margin-top: 55px; }

  .mt-60 {
    margin-top: 60px; }

  .fs-10-pc {
    font-size: 1.0rem; }

  .fs-11-pc {
    font-size: 1.1rem; }

  .fs-12-pc {
    font-size: 1.2rem; }

  .fs-13-pc {
    font-size: 1.3rem; }

  .fs-14-pc {
    font-size: 1.4rem; }

  .fs-15-pc {
    font-size: 1.5rem; }

  .fs-16-pc {
    font-size: 1.6rem; }

  .fs-17-pc {
    font-size: 1.7rem; }

  .fs-18-pc {
    font-size: 1.8rem; }

  .fs-19-pc {
    font-size: 1.9rem; }

  .fs-20-pc {
    font-size: 2.0rem; }

  .fs-21-pc {
    font-size: 2.1rem; }

  .fs-22-pc {
    font-size: 2.2rem; }

  .fs-23-pc {
    font-size: 2.3rem; }

  .fs-24-pc {
    font-size: 2.4rem; }

  .fs-25-pc {
    font-size: 2.5rem; }

  .fs-26-pc {
    font-size: 2.6rem; }

  .fs-27-pc {
    font-size: 2.7rem; }

  .fs-28-pc {
    font-size: 2.8rem; }

  .fs-29-pc {
    font-size: 2.9rem; }

  .fs-30-pc {
    font-size: 3.0rem; }

  .pt-5-pc {
    padding-top: 5px; }

  .pt-10-pc {
    padding-top: 10px; }

  .pt-15-pc {
    padding-top: 15px; }

  .pt-20-pc {
    padding-top: 20px; }

  .pt-25-pc {
    padding-top: 25px; }

  .pt-30-pc {
    padding-top: 30px; }

  .pt-35-pc {
    padding-top: 35px; }

  .pt-40-pc {
    padding-top: 40px; }

  .pt-45-pc {
    padding-top: 45px; }

  .pt-50-pc {
    padding-top: 50px; }

  .pt-55-pc {
    padding-top: 55px; }

  .pt-60-pc {
    padding-top: 60px; }

  .mt-5-pc {
    margin-top: 5px; }

  .mt-10-pc {
    margin-top: 10px; }

  .mt-15-pc {
    margin-top: 15px; }

  .mt-20-pc {
    margin-top: 20px; }

  .mt-25-pc {
    margin-top: 25px; }

  .mt-30-pc {
    margin-top: 30px; }

  .mt-35-pc {
    margin-top: 35px; }

  .mt-40-pc {
    margin-top: 40px; }

  .mt-45-pc {
    margin-top: 45px; }

  .mt-50-pc {
    margin-top: 50px; }

  .mt-55-pc {
    margin-top: 55px; }

  .mt-60-pc {
    margin-top: 60px; }

  .t-align-left-pc {
    text-align: left; }

  .t-align-center-pc {
    text-align: center; }

  .t-align-right-pc {
    text-align: right; } }
