@charset "UTF-8";
/* A Modern CSS Reset */
* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  border-style: solid;
  box-sizing: border-box;
  border-width: 0;
}

html {
  scroll-behavior: smooth;
}

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

ul,
ol {
  list-style: none;
}

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

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

input,
button,
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  border-radius: 0;
  background: transparent;
  font: inherit;
  outline: none;
}

textarea {
  resize: none;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  color: #202925;
  padding: 0;
}

html {
  font-size: 4.2666666667vw;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 0.8333333333vw;
  }
}
@media (min-width: 1920px) {
  html {
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) {
  a {
    transition: 0.3s;
  }
  a:hover {
    opacity: 0.7;
  }
}

body {
  overflow-x: hidden;
  background-image: url(http://remove.local/wp-content/uploads/2024/04/background.png);
  background-repeat: repeat;
}

.inner {
  width: 100%;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1920px;
    padding-right: 12.5rem;
    padding-left: 12.5rem;
  }
}

.title-container {
  width: 6.5rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .title-container {
    width: 10rem;
  }
}

.title-img-wrapper {
  margin: 0 auto;
  width: 3.75rem;
  height: 3.125rem;
}
@media screen and (min-width: 768px) {
  .title-img-wrapper {
    width: 4.375rem;
    height: 3.625rem;
  }
}

.title-img-wrapper img {
  aspect-ratio: 1.2;
}
@media screen and (min-width: 768px) {
  .title-img-wrapper img {
    aspect-ratio: 1.2068965517;
  }
}

.title-body-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  white-space: nowrap;
}

.section-title {
  font-size: 3.75rem;
  line-height: 1.6923076923;
  color: #230b6d;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .section-title {
    font-size: 5rem;
    font-weight: 500;
    line-height: 1.7;
  }
}

.section-en-title {
  text-transform: capitalize;
  font-size: 1.75rem;
  line-height: 1.6666666667;
  color: #707070;
}
@media screen and (min-width: 768px) {
  .section-en-title {
    font-size: 2.8125rem;
    line-height: 1.6875;
  }
}

.sub_mv {
  margin-top: 5rem;
}

.sub_mv-img {
  height: 13.75rem;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  position: relative;
}

.sub_mv-img img {
  height: 13.75rem;
  aspect-ratio: 375/220;
}

.sub_mv-img::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #000;
  opacity: 0.3;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.sub_mv-title-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 15;
}

.sub_mv-title {
  color: #fff;
  text-transform: capitalize;
  font-size: 3.75rem;
  line-height: 1;
}

.sub_mv-en-title {
  text-align: center;
  font-size: 1rem;
  line-height: 1.6875;
  font-weight: 300;
  color: #fff;
}

.btn-wrapper {
  text-align: center;
}

.btn {
  /*矢印の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  border: 1px solid #707070;
  padding: 1.8125rem 6.5625rem 1.9375rem;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  color: #707070;
  outline: none;
  /*アニメーションの指定*/
  transition: all 0.2s linear;
}
@media screen and (min-width: 768px) {
  .btn {
    padding: 1.9375rem 7.1875rem;
  }
}

.btn:hover {
  background: #4C6A84;
  color: #fff;
}

/*矢印と下線の形状*/
.btn::before {
  content: "";
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  top: 50%;
  right: 0;
  margin-right: 1rem;
  /*下線の形状*/
  width: 3.625rem;
  height: 1px;
  background: #707070;
  /*アニメーションの指定*/
  transition: all 0.2s linear;
}
@media screen and (min-width: 768px) {
  .btn::before {
    width: 5rem;
    right: -3.75rem;
    margin-right: 0rem;
  }
}

.btn::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 39%;
  right: 0;
  margin-right: 1.25rem;
  /*矢印の形状*/
  width: 1px;
  height: 0.625rem;
  background: #707070;
  transform: skewX(45deg);
  /*アニメーションの指定*/
  transition: all 0.2s linear;
}
@media screen and (min-width: 768px) {
  .btn::after {
    right: -3.75rem;
    margin-right: 0.25rem;
  }
}

/*hoverした際の移動*/
.btn:hover::before {
  right: -3.75rem;
}
@media screen and (min-width: 768px) {
  .btn:hover::before {
    right: -7.5rem;
  }
}

.btn:hover::after {
  right: -3.75rem;
}
@media screen and (min-width: 768px) {
  .btn:hover::after {
    right: -7.5rem;
  }
}

body {
  position: relative;
}

.circle {
  position: absolute;
  width: 45.3125rem;
  height: 45.3125rem;
  border-radius: 50%;
  background-color: rgba(235, 245, 254, 0.6);
  z-index: -1;
}

.circle1 {
  top: 18.75rem;
  right: 12.5rem;
}
@media screen and (min-width: 768px) {
  .circle1 {
    top: 28.625rem;
    right: 85.3125rem;
  }
}

.circle2 {
  top: 96.8125rem;
  left: 9.625rem;
}
@media screen and (min-width: 768px) {
  .circle2 {
    top: 98.1875rem;
    left: 97.375rem;
  }
}

.circle3 {
  top: 262.5rem;
  right: 50%;
  transform: translateX(50%);
}
@media screen and (min-width: 768px) {
  .circle3 {
    top: 154.875rem;
    right: 97.875rem;
  }
}

@media screen and (min-width: 768px) {
  .about_circle1 {
    top: 35.5rem;
    left: 91.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .about_circle2 {
    top: 70.5625rem;
    right: 91.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .about_circle3 {
    top: 154.8125rem;
    left: 91.5625rem;
  }
}

html {
  position: relative;
}

.header {
  display: flex;
  justify-content: space-between;
  text-align: center;
  width: 100%;
  height: 3.75rem;
  z-index: 100;
  top: 0;
}
@media screen and (min-width: 768px) {
  .header {
    height: 6.25rem;
  }
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3.5rem;
}
@media screen and (min-width: 768px) {
  .logo {
    width: 25.1875rem;
    height: 5.625rem;
    font-size: 4.4375rem;
  }
}

/* ドロワーメニュー */
.drawer-inner {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  width: 100%;
  height: 100vh;
  position: absolute;
  padding: 0;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
}
.drawer-inner.is-open {
  display: flex !important;
  background-color: #0080dd;
}
@media screen and (min-width: 768px) {
  .drawer-inner {
    background: none;
    position: static;
    display: inline-block;
    width: auto;
    height: inherit;
    z-index: auto;
    border: none;
    padding: 0;
    margin: 0;
    margin-right: 4.25rem;
  }
}

.menu-nav-menu-container {
  display: none;
  width: 100%;
  height: 100vh;
  margin-top: 3.75rem;
  justify-content: center;
}
.menu-nav-menu-container.is-open {
  display: block;
  margin-top: 4.375rem;
  background-color: #0080dd;
}
@media screen and (min-width: 768px) {
  .menu-nav-menu-container {
    display: block !important;
    height: inherit;
    margin-top: 0;
    width: 100vw;
  }
}

.drawer-inner nav {
  width: 100%;
}

.header__nav__items {
  display: flex;
  text-align: center;
  width: 100%;
  height: inherit;
  flex-direction: column;
  align-items: center;
  margin-top: 3.5625rem;
  font-size: 1.875rem;
}
@media screen and (min-width: 768px) {
  .header__nav__items {
    width: 50rem;
    height: inherit;
    flex-direction: row;
    justify-content: space-around;
    margin: 0;
    font-size: 1.875rem;
  }
}

.header__nav__items .menu-item {
  position: relative;
  width: 18.5rem;
  border-bottom: 2px solid rgba(86, 169, 240, 0.5960784314);
}
@media screen and (min-width: 768px) {
  .header__nav__items .menu-item {
    display: inline-block;
    margin: 0;
    border: none;
    width: auto;
  }
}

@media screen and (min-width: 768px) {
  .header__nav__items .menu-item:nth-child(n+2)::before {
    content: "";
    display: block;
    position: absolute;
    width: 0.9375rem;
    height: 0.9375rem;
    border-radius: 50%;
    background-color: #56a9f0;
    opacity: 0.6;
    top: 3.75rem;
    left: -2.875rem;
  }
}

.header__nav__items .menu-item a {
  padding: 1.3125rem 0;
  display: block;
  line-height: 1.7333333333;
  color: #fff;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .header__nav__items .menu-item a {
    padding: 0;
    margin: 2.5rem 0 2.625rem;
    font-weight: 700;
    color: #707070;
  }
}

/* ハンバーガーメニュー */
.hamburger {
  position: absolute;
  top: 0.625rem;
  right: 1.25rem;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  transition: transform 0.5s ease 0s;
  z-index: 999;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

.hamburger__bar {
  position: absolute;
  left: 50%;
  width: 2.1875rem;
  height: 2px;
  background: #4c6a83;
  transition: 0.3s;
  transform: translate(-50%, -50%);
}

.hamburger__bar:nth-of-type(1) {
  top: 30%;
}

.hamburger__bar:nth-of-type(2) {
  top: 50%;
}

.hamburger__bar:nth-of-type(3) {
  top: 70%;
}

/* OPEN時の動き */
.is-open .hamburger__bar:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.is-open .hamburger__bar:nth-of-type(2) {
  opacity: 0;
  transform: translate(-50%, -50%);
}
.is-open .hamburger__bar:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/*==================================================
　5-3-1 中心から外に線が伸びる（下部）
===================================*/
.header__nav__items li a {
  /*線の基点とするためrelativeを指定*/
  position: relative;
}

.header__nav__items li.current a,
.header__nav__items li a:hover {
  color: #0481a2;
}

.header__nav__items li a::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: 0;
  left: -10%;
  /*線の形状*/
  width: 120%;
  height: 2px;
  background: #0481a2;
  /*アニメーションの指定*/
  transition: all 0.3s;
  transform: scale(0, 1); /*X方向0、Y方向1*/
  transform-origin: center top; /*上部中央基点*/
}

/*現在地とhoverの設定*/
.header__nav__items li.current a::after,
.header__nav__items li a:hover::after {
  transform: scale(1, 1); /*X方向にスケール拡大*/
}

.footer {
  margin-top: 7.5rem;
  background-color: #ebf5fe;
}
@media screen and (min-width: 768px) {
  .footer {
    margin-top: 12.5rem;
  }
}

.footer__body-wrapper {
  margin-top: 1.25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer__body-wrapper {
    margin-top: 0.625rem;
    display: flex;
    align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .footer-inner {
    display: flex;
    justify-content: center;
    text-align: center;
  }
}
.footer-inner .menu-footer-menu-container {
  width: 100%;
}
.footer-inner .footer__nav__items {
  display: flex;
  text-align: center;
  width: 100%;
  flex-direction: column;
  align-items: center;
  padding: 1.875rem 0;
  border-bottom: 2px solid rgba(86, 169, 240, 0.5960784314);
}
@media screen and (min-width: 768px) {
  .footer-inner .footer__nav__items {
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
  }
}
.footer-inner .menu-item:nth-child(n+2) {
  padding: 0.625rem 0;
}
@media screen and (min-width: 768px) {
  .footer-inner .menu-item:nth-child(n+2) {
    padding: 0;
    margin-left: 5.375rem;
  }
}
.footer-inner .menu-item a {
  display: block;
  font-size: 1rem;
  line-height: 1.6875;
  color: #707070;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .footer-inner .menu-item a {
    padding: 0;
    margin: 0;
  }
  .footer-inner .menu-item a:hover {
    border-bottom: 2px solid rgba(86, 169, 240, 0.5960784314);
  }
}

.footer-logo {
  margin-top: 0.625rem;
  height: 6.25rem;
}
@media screen and (min-width: 768px) {
  .footer-logo {
    margin-top: 8.75rem;
    text-align: center;
    width: 50%;
    height: 4.625rem;
  }
}

.footer-logo a {
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .footer-logo a {
    display: inline-block;
    width: 21.875rem;
  }
}
.footer-logo a img {
  margin-top: -5rem;
  aspect-ratio: auto;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .footer-logo a img {
    aspect-ratio: auto;
  }
}

.footer-body-container {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .footer-body-container {
    width: 50%;
    margin: auto 0;
    margin-top: 6.25rem;
  }
}

.footer_body {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .footer_body {
    margin-top: 2.5rem;
  }
}

.area {
  font-size: 1rem;
  line-height: 1.6875;
}
@media screen and (min-width: 768px) {
  .area {
    font-size: 1.5rem;
    line-height: 1.7083333333;
  }
}

address {
  font-size: 1.5rem;
  line-height: 1.7083333333;
}
@media screen and (min-width: 768px) {
  address {
    font-size: 2.5rem;
    line-height: 0.5882352941;
  }
}

.copywright {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 3.125rem;
  background-color: #4c6a84;
}
@media screen and (min-width: 768px) {
  .copywright {
    margin-top: 7.4375rem;
  }
}

.copywright small {
  color: #fff;
  font-size: 0.75rem;
  line-height: 1.6666666667;
}

section {
  padding-top: 1.5625rem;
}

.contact {
  background-color: blue;
  height: 15.625rem;
}

.contact-text-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-text {
  display: block;
  background-color: skyblue;
  margin: 0.3125rem 1.875rem;
  padding: 0.3125rem 3.125rem;
  border-radius: 20%;
}

.contact-consultation {
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 2.25rem;
}

.contact-consultation p {
  text-align: center;
  width: 31.25rem;
  border-bottom: yellow 3px solid;
}

.mv-inner {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (min-width: 768px) {
  .mv-inner {
    padding-left: 0;
    position: relative;
    padding-right: 12.5rem;
  }
}

.mv-container {
  font-size: 2rem;
  text-align: center;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .mv-container {
    position: absolute;
    font-size: 6.25rem;
    bottom: 20%;
    right: 0;
  }
}

.mv-img {
  height: 100vh;
}

.faq {
  background-color: #0080dd;
  padding: 2.375rem 0 4.375rem;
}

.contact-comment-container {
  display: flex;
  justify-content: space-around;
}
@media screen and (min-width: 768px) {
  .contact-comment-container {
    justify-content: center;
  }
}

.contact-comment {
  position: relative;
  display: block;
  background-color: #c5e1ff;
  border-radius: 2.03125rem;
  text-align: center;
  padding: 1.25rem 1.875rem;
  font-size: 1rem;
  color: #0080dd;
}
@media screen and (min-width: 768px) {
  .contact-comment {
    width: 20.3125rem;
    font-size: 1.375rem;
    margin: 0 2rem;
    padding: 1.25rem 5rem;
  }
}

.contact-comment::before {
  content: "★";
  position: absolute;
  width: 3.625rem;
  height: 1px;
  left: -10px;
  color: #dbb000;
}
@media screen and (min-width: 768px) {
  .contact-comment::before {
    left: 10%;
  }
}

.contact-comment::after {
  content: "★";
  position: absolute;
  right: -10px;
  bottom: 43px;
  width: 3.625rem;
  height: 1px;
  color: #dbb000;
}
@media screen and (min-width: 768px) {
  .contact-comment::after {
    right: 10%;
    bottom: 70%;
  }
}

.contact-title-container {
  display: flex;
  justify-content: center;
}

.contact-title {
  color: #fff;
  text-align: center;
  font-size: 1.875rem;
  margin-top: 1.5625rem;
  border-bottom: solid 15px #dbb000;
}
@media screen and (min-width: 768px) {
  .contact-title {
    font-size: 3.75rem;
  }
}

.contact-form-container {
  background-color: #dbb000;
  margin: 4.0625rem auto 0;
  padding: 1.5625rem 1.875rem;
  text-align: center;
  border-radius: 2.5rem;
}
@media screen and (min-width: 768px) {
  .contact-form-container {
    width: 59.375rem;
    padding: 1.5625rem 1.875rem;
  }
}

.contact-form {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .contact-form {
    font-size: 2.1875rem;
  }
}

.contact_tell {
  position: relative;
  padding-left: 2.25rem;
  margin-top: 1.5rem;
}

.contact_tell a {
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .contact_tell a {
    font-size: 4.0625rem;
  }
}

.contact_tell::before {
  content: "";
  position: absolute;
  width: 3.25rem;
  height: 3.25rem;
  background-image: url(http://remove.local/wp-content/uploads/2024/05/fone.png);
  background-repeat: no-repeat;
  background-size: contain;
  left: -25px;
  top: -10px;
}
@media screen and (min-width: 768px) {
  .contact_tell::before {
    width: 5.5rem;
    height: 5.5rem;
    left: -10px;
    top: 0;
  }
}

.contact-time-container {
  display: flex;
  justify-content: center;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .contact-time-container {
    font-size: 2.1875rem;
  }
}

.service_frow-container {
  margin-top: 3.125rem;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .service_frow-container {
    justify-content: space-between;
    flex-direction: row;
  }
}

.service_frow {
  margin-bottom: 1.25rem;
}

.service_title {
  border-left: solid 20px #0080dd;
  border-bottom: solid 2px #0080dd;
  padding-left: 0.75rem;
  font-size: 1.5rem;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .service_title {
    font-size: 3.125rem;
    padding-left: 2.1875rem;
  }
}

.service-msg {
  font-size: 1.25rem;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .service-msg {
    font-size: 2rem;
  }
}

.service_frow-box {
  width: 21.875rem;
  height: 21.875rem;
  background: #0080dd;
  padding: 1.875rem 0.9375rem;
  border-radius: 2.5rem;
}

.frow-title {
  display: flex;
  justify-content: center;
}

.frow-title-img {
  width: 5.625rem;
  height: 8.375rem;
}

.frow-title-img img {
  width: inherit;
  height: inherit;
  object-fit: cover;
}

.frow-title h1 {
  color: #fff;
  text-align: center;
  margin-left: 1.5rem;
}

.frow-title .num {
  font-size: 3.75rem;
  padding-top: -1.875rem;
}

.frow_content {
  margin-top: 1.25rem;
}

.frow_content1 {
  margin-top: 1.875rem;
  text-align: center;
  font-size: 1.75rem;
}

.frow_content2 {
  margin-top: 1.875rem;
  text-align: center;
  font-size: 1.25rem;
}

.frow_content3 {
  margin-top: 1.875rem;
  text-align: center;
  font-size: 1.375rem;
}

.frow_content_tell {
  font-size: 1.25rem;
  position: relative;
  padding-left: 3.125rem;
}

.frow_content_tell::before {
  content: "";
  position: absolute;
  width: 3.125rem;
  height: 3.125rem;
  background-image: url(http://remove.local/wp-content/uploads/2024/05/fone.png);
  background-repeat: no-repeat;
  background-size: contain;
  left: -0.3125rem;
  top: -0.625rem;
}

.frow_content-text {
  margin-top: 3.125rem;
  background-color: #c4ecff;
  border-radius: 1.5rem;
  height: 2.9375rem;
  font-size: 1.5625rem;
  padding-top: 0.3125rem;
  text-align: center;
}

.service-box {
  display: flex;
}

.service_frow-title {
  margin: auto auto;
  margin-top: 1.25rem;
  width: 12.5rem;
  height: 3.125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #c4ecff;
  border-radius: 2.8125rem;
  border: solid 4px #0080dd;
  font-size: 1.25rem;
  color: #0080dd;
}
@media screen and (min-width: 768px) {
  .service_frow-title {
    width: 19.375rem;
    height: 5.625rem;
    font-size: 2.25rem;
  }
}

.Strong__img-container {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .Strong__img-container {
    justify-content: space-around;
    flex-direction: row;
  }
}

.strong_point {
  width: 21.875rem;
  height: 21.875rem;
  text-align: center;
  align-items: center;
  margin-bottom: 0.625rem;
  border-radius: 50%;
  background-color: #0080dd;
  font-size: 3.75rem;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .strong_point {
    width: 31.25rem;
    height: 31.25rem;
    font-size: 4.375rem;
  }
}

.price {
  background: #c4ecff;
}

.price_setting-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  padding-bottom: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .price_setting-body {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.price_setting {
  background: #0080dd;
  height: 12.5rem;
}

.plan_price_title {
  margin: 0.75rem 0;
  text-align: center;
  font-size: 1.75rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .plan_price_title {
    font-size: 2.25rem;
  }
}

.plan_price_item {
  display: flex;
}

.plan_price_item-title {
  font-size: 1.25rem;
  background-color: #dbb000;
  padding: 0.25rem 0.75rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .plan_price_item-title {
    font-size: 1.75rem;
    padding: 0.25rem 1rem;
  }
}

.plan_price_item-price {
  padding-left: 0.75rem;
  font-size: 1.25rem;
  color: #dbb000;
}
@media screen and (min-width: 768px) {
  .plan_price_item-price {
    font-size: 1.75rem;
  }
}

.plan_price-comment {
  margin-top: 1.25rem;
  text-align: center;
}

.attention {
  font-size: 0.5rem;
}
@media screen and (min-width: 768px) {
  .attention {
    font-size: 1rem;
  }
}

.overview_table {
  display: flex;
  justify-content: center;
}

.overview_table table {
  border: solid 1px #0080dd;
  border-collapse: collapse;
}

.overview_table th {
  border: solid 1px #0080dd;
  width: 17.5rem;
  height: 4rem;
  font-size: 1.125rem;
  background-color: #c7eaff;
}

.overview_table td {
  border: solid 1px #0080dd;
  padding-left: 2.25rem;
  width: 25rem;
}
@media screen and (min-width: 768px) {
  .overview_table td {
    padding-left: 4.5rem;
  }
}

.overview_table table {
  border: solid 1px #0080dd;
}

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

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
