@charset "UTF-8";
/* ******************************
 *
 * RESPONSIVE MIXIN
 *
 * ****************************** */
/* ******************************
 *
 * FONT SETTINGS
 *
 * ****************************** */
/* ******************************
 *
 * FONT SETTINGS
 *
 * ****************************** */
/* ******************************
 *
 * Keyframes
 *
 * ****************************** */
@-webkit-keyframes loopCl {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes loopCl {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes loopClRv {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes loopClRv {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
/* ******************************
 *
 * Variables
 *
 * ****************************** */
:root {
  --color-main: 190 171 154;
  --color-white: 255 255 255;
  --color-wh: 255 255 255;
  --color-text: 134 116 99;
  --font-main: "ryo-gothic-plusn", sans-serif;
  --font-head: "angie-sans", sans-serif;
  --font-unique: "ivymode", "shippori-mincho", sans-serif;
}

/* ******************************
 *
 * BASE SETTINGS
 * ※Don't erase this code!
 *
 * ****************************** */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

::-moz-selection {
  background-color: rgb(var(--color-main));
  color: rgb(var(--color-white));
}

::selection {
  background-color: rgb(var(--color-main));
  color: rgb(var(--color-white));
}

html {
  font-family: var(--font-main);
  background: rgb(var(--color-main));
  color: rgb(var(--color-white));
  scrollbar-width: none;
  scroll-behavior: auto;
  font-family: "ShipporiMincho", sans-serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
}
@media screen and (min-width: 320px) {
  html {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 600px) {
  html {
    font-size: 1.5vw;
  }
}
@media screen and (min-width: 1025px) {
  html {
    font-size: 0.5208335vw;
  }
}
@media screen and (min-width: 1921px) {
  html {
    font-size: 0.5208335vw;
  }
}
html::-webkit-scrollbar {
  display: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.img {
  overflow: hidden;
}
.imgWrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 66.67%;
}
.imgWrapper img {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

strong {
  font-weight: 700;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: #FFFFFF;
}
@media screen and (min-width: 320px) {
  .circle {
    top: -6rem;
    right: 9%;
    width: 12rem;
    height: 12rem;
  }
}
@media screen and (min-width: 1025px) {
  .circle {
    top: -24rem;
    right: 8%;
    width: 48rem;
    height: 48rem;
  }
}
.circle::before, .circle::after {
  position: absolute;
  content: "";
  z-index: -1;
}
@media screen and (min-width: 320px) {
  .circle::before, .circle::after {
    bottom: 48.5%;
    width: 3.5rem;
    height: 4.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .circle::before, .circle::after {
    bottom: 49.9%;
    width: 12.2rem;
    height: 10rem;
    border-radius: 0 0 10rem 0;
  }
}
@media screen and (min-width: 320px) {
  .circle::before {
    right: 94.5%;
    border-radius: 0 0 10rem 0;
    -webkit-box-shadow: 4rem 5rem 0 3rem #FFFFFF;
            box-shadow: 4rem 5rem 0 3rem #FFFFFF;
  }
}
@media screen and (min-width: 1025px) {
  .circle::before {
    right: 96.7%;
    border-radius: 0 0 10rem 0;
    -webkit-box-shadow: 4rem 5rem 0 3rem #FFFFFF;
            box-shadow: 4rem 5rem 0 3rem #FFFFFF;
  }
}
@media screen and (min-width: 320px) {
  .circle::after {
    left: 94.5%;
    border-radius: 0 0 0 10rem;
    -webkit-box-shadow: -4rem 5rem 0 3rem #FFFFFF;
            box-shadow: -4rem 5rem 0 3rem #FFFFFF;
  }
}
@media screen and (min-width: 1025px) {
  .circle::after {
    left: 96.7%;
    border-radius: 0 0 0 10rem;
    -webkit-box-shadow: -4rem 5rem 0 3rem #FFFFFF;
            box-shadow: -4rem 5rem 0 3rem #FFFFFF;
  }
}
.circle .circleSvg {
  position: absolute;
  stroke: #73b1d2;
}
@media screen and (min-width: 320px) {
  .circle .circleSvg {
    top: 2rem;
    left: calc(50% - 2.5rem);
    width: 5rem;
  }
}
@media screen and (min-width: 1025px) {
  .circle .circleSvg {
    top: 9.5rem;
    left: calc(50% - 5rem);
    width: 10rem;
  }
}

.wp-block-table {
  margin: 0;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.8);
}
@media screen and (min-width: 320px) {
  .wp-block-table {
    margin-bottom: 4rem;
    overflow-x: scroll;
    white-space: nowrap;
  }
}
@media screen and (min-width: 1025px) {
  .wp-block-table {
    margin-bottom: 5.4rem;
    overflow-x: unset;
    white-space: unset;
  }
}
.wp-block-table table {
  width: 100%;
  border-collapse: separate;
  border: 1px solid #d6dce1;
  border-radius: 1rem;
  overflow: hidden;
}
.wp-block-table th, .wp-block-table td {
  font-weight: 700;
  border-right: 1px solid #d6dce1;
  border-bottom: 1px solid #d6dce1;
}
.wp-block-table th:last-child, .wp-block-table td:last-child {
  border-right: none;
}
.wp-block-table th {
  background: #f5f7f9;
  letter-spacing: 0.2rem;
}
@media screen and (min-width: 320px) {
  .wp-block-table th {
    font-size: 1.3rem;
    padding: 1.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .wp-block-table th {
    font-size: 2.4rem;
    padding: 2rem;
  }
}
.wp-block-table td {
  background: #FFFFFF;
  letter-spacing: 0.1rem;
}
@media screen and (min-width: 320px) {
  .wp-block-table td {
    font-size: 1.3rem;
    padding: 1.3rem 1.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .wp-block-table td {
    font-size: 1.8rem;
    padding: 1.4rem 2rem;
  }
}
.wp-block-table tbody tr:nth-last-child(4) td:first-child[rowspan="4"] {
  border-bottom: none;
}
.wp-block-table tbody tr:nth-last-child(3) td:first-child[rowspan="3"] {
  border-bottom: none;
}
.wp-block-table tbody tr:nth-last-child(2) td:first-child[rowspan="2"] {
  border-bottom: none;
}
.wp-block-table tbody tr:last-child td {
  border-bottom: none;
}
.wp-block-table .trial {
  font-weight: 700;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #4389fb), color-stop(80%, #7fcdf7));
  background: linear-gradient(to bottom, #4389fb 20%, #7fcdf7 80%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (min-width: 320px) {
  .wp-element-caption {
    font-size: 1.3rem;
    margin-top: 0.7rem;
    text-align: left;
  }
}
@media screen and (min-width: 1025px) {
  .wp-element-caption {
    font-size: 1.8rem;
    margin-top: 1rem;
    text-align: right;
  }
}

.articleSwiper {
  overflow: visible;
}
@media screen and (min-width: 320px) {
  .articleSwiper.top {
    width: 95vw;
    margin: -32.1rem 0 0 5vw;
    padding: 0 5vw 4rem 0;
  }
}
@media screen and (min-width: 1025px) {
  .articleSwiper.top {
    width: 90vw;
    margin: -16.3rem 0 0 10vw;
    padding: 0 10vw 10rem 0;
  }
}
@media screen and (min-width: 320px) {
  .articleSwiper.menu {
    margin-top: 5rem;
  }
}
@media screen and (min-width: 1025px) {
  .articleSwiper.menu {
    margin-top: 11rem;
  }
}
.articleSwiper.menu .category, .articleSwiper.menu .articleHeader {
  color: #000000;
}
.articleSwiper.menu .commonLinkBtn {
  background: #0044d6;
}
@media screen and (min-width: 1025px) {
  .articleSwiper.menu .commonLinkBtn:hover {
    color: #FFFFFF;
  }
}
.articleSwiper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
@media screen and (min-width: 1025px) {
  .articleSwiper .swiper-slide:hover .thumbnail {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.articleSwiper .imgWrapper {
  position: relative;
  display: block;
}
@media screen and (min-width: 320px) {
  .articleSwiper .imgWrapper {
    border-radius: 1.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .articleSwiper .imgWrapper {
    border-radius: 5rem;
  }
}
.articleSwiper .videoIcon {
  position: absolute;
}
@media screen and (min-width: 320px) {
  .articleSwiper .videoIcon {
    top: calc(50% - 2.5rem);
    left: calc(50% - 2.5rem);
    width: 5rem;
    height: 5rem;
  }
}
@media screen and (min-width: 1025px) {
  .articleSwiper .videoIcon {
    top: calc(50% - 5rem);
    left: calc(50% - 5rem);
    width: 10rem;
    height: 10rem;
  }
}
.articleSwiper .thumbnail {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.articleSwiper .category {
  font-weight: 700;
  opacity: 0.6;
}
@media screen and (min-width: 320px) {
  .articleSwiper .category {
    font-size: 1.2rem;
    margin-top: 1.3rem;
  }
}
@media screen and (min-width: 1025px) {
  .articleSwiper .category {
    font-size: 2.4rem;
    margin-top: 4.2rem;
  }
}
.articleSwiper .articleHeader {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.articleSwiper .title {
  font-weight: 700;
  line-height: 1.75;
}
@media screen and (min-width: 320px) {
  .articleSwiper .title {
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
    margin-top: 0.4rem;
  }
}
@media screen and (min-width: 1025px) {
  .articleSwiper .title {
    font-size: 3.2rem;
    letter-spacing: 0.26rem;
    margin-top: 1rem;
  }
}
.articleSwiper .tagList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 320px) {
  .articleSwiper .tagList {
    margin-top: 1.4rem;
    gap: 0.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .articleSwiper .tagList {
    margin-top: 4rem;
    gap: 1rem;
  }
}
.articleSwiper .tag {
  display: block;
  border: 1px solid;
  border-radius: 5rem;
  line-height: 1.8;
  opacity: 0.6;
}
@media screen and (min-width: 320px) {
  .articleSwiper .tag {
    font-size: 1.2rem;
    letter-spacing: 0;
    padding: 0 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .articleSwiper .tag {
    font-size: 1.8rem;
    letter-spacing: 0.18rem;
    padding: 0 1.5rem;
  }
}
.articleSwiper .btnWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (min-width: 320px) {
  .articleSwiper .btnWrapper {
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .articleSwiper .btnWrapper {
    margin-top: 3rem;
  }
}
.articleSwiper .swiper-scrollbar {
  left: 0;
  background: rgba(115, 177, 210, 0.1);
  border-radius: 2rem;
  z-index: 1;
  cursor: pointer;
}
@media screen and (min-width: 320px) {
  .articleSwiper .swiper-scrollbar {
    width: 90vw;
    height: 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .articleSwiper .swiper-scrollbar {
    width: 80vw;
    height: 3rem;
  }
}
.articleSwiper .swiper-scrollbar-drag {
  background: rgba(115, 177, 210, 0.6);
  border-radius: 2rem;
  cursor: -webkit-grab;
  cursor: grab;
}
.articleSwiper .swiper-scrollbar-drag:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ******************************
 *
 * GLOBAL HEADER SETTINGS
 *
 * ****************************** */
.globalHeader {
  position: fixed;
  width: 98vw;
  left: 1vw;
  border-radius: 3rem;
  z-index: 10;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
@media screen and (min-width: 320px) {
  .globalHeader {
    top: 1.5rem;
    padding: 0 1.5vw 0 3.5vw;
  }
}
@media screen and (min-width: 1025px) {
  .globalHeader {
    top: 2rem;
    padding: 1.5rem 1vw 1.5rem 1.2vw;
  }
  .globalHeader.isActive {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(1rem);
    -webkit-box-shadow: 0.7rem 0.7rem 2rem 0 rgba(0, 36, 87, 0.3);
            box-shadow: 0.7rem 0.7rem 2rem 0 rgba(0, 36, 87, 0.3);
  }
}
.globalHeader .navWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 320px) {
  .globalHeader .navWrapper {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 1025px) {
  .globalHeader .navWrapper {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.globalHeader .logo {
  display: block;
}
@media screen and (min-width: 320px) {
  .globalHeader .logo {
    width: 40%;
    margin-top: 0;
  }
}
@media screen and (min-width: 1025px) {
  .globalHeader .logo {
    width: 25rem;
    margin-top: 1.5rem;
  }
}
.globalHeader .menuWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 320px) {
  .globalHeader .menuWrapper {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 1025px) {
  .globalHeader .menuWrapper {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.globalHeader .mainMenu {
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 320px) {
  .globalHeader .mainMenu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background: #FFFFFF;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding: 1rem 1rem 1.5rem;
  }
  .globalHeader .mainMenu::before {
    position: absolute;
    content: "";
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 2rem;
    border-radius: 0 0 2rem 2rem;
    -webkit-box-shadow: 0 1rem 0 1rem #FFFFFF;
            box-shadow: 0 1rem 0 1rem #FFFFFF;
    z-index: -1;
    pointer-events: none;
  }
}
@media screen and (min-width: 1025px) {
  .globalHeader .mainMenu {
    position: static;
    bottom: unset;
    left: unset;
    width: auto;
    background: unset;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0;
  }
  .globalHeader .mainMenu::before {
    content: none;
  }
}
@media screen and (min-width: 320px) {
  .globalHeader .mainMenuItem {
    width: 16%;
    margin-top: 0;
  }
}
@media screen and (min-width: 1025px) {
  .globalHeader .mainMenuItem {
    width: auto;
    margin-top: 3rem;
  }
}
@media screen and (min-width: 320px) {
  .globalHeader .mainMenuItem.sp {
    display: block;
  }
}
@media screen and (min-width: 1025px) {
  .globalHeader .mainMenuItem.sp {
    display: none;
  }
}
.globalHeader .mainMenuItem:nth-of-type(1) .mainMenuIconSP {
  margin-bottom: 0.2rem;
}
.globalHeader .mainMenuItem:nth-of-type(2) .mainMenuIconSP {
  margin-bottom: 0.5rem;
  width: 40%;
}
.globalHeader .mainMenuItem:nth-of-type(3) .mainMenuIconSP {
  margin-bottom: 0.2rem;
}
.globalHeader .mainMenuItem:nth-of-type(4) .mainMenuIconSP {
  width: 53%;
  margin-top: -0.2rem;
}
.globalHeader .mainMenuItem:nth-of-type(5) .mainMenuIconSP {
  width: 48%;
}
.globalHeader .mainMenuTitle {
  font-family: var(--font-head);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  height: 100%;
}
@media screen and (min-width: 320px) {
  .globalHeader .mainMenuTitle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 0.8rem;
    margin-right: 0;
  }
}
@media screen and (min-width: 1025px) {
  .globalHeader .mainMenuTitle {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    font-size: 1.8rem;
    margin-right: 4rem;
  }
}
.globalHeader .mainMenuIcon {
  width: 2.5rem;
  margin-right: 1rem;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
@media screen and (min-width: 320px) {
  .globalHeader .mainMenuIcon {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .globalHeader .mainMenuIcon {
    display: block;
  }
}
.globalHeader .mainMenuIconSP {
  width: 45%;
}
@media screen and (min-width: 320px) {
  .globalHeader .mainMenuIconSP {
    display: block;
  }
}
@media screen and (min-width: 1025px) {
  .globalHeader .mainMenuIconSP {
    display: none;
  }
}
.globalHeader .telInfo {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: #000000;
}
@media screen and (min-width: 320px) {
  .globalHeader .telInfo {
    display: none;
    margin: 0 1.6rem 0 0;
  }
}
@media screen and (min-width: 1025px) {
  .globalHeader .telInfo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 1rem 3rem 0 0;
  }
}
.globalHeader .telNumWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (min-width: 320px) {
  .globalHeader .telNumWrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 1025px) {
  .globalHeader .telNumWrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.globalHeader .telInfoTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid;
}
@media screen and (min-width: 320px) {
  .globalHeader .telInfoTitle {
    font-size: 0.5rem;
    border-radius: 0.3rem;
    margin-right: 0;
    padding: 0 2.5rem 0 1.1rem;
  }
}
@media screen and (min-width: 1025px) {
  .globalHeader .telInfoTitle {
    font-size: 1.5rem;
    border-radius: 10rem;
    margin-right: 1.6rem;
    padding: 0.5rem 2rem;
  }
}
@media screen and (min-width: 320px) {
  .globalHeader .telInfoIcon {
    width: 0.6rem;
    margin-right: 0.8rem;
  }
}
@media screen and (min-width: 1025px) {
  .globalHeader .telInfoIcon {
    width: 2rem;
    margin-right: 1rem;
  }
}
.globalHeader .telNum {
  font-family: "acumin-pro", sans-serif;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 320px) {
  .globalHeader .telNum {
    font-size: 1.34rem;
    letter-spacing: 0;
  }
}
@media screen and (min-width: 1025px) {
  .globalHeader .telNum {
    font-size: 3.8rem;
    letter-spacing: 0.1rem;
  }
}
.globalHeader .telInfoText {
  font-size: 1.47rem;
  letter-spacing: 0.05rem;
  margin: 0.6rem 0.4rem 0 0;
}
@media screen and (min-width: 320px) {
  .globalHeader .telInfoText {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .globalHeader .telInfoText {
    display: block;
  }
}
@media screen and (min-width: 1025px) {
  .globalHeader .hasMegamenu:hover .mainMenuIcon {
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  .globalHeader .hasMegamenu:hover .megamenuWrapper {
    grid-template-rows: 1fr;
  }
}
.globalHeader .hasMegamenu.isActive .megamenuWrapper {
  grid-template-rows: 1fr;
}
.globalHeader .megamenuWrapper {
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition: grid-template-rows 0.4s ease;
  transition: grid-template-rows 0.4s ease;
  transition: grid-template-rows 0.4s ease, -ms-grid-rows 0.4s ease;
}
@media screen and (min-width: 320px) {
  .globalHeader .megamenuWrapper {
    position: absolute;
    bottom: 100%;
    left: 0;
    background: #FFFFFF;
    width: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .globalHeader .megamenuWrapper {
    position: static;
    bottom: unset;
    left: unset;
    background: unset;
    width: auto;
  }
}
.globalHeader .megamenuInner {
  overflow: hidden;
}
.globalHeader .megamenuList {
  position: relative;
}
@media screen and (min-width: 320px) {
  .globalHeader .megamenuList {
    padding: 2rem 2.6rem 5.2rem 3.9rem;
  }
}
@media screen and (min-width: 1025px) {
  .globalHeader .megamenuList {
    padding: 5.5rem 0 2.8rem 2.8rem;
  }
}
.globalHeader .megamenuList::before {
  position: absolute;
  top: 2.2rem;
  left: 1rem;
  width: 0.5rem;
  height: calc(100% - 5.9rem);
  background: rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
}
@media screen and (min-width: 320px) {
  .globalHeader .megamenuList::before {
    content: none;
  }
}
@media screen and (min-width: 1025px) {
  .globalHeader .megamenuList::before {
    content: "";
  }
}
@media screen and (min-width: 320px) {
  .globalHeader .megamenuHeading {
    color: #000000;
    font-size: 1rem;
    opacity: 0.7;
    margin: 2.8rem 0 1.2rem;
  }
}
@media screen and (min-width: 1025px) {
  .globalHeader .megamenuHeading {
    color: #0535A9;
    font-size: 1.5rem;
    opacity: 0.8;
    margin: 2rem 0 0.5rem 0;
  }
}
.globalHeader .megamenuCate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 320px) {
  .globalHeader .megamenuCate {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 1025px) {
  .globalHeader .megamenuCate {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 320px) {
  .globalHeader .megamenuItem {
    font-size: 1.6rem;
    margin: 0 5rem 0.7rem 0;
  }
}
@media screen and (min-width: 1025px) {
  .globalHeader .megamenuItem {
    font-size: 1.8rem;
    margin: 0 0 0.4rem 0;
  }
}

.reserveBtn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, left bottom, from(#FF934E), to(#FC696F));
  background: linear-gradient(to bottom, #FF934E 0%, #FC696F 100%);
  white-space: nowrap;
}
@media screen and (min-width: 320px) {
  .reserveBtn {
    font-size: 0.8rem;
    border-radius: 0.8rem;
    padding: 0.5rem 0.5rem 0.5rem 6rem;
  }
}
@media screen and (min-width: 1025px) {
  .reserveBtn {
    font-size: 1.8rem;
    border-radius: 2rem;
    padding: 1rem 1.2rem 1.2rem 11rem;
  }
}
.reserveBtn .btnImg {
  position: absolute;
  bottom: 0;
}
@media screen and (min-width: 320px) {
  .reserveBtn .btnImg {
    left: 0.5rem;
    width: 7rem;
  }
}
@media screen and (min-width: 1025px) {
  .reserveBtn .btnImg {
    left: 1.3rem;
    width: 13.5rem;
  }
}
.reserveBtn .textSmall {
  color: #FC696F;
  font-weight: 700;
  background: #FFFFFF;
  text-align: center;
  line-height: 1.8;
}
@media screen and (min-width: 320px) {
  .reserveBtn .textSmall {
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    border-radius: 0.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .reserveBtn .textSmall {
    font-size: 1.85rem;
    letter-spacing: 0.3rem;
    border-radius: 1rem;
  }
}
.reserveBtn .textLarge {
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05rem;
}
@media screen and (min-width: 320px) {
  .reserveBtn .textLarge {
    font-size: 1.6rem;
    margin: 0.5rem 0.1rem 0 0;
  }
}
@media screen and (min-width: 1025px) {
  .reserveBtn .textLarge {
    font-size: 3rem;
    margin: 1.5rem 0.3rem 0 0;
  }
}

/* ******************************
 *
 * GLOBAL FOOTER SETTINGS
 *
 * ****************************** */
.globalFooter {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 320px) {
  .globalFooter {
    margin-top: 5.6rem;
    padding: 3rem 0 0;
  }
}
@media screen and (min-width: 1025px) {
  .globalFooter {
    margin-top: 10.5rem;
    padding: 8.7rem 0 0;
  }
}
.globalFooter::before {
  position: absolute;
  content: "";
  top: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 320px) {
  .globalFooter::before {
    left: 3%;
    width: 94%;
  }
}
@media screen and (min-width: 1025px) {
  .globalFooter::before {
    left: 2.5%;
    width: 95%;
  }
}
.globalFooter .footerCV {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFFFFF;
  font-weight: 700;
  -webkit-box-shadow: 0.7rem 0.7rem 2rem 0 rgba(0, 36, 87, 0.3);
          box-shadow: 0.7rem 0.7rem 2rem 0 rgba(0, 36, 87, 0.3);
  overflow: hidden;
  background: rgba(127, 205, 247, 0.7);
}
@media screen and (min-width: 320px) {
  .globalFooter .footerCV {
    padding: 6rem 0 3rem;
    margin: 0 1vw;
    border-radius: 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .globalFooter .footerCV {
    padding: 19.3rem 0 8rem;
    margin: 0 0.5vw;
    border-radius: 3rem;
  }
  .globalFooter .footerCV:hover .bgImg {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .globalFooter .footerCV:hover .highlight {
    opacity: 1 !important;
  }
  .globalFooter .footerCV:hover .icon {
    -webkit-transform: translateY(-50%) scale(0);
            transform: translateY(-50%) scale(0);
  }
}
.globalFooter .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.globalFooter .bg .swiper-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.globalFooter .bgImg {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.globalFooter .cvTitle {
  position: relative;
  font-family: "acumin-pro", sans-serif;
  white-space: nowrap;
  line-height: 1;
  z-index: 1;
}
@media screen and (min-width: 320px) {
  .globalFooter .cvTitle {
    font-size: 6.5rem;
    letter-spacing: 0.07rem;
  }
}
@media screen and (min-width: 1025px) {
  .globalFooter .cvTitle {
    font-size: 19.5rem;
    letter-spacing: 0.7rem;
  }
}
.globalFooter .highlight {
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
@media screen and (min-width: 320px) {
  .globalFooter .highlight {
    opacity: 1;
  }
}
@media screen and (min-width: 1025px) {
  .globalFooter .highlight {
    opacity: 0.2;
  }
}
.globalFooter .thin {
  opacity: 0.2;
}
.globalFooter .cvText {
  position: relative;
  letter-spacing: 0.07rem;
}
@media screen and (min-width: 320px) {
  .globalFooter .cvText {
    font-size: 1.5rem;
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .globalFooter .cvText {
    font-size: 3rem;
    margin-top: 3.2rem;
  }
}
.globalFooter .cvText::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #FFFFFF;
}
.globalFooter .cvTelWrapper {
  width: 80%;
  position: relative;
  border-top: 1px solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 320px) {
  .globalFooter .cvTelWrapper {
    margin-top: 3rem;
    padding-top: 3rem;
  }
}
@media screen and (min-width: 1025px) {
  .globalFooter .cvTelWrapper {
    margin-top: 8.7rem;
    padding-top: 7rem;
  }
}
.globalFooter .cvTel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 320px) {
  .globalFooter .cvTelSvg {
    width: 3rem;
    margin: 0 1.5rem 0 -4rem;
  }
}
@media screen and (min-width: 1025px) {
  .globalFooter .cvTelSvg {
    width: 6rem;
    margin: 0 4rem 0 -9rem;
  }
}
.globalFooter .cvTelNum {
  font-family: "Satoshi", sans-serif;
  font-weight: 700;
}
@media screen and (min-width: 320px) {
  .globalFooter .cvTelNum {
    font-size: 3rem;
    letter-spacing: 0.3rem;
  }
}
@media screen and (min-width: 1025px) {
  .globalFooter .cvTelNum {
    font-size: 5rem;
    letter-spacing: 0.5rem;
  }
}
.globalFooter .cvTelNote {
  font-family: "ShipporiMincho", sans-serif;
  text-align: center;
}
@media screen and (min-width: 320px) {
  .globalFooter .cvTelNote {
    font-size: 1.3rem;
    margin-top: 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .globalFooter .cvTelNote {
    font-size: 1.8rem;
    margin-top: 2rem;
  }
}
.globalFooter .icon {
  position: absolute;
  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;
  top: 50%;
  background: #000000;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
@media screen and (min-width: 320px) {
  .globalFooter .icon {
    right: -2.8rem;
    width: 2rem;
    height: 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .globalFooter .icon {
    right: -9rem;
    width: 6.4rem;
    height: 6.4rem;
  }
}
@media screen and (min-width: 320px) {
  .globalFooter .iconSvg {
    width: 1.2rem;
  }
}
@media screen and (min-width: 1025px) {
  .globalFooter .iconSvg {
    width: 2.5rem;
  }
}
.globalFooter .footerContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-family: "ShipporiMincho", sans-serif;
  color: #000000;
}
@media screen and (min-width: 320px) {
  .globalFooter .footerContent {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 7rem 2.5vw 4.8rem;
  }
}
@media screen and (min-width: 1025px) {
  .globalFooter .footerContent {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 11rem 4.5vw 9.2rem;
  }
}
.globalFooter .logo {
  display: block;
}
@media screen and (min-width: 320px) {
  .globalFooter .logo {
    width: 18rem;
  }
}
@media screen and (min-width: 1025px) {
  .globalFooter .logo {
    width: 45.5rem;
  }
}
@media screen and (min-width: 320px) {
  .globalFooter .footerAddress {
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
    margin-top: 2.7rem;
  }
}
@media screen and (min-width: 1025px) {
  .globalFooter .footerAddress {
    font-size: 2.4rem;
    letter-spacing: 0.16rem;
    margin-top: 5.1rem;
  }
}
.globalFooter .footerTel {
  line-height: 1.8;
}
@media screen and (min-width: 320px) {
  .globalFooter .footerTel {
    font-size: 1.4rem;
    letter-spacing: 0.14rem;
  }
}
@media screen and (min-width: 1025px) {
  .globalFooter .footerTel {
    font-size: 2.4rem;
    letter-spacing: 0.16rem;
  }
}
@media screen and (min-width: 320px) {
  .globalFooter .footerCalendar {
    padding-top: 2.3rem;
  }
}
@media screen and (min-width: 1025px) {
  .globalFooter .footerCalendar {
    padding-top: 1.1rem;
  }
}
@media screen and (min-width: 320px) {
  .globalFooter .clinicInfo {
    padding: 0 2.5vw 0;
  }
}
@media screen and (min-width: 1025px) {
  .globalFooter .clinicInfo {
    padding: 0;
  }
}
.globalFooter .calendarText {
  text-align: center;
}
@media screen and (min-width: 320px) {
  .globalFooter .calendarText {
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
  }
}
@media screen and (min-width: 1025px) {
  .globalFooter .calendarText {
    font-size: 2.5rem;
    letter-spacing: 0.16rem;
  }
}
.globalFooter .calendarTable {
  width: 100%;
  border-collapse: separate;
}
@media screen and (min-width: 320px) {
  .globalFooter .calendarTable {
    border-spacing: 0.5rem;
    margin-top: 1.6rem;
  }
}
@media screen and (min-width: 1025px) {
  .globalFooter .calendarTable {
    border-spacing: 0.8rem;
    margin-top: 2.4rem;
  }
}
.globalFooter .tableHeader {
  color: #73b1d2;
  background: #FFFFFF;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
@media screen and (min-width: 320px) {
  .globalFooter .tableHeader {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1025px) {
  .globalFooter .tableHeader {
    font-size: 2.4rem;
  }
}
.globalFooter .tableHeader.empty {
  background: none;
}
@media screen and (min-width: 320px) {
  .globalFooter .tableHeader.column {
    padding: 0 1.2rem;
  }
}
@media screen and (min-width: 1025px) {
  .globalFooter .tableHeader.column {
    padding: 0 2.5rem;
  }
}
@media screen and (min-width: 320px) {
  .globalFooter .tableHeader.row {
    padding: 0;
  }
}
@media screen and (min-width: 1025px) {
  .globalFooter .tableHeader.row {
    padding: 0 1.5rem;
  }
}
@media screen and (min-width: 320px) {
  .globalFooter .tableRow {
    height: 3rem;
  }
}
@media screen and (min-width: 1025px) {
  .globalFooter .tableRow {
    height: 5.2rem;
  }
}
.globalFooter .tableData {
  text-align: center;
}
@media screen and (min-width: 320px) {
  .globalFooter .tableData {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1025px) {
  .globalFooter .tableData {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 320px) {
  .globalFooter .footerMap {
    height: 29rem;
  }
}
@media screen and (min-width: 1025px) {
  .globalFooter .footerMap {
    height: 58rem;
  }
}
.globalFooter .footerCopy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #000000;
}
@media screen and (min-width: 320px) {
  .globalFooter .footerCopy {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    font-size: 1.2rem;
    padding: 2.8rem 4.5vw 4rem;
    letter-spacing: 0.07rem;
  }
}
@media screen and (min-width: 1025px) {
  .globalFooter .footerCopy {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.4rem;
    padding: 3.2rem 4.5vw;
    letter-spacing: 0.1rem;
  }
}
.globalFooter .copyText {
  font-family: "acumin-pro", sans-serif;
}
.globalFooter .footerNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 320px) {
  .globalFooter .footerNav {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-top: 2.2rem;
  }
}
@media screen and (min-width: 1025px) {
  .globalFooter .footerNav {
    width: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 0;
  }
}
.globalFooter .privacyPolicy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.globalFooter .privacyPolicyItem {
  position: relative;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}
@media screen and (min-width: 320px) {
  .globalFooter .privacyPolicyItem {
    margin-right: 2.2rem;
  }
}
@media screen and (min-width: 1025px) {
  .globalFooter .privacyPolicyItem {
    margin-right: 4.2rem;
  }
}
.globalFooter .privacyPolicyItem::before {
  position: absolute;
  content: "/";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 320px) {
  .globalFooter .privacyPolicyItem::before {
    right: -1.4rem;
  }
}
@media screen and (min-width: 1025px) {
  .globalFooter .privacyPolicyItem::before {
    right: -2.5rem;
  }
}
.globalFooter .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 320px) {
  .globalFooter .sns {
    gap: 0 2.5rem;
    margin-top: 1.2rem;
  }
}
@media screen and (min-width: 1025px) {
  .globalFooter .sns {
    gap: 0 2.3rem;
    margin-top: 0;
  }
}
.globalFooter .snsItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  fill: #000000;
}
@media screen and (min-width: 320px) {
  .globalFooter .snsItem {
    height: 2.4rem;
  }
}
@media screen and (min-width: 1025px) {
  .globalFooter .snsItem {
    height: 3.2rem;
  }
}

/* ******************************
 *
 * COMMON SETTING
 *
 * ****************************** */
.sectionTitleEng {
  font-family: "Satoshi", sans-serif;
  font-weight: 700;
  color: #73b1d2;
  line-height: 1.16;
  letter-spacing: 0.1rem;
  margin-left: -0.5vw;
}
@media screen and (min-width: 320px) {
  .sectionTitleEng {
    font-size: 7rem;
  }
}
@media screen and (min-width: 1025px) {
  .sectionTitleEng {
    font-size: 22.2rem;
  }
}

.sectionTitle {
  font-family: "ShipporiMincho", sans-serif;
  color: #73b1d2;
  font-weight: 700;
  letter-spacing: 0.4rem;
}
@media screen and (min-width: 320px) {
  .sectionTitle {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .sectionTitle {
    font-size: 4.2rem;
  }
}

.commonLinkBtn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #73b1d2;
  border-radius: 10rem;
  line-height: 1;
  white-space: nowrap;
  -webkit-transition-property: background-color, color;
  transition-property: background-color, color;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  padding: 1rem 1rem 1rem 0;
  color: #FFFFFF;
}
@media screen and (min-width: 320px) {
  .commonLinkBtn {
    width: 12.5rem;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1025px) {
  .commonLinkBtn {
    width: 25.5rem;
    font-size: 2.1rem;
  }
  .commonLinkBtn:hover {
    color: #73b1d2;
    background: #FFFFFF;
  }
  .commonLinkBtn:hover .btnText {
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .commonLinkBtn:hover .icon {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
.commonLinkBtn.eng {
  font-weight: 700;
  font-family: "acumin-pro", sans-serif;
}
@media screen and (min-width: 320px) {
  .commonLinkBtn.eng {
    width: 14rem;
  }
}
@media screen and (min-width: 1025px) {
  .commonLinkBtn.eng {
    width: 25.5rem;
  }
}
.commonLinkBtn .btnText {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition-property: left, -webkit-transform;
  transition-property: left, -webkit-transform;
  transition-property: left, transform;
  transition-property: left, transform, -webkit-transform;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
@media screen and (min-width: 320px) {
  .commonLinkBtn .btnText {
    left: 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .commonLinkBtn .btnText {
    left: 4rem;
  }
}
.commonLinkBtn .icon {
  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;
  border-radius: 50%;
  background: #FFFFFF;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
@media screen and (min-width: 320px) {
  .commonLinkBtn .icon {
    width: 2rem;
    height: 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .commonLinkBtn .icon {
    width: 5.5rem;
    height: 5.5rem;
  }
}
.commonLinkBtn .iconSvg {
  stroke: #73b1d2;
}
@media screen and (min-width: 320px) {
  .commonLinkBtn .iconSvg {
    width: 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .commonLinkBtn .iconSvg {
    width: 2rem;
  }
}

@media screen and (min-width: 320px) {
  .spBr {
    display: block;
  }
}
@media screen and (min-width: 1025px) {
  .spBr {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */