@charset "UTF-8";
/* 全体設定やタイトル、ボタン、改行など */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 50%;
  text-align: justify;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.05em;
  overflow-x: hidden;
  scroll-padding-top: 60px;
}
@media print, screen and (min-width: 768px) {
  html {
    font-size: 62.5%;
  }
}

body {
  color: #1A1A1A;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

li {
  list-style: none;
}

a {
  display: block;
  color: #1A1A1A;
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media print, screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
  }
}

img, video {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}

br.only_under600 {
  display: block;
}
@media print, screen and (min-width: 600px) {
  br.only_under600 {
    display: none;
  }
}
br.only_under768 {
  display: block;
}
@media print, screen and (min-width: 768px) {
  br.only_under768 {
    display: none;
  }
}
br.only_upper768 {
  display: none;
}
@media print, screen and (min-width: 768px) {
  br.only_upper768 {
    display: block;
  }
}
br.only_upper1024 {
  display: none;
}
@media print, screen and (min-width: 1024px) {
  br.only_upper1024 {
    display: block;
  }
}

.inner1400 {
  width: 95%;
  max-width: 1400px;
  margin: auto;
}

.inner1200 {
  width: 95%;
  max-width: 1200px;
  margin: auto;
}

.inner1024 {
  width: 95%;
  max-width: 1024px;
  margin: auto;
}

.top_btn {
  width: 90%;
  max-width: 560px;
  margin: auto;
}
.top_btn a {
  color: #FFF;
  font-size: 2.4rem;
  text-align: center;
  padding: clamp(1.5rem, 1.5vw, 3rem) 0;
  background-color: #21cdd4;
}
.top_btn a::after {
  content: "　＞";
}
.top_btn a:hover {
  opacity: 0.7;
}
@media print, screen and (min-width: 1024px) {
  .top_btn a {
    font-weight: bold;
  }
}
.top_btn.round a {
  border-radius: 9999px;
}

.txt_gradation {
  background: -webkit-gradient(linear, left top, right top, from(#21cdd4), to(#3366cc));
  background: linear-gradient(to right, #21cdd4, #3366cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.scroll_fade_up {
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 1s;
  transition: all 1s;
}
.scroll_fade_up.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

/* 全体設定やタイトル、ボタン、改行など　ここまで */
/* ---------- header ---------- */
header {
  position: fixed;
  width: 100%;
  height: 8rem;
  display: grid;
  place-items: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 99999;
}
header.fixed {
  background-color: rgba(33, 205, 212, 0.9);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
header .header_inner {
  width: 95%;
  max-width: 1500px;
  margin: auto;
  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;
}
header .header_inner h1.header_logo {
  width: 20rem;
}
header .header_inner .menu_area {
  display: none;
}
header .header_inner .menu_trigger {
  position: relative;
  width: 5rem;
  height: 5rem;
  z-index: 99999;
}
header .header_inner .menu_trigger span {
  display: block;
  width: 4rem;
  height: 0.3rem;
  background-color: #FFF;
  border-radius: 9999px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
header .header_inner .menu_trigger span:first-of-type {
  top: calc(50% - 1rem);
}
header .header_inner .menu_trigger span:last-of-type {
  top: calc(50% + 1rem);
}
header .header_inner .menu_trigger.active {
  background-color: #21cdd4;
}
header .header_inner .menu_trigger.active span:nth-of-type(2) {
  display: none;
}
header .header_inner .menu_trigger.active span:first-of-type {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
header .header_inner .menu_trigger.active span:last-of-type {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
header .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #FFF;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-animation: meuOut 0.5s forwards;
          animation: meuOut 0.5s forwards;
}
header .overlay.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-animation: menuIn 0.5s forwards;
          animation: menuIn 0.5s forwards;
}
header .overlay .sp_menu {
  padding: 20vh 0;
}
header .overlay .sp_menu ul li {
  height: 10vh;
}
header .overlay .sp_menu ul li a {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
header .overlay .sp_menu ul li p {
  text-align: center;
}
header .to_top {
  position: fixed;
  bottom: 0;
  right: 0;
  opacity: 0;
}
header .to_top.active {
  -webkit-animation: fadeBtn 1s forwards;
          animation: fadeBtn 1s forwards;
}
header .to_top a {
  position: relative;
  color: #3366cc;
  font-weight: bold;
  background-color: #FFF;
  border: 2px solid #3366cc;
  padding: 10px 15px;
}
header .to_top a::before {
  content: "＞";
  display: block;
  text-align: center;
  line-height: 0.8;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
header .to_top a:hover {
  color: #FFF;
  background-color: #3366cc;
}

@media print, screen and (min-width: 1024px) {
  header .header_inner h1.header_logo {
    width: 15%;
  }
  header .header_inner h1.header_logo figure {
    display: grid;
    place-items: center;
  }
  header .header_inner .menu_area {
    width: 83%;
    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;
    gap: 0 1.15vw;
  }
  header .header_inner .main_nav ul {
    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;
    gap: 0 1.15vw;
  }
  header .header_inner .main_nav ul li a {
    color: #FFF;
    font-size: min(1.15vw, 1.6rem);
    font-weight: bold;
  }
  header .header_inner .main_nav ul li a:hover {
    color: #3366cc;
  }
  header .header_inner .contact_menu ul {
    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;
    gap: 0 1.15vw;
  }
  header .header_inner .contact_menu ul li.to_contact a {
    background-color: #FFF;
    border-radius: 9999px;
    padding: 0.5rem 1rem 0.5rem 1.5rem;
  }
  header .header_inner .contact_menu ul li.to_contact a:hover {
    background-color: #c3e9ff;
  }
  header .header_inner .contact_menu ul li.to_contact a figure {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
  }
  header .header_inner .contact_menu ul li.to_contact a figure img {
    width: 1.7rem;
  }
  header .header_inner .contact_menu ul li.to_contact a figure figcaption {
    color: #3366cc;
    font-size: min(1.15vw, 1.6rem);
    font-weight: bold;
  }
  header .header_inner .contact_menu ul li.to_contact a figure figcaption::after {
    content: "＞";
    margin-left: 1rem;
  }
  header .header_inner .contact_menu ul li.tel_info a {
    color: #FFF;
    font-size: min(1.7vw, 2.8rem);
    font-weight: bold;
    line-height: 1;
    pointer-events: none;
  }
  header .header_inner .contact_menu ul li.tel_info p {
    color: #FFF;
    font-size: min(1.15vw, 1.6rem);
    line-height: 1;
    margin-top: 0.5rem;
  }
  header .header_inner .menu_trigger {
    display: none;
  }
}
@media print, screen and (min-width: 1400px) {
  header {
    height: 12rem;
  }
  header .header_inner h1.header_logo {
    width: 25rem;
  }
  header .menu_area {
    width: calc(100% - 25rem);
  }
}
@media print, screen and (min-width: 1600px) {
  header .header_inner h1.header_logo {
    width: 30rem;
  }
}
@media print, screen and (min-width: 1800px) {
  header .header_inner h1.header_logo {
    position: relative;
    left: -8vw;
  }
}
/* ---------- header　ここまで ---------- */
/* ---------- footer ---------- */
footer {
  padding: 20px 0;
  background-color: #3366cc;
}
footer .footer_inner {
  width: 90%;
  max-width: 880px;
  margin: auto;
}
footer .footer_inner h2 {
  width: 80%;
  max-width: 400px;
  margin: auto;
}
footer .footer_inner .footer_info {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .footer_inner .footer_info .info_left,
footer .footer_inner .footer_info .info_right {
  width: 100%;
}
footer .footer_inner .footer_info .info_left dl,
footer .footer_inner .footer_info .info_right dl {
  color: #FFF;
}
footer .footer_inner .footer_info .info_left dl dt,
footer .footer_inner .footer_info .info_right dl dt {
  font-size: 1.8rem;
  font-weight: bold;
  padding-bottom: 5px;
  border-bottom: 1px solid #FFF;
}
footer .footer_inner .footer_info .info_left dl dd,
footer .footer_inner .footer_info .info_right dl dd {
  margin-top: 5px;
  font-size: 1.4rem;
  font-weight: bold;
}
footer .footer_inner .footer_info .info_left dl dd address,
footer .footer_inner .footer_info .info_right dl dd address {
  font-style: normal;
}
footer .footer_inner .footer_info .info_left dl dd p,
footer .footer_inner .footer_info .info_right dl dd p {
  font-weight: bold;
}
footer .footer_inner .footer_info .info_left dl dd p a,
footer .footer_inner .footer_info .info_right dl dd p a {
  display: inline;
  color: #FFF;
}
footer .footer_inner .footer_info .info_right {
  margin-top: 20px;
}
footer .footer_inner small {
  margin-top: 25px;
  display: block;
  color: #FFF;
  font-weight: bold;
  text-align: center;
}

@media print, screen and (min-width: 768px) {
  footer {
    padding: 40px 0;
  }
  footer .footer_inner .footer_info {
    margin-top: 40px;
  }
  footer .footer_inner .footer_info .info_left,
  footer .footer_inner .footer_info .info_right {
    width: 45%;
  }
  footer .footer_inner .footer_info .info_left dl dt,
  footer .footer_inner .footer_info .info_right dl dt {
    padding-bottom: 10px;
  }
  footer .footer_inner .footer_info .info_left dl dd,
  footer .footer_inner .footer_info .info_right dl dd {
    margin-top: 10px;
  }
  footer .footer_inner .footer_info .info_right {
    margin-top: 0;
  }
  footer .footer_inner small {
    margin-top: 50px;
  }
}
/* ---------- footer　ここまで ---------- */
/* ---------- アニメーション ---------- */
@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes menuIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes menuIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes menuOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes menuOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@-webkit-keyframes fadeBtn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  75% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes fadeBtn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  75% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes move {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes move {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes blinking {
  0% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  70% {
    opacity: 0;
  }
}
@keyframes blinking {
  0% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  70% {
    opacity: 0;
  }
}
/* ---------- アニメーション　ここまで ---------- */
/* ========== top ========== */
/* ページ内共通 */
#top .top_section_title {
  font-size: 4rem;
  font-size: min(8vw, 4rem);
  font-weight: bold;
  text-align: center;
}
#top .top_section_title.txt_white {
  color: #FFF;
}
#top .top_section_title span {
  display: block;
  color: #3366cc;
  font-size: 2.4rem;
  font-size: min(4.8vw, 2.4rem);
}
#top .top_section_title span.txt_yellow {
  color: #e7f553;
}

/* ページ内共通　ここまで */
#top header {
  background-color: rgba(33, 205, 212, 0.9);
}
@media print, screen and (min-width: 1650px) {
  #top header {
    background-color: transparent;
  }
  #top header.fixed {
    background-color: rgba(33, 205, 212, 0.9);
  }
}
#top .top_catch {
  padding-top: 8rem;
}
@media print, screen and (min-width: 1400px) {
  #top .top_catch {
    padding-top: 12rem;
  }
}
@media print, screen and (min-width: 1650px) {
  #top .top_catch {
    padding-top: 0;
  }
}
#top .top_catch .nav-button {
  padding: 4rem 0;
}
#top .top_catch .nav-button ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem 1%;
}
#top .top_catch .nav-button ul.inner1300 {
  max-width: 1300px;
  width: 95%;
  margin: 0 auto;
}
#top .top_catch .nav-button ul li {
  width: 100%;
}
@media print, screen and (min-width: 500px) {
  #top .top_catch .nav-button ul li {
    width: 32.3333333333%;
  }
}
#top .top_catch .nav-button ul li:nth-of-type(1) a::before {
  background: #2b9ffe;
}
#top .top_catch .nav-button ul li:nth-of-type(2) a::before {
  background: #2ac8c7;
}
#top .top_catch .nav-button ul li:nth-of-type(3) a::before {
  background: #019fe8;
}
#top .top_catch .nav-button ul li a {
  position: relative;
}
#top .top_catch .nav-button ul li a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#top .top_catch .nav-button ul li a:hover::before {
  opacity: 0.3;
}
#top .top_catch_title {
  font-size: min(6vw, 4rem);
  font-weight: bold;
  text-align: center;
  margin-top: 4rem;
}
@media print, screen and (min-width: 768px) {
  #top .top_catch_title {
    font-size: min(3.75vw, 4rem);
  }
}
#top .top_catch_slider {
  margin: 2rem;
}
@media print, screen and (min-width: 768px) {
  #top .top_catch_slider {
    margin: 4rem;
  }
}
@media print, screen and (min-width: 1024px) {
  #top .top_catch_slider {
    margin-bottom: 8rem;
  }
}
#top .top_catch_slider .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
#top .top_catch_slider .swiper-wrapper .swiper-slide {
  border: 1px solid #dddddd;
  border-radius: 5%;
  margin: 0 2rem;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  #top .top_catch_slider .swiper-wrapper .swiper-slide {
    margin: 0 2rem;
  }
}
#top .top_catch_problem {
  padding: 6rem 0;
}
@media print, screen and (min-width: 768px) {
  #top .top_catch_problem {
    padding: 12rem 0;
  }
}
#top .top_catch_problem h2 {
  font-size: 4rem;
  font-size: min(6vw, 4rem);
  font-weight: bold;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
@media print, screen and (min-width: 768px) {
  #top .top_catch_problem h2 {
    font-size: min(4vw, 4rem);
  }
}
#top .top_catch_problem h2 span {
  font-size: 5.6rem;
  font-size: min(8.4vw, 5.6rem);
}
@media print, screen and (min-width: 768px) {
  #top .top_catch_problem h2 span {
    font-size: min(5.6vw, 5.6rem);
  }
}
#top .top_catch_problem .problem_list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 2rem auto 0;
}
@media print, screen and (min-width: 768px) {
  #top .top_catch_problem .problem_list {
    margin: 8rem auto 0;
  }
}
@media print, screen and (min-width: 1024px) {
  #top .top_catch_problem .problem_list {
    width: auto;
    position: relative;
  }
}
#top .top_catch_problem .problem_list::after {
  content: "";
  display: block;
  width: 80%;
  max-width: 560px;
  margin: 2rem auto 0;
  aspect-ratio: 1/1;
  background-image: url(../img/top/doctor01.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media print, screen and (min-width: 1024px) {
  #top .top_catch_problem .problem_list::after {
    width: 50%;
    margin: 0;
    position: absolute;
    left: 50%;
    bottom: 15%;
  }
}
@media print, screen and (min-width) {
  #top .top_catch_problem .problem_list dl {
    width: 50%;
  }
}
#top .top_catch_problem .problem_list dl + dl {
  margin-top: 2rem;
}
@media print, screen and (min-width: 768px) {
  #top .top_catch_problem .problem_list dl + dl {
    margin-top: 4rem;
  }
}
#top .top_catch_problem .problem_list dl dt {
  position: relative;
  display: inline;
  font-size: 3.2rem;
  font-size: min(5.75vw, 3.2rem);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(55%, transparent), color-stop(0, #e7f553));
  background: linear-gradient(to bottom, transparent 55%, #e7f553 0);
  padding-bottom: 0.3rem;
  margin-left: 4rem;
}
@media print, screen and (min-width: 1024px) {
  #top .top_catch_problem .problem_list dl dt {
    font-size: min(2.25vw, 3.2rem);
  }
}
#top .top_catch_problem .problem_list dl dt::before {
  content: "";
  display: inline-block;
  width: 7vw;
  max-width: 4rem;
  aspect-ratio: 20/28;
  background-image: url(../img/top/icon_light.webp);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: calc(100% + 0.5rem);
}
@media print, screen and (min-width: 1024px) {
  #top .top_catch_problem .problem_list dl dt::before {
    top: 50%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}
#top .top_catch_problem .problem_list dl dd {
  margin-top: 1rem;
  font-size: 1.8rem;
  padding-left: 1em;
  text-indent: -1em;
}
@media print, screen and (min-width: 768px) {
  #top .top_catch_problem .problem_list dl dd {
    margin: 2rem 0 0 4em;
  }
}
@media print, screen and (min-width: 1024px) {
  #top .top_catch_problem .problem_list dl dd {
    text-indent: -1.2em;
  }
}
#top .top_catch_problem .problem_list dl dd::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right top, from(#21cdd4), to(#3366cc));
  background: linear-gradient(to right, #21cdd4, #3366cc);
  margin-right: 0.5rem;
}
@media print, screen and (min-width: 768px) {
  #top .top_catch_problem .problem_list dl dd::before {
    width: 16px;
    height: 16px;
    margin-top: 1rem;
  }
}
#top .top_catch_solution {
  padding: 6rem 0;
  background: -webkit-gradient(linear, left top, right top, from(#21cdd4), to(#3366cc));
  background: linear-gradient(to right, #21cdd4, #3366cc);
}
@media print, screen and (min-width: 768px) {
  #top .top_catch_solution {
    padding: 12rem 0;
  }
}
#top .top_catch_solution h2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  color: #FFF;
  font-size: 5.6rem;
  font-size: min(8vw, 5.6rem);
  font-weight: bold;
  text-align: center;
}
#top .top_catch_solution h2 span {
  display: block;
  font-size: 2.4rem;
  font-size: min(5vw, 2.4rem);
}
#top .top_catch_solution h2 strong {
  color: #e7f553;
}
#top .top_catch_solution p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 2rem auto;
  color: #FFF;
  font-size: 2rem;
  line-height: 2;
}
@media print, screen and (min-width: 768px) {
  #top .top_catch_solution p {
    margin: 4rem auto;
    text-align: center;
  }
}
@media print, screen and (min-width: 1024px) {
  #top .top_catch_solution p {
    font-weight: bold;
  }
}
#top .top_reason {
  padding: 6rem 0 0;
}
@media print, screen and (min-width: 768px) {
  #top .top_reason {
    padding: 12rem 0 0;
  }
}
#top .top_reason .reason_desc {
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media print, screen and (min-width: 768px) {
  #top .top_reason .reason_desc {
    margin-top: 8rem;
  }
}
@media print, screen and (min-width: 1024px) {
  #top .top_reason .reason_desc .desc_upper {
    width: 45%;
  }
}
#top .top_reason .reason_desc .desc_upper h3 {
  color: #3366cc;
  font-size: 3.6rem;
  font-size: min(5vw, 3.6rem);
}
#top .top_reason .reason_desc .desc_upper p {
  margin-top: 2rem;
  font-size: 1.8rem;
  line-height: 2;
}
@media print, screen and (min-width: 768px) {
  #top .top_reason .reason_desc .desc_upper p {
    margin-top: 4rem;
  }
}
@media print, screen and (min-width: 1024px) {
  #top .top_reason .reason_desc .desc_upper p {
    font-weight: bold;
  }
}
#top .top_reason .reason_desc .desc_lower {
  margin-top: 2rem;
}
@media print, screen and (min-width: 768px) {
  #top .top_reason .reason_desc .desc_lower {
    margin: 4rem auto 0;
  }
}
@media print, screen and (min-width: 1024px) {
  #top .top_reason .reason_desc .desc_lower {
    width: 50%;
  }
}
#top .top_reason .reason_desc .desc_lower figure {
  width: 80%;
  max-width: 500px;
  margin: auto;
}
@media print, screen and (min-width: 1024px) {
  #top .top_reason .reason_desc .desc_lower figure {
    width: 100%;
    max-width: none;
  }
}
#top .top_reason .reason_point {
  scroll-margin-top: 8rem;
  margin-top: 8rem;
}
@media print, screen and (min-width: 1400px) {
  #top .top_reason .reason_point {
    scroll-margin-top: 12rem;
  }
}
#top .top_reason .reason_point h4 {
  position: relative;
  color: #FFF;
  font-size: 3.2rem;
  font-size: min(5vw, 3.2rem);
  font-weight: bold;
  background: -webkit-gradient(linear, left top, right top, from(#21cdd4), to(#3366cc));
  background: linear-gradient(to right, #21cdd4, #3366cc);
  padding: 1rem;
}
@media print, screen and (min-width: 768px) {
  #top .top_reason .reason_point h4 {
    background: -webkit-gradient(linear, left top, right top, color-stop(7.5%, transparent), color-stop(7.5%, #21cdd4), to(#3366cc));
    background: linear-gradient(to right, transparent 7.5%, #21cdd4 7.5%, #3366cc);
  }
}
#top .top_reason .reason_point h4 span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
#top .top_reason .reason_point h4::before {
  content: "";
  display: block;
  width: 80px;
  aspect-ratio: 1/1;
  background-image: url(../img/top/doctor02.webp);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 50%;
  left: -2%;
}
@media print, screen and (min-width: 768px) {
  #top .top_reason .reason_point h4::before {
    width: 15%;
    max-width: 260px;
    bottom: auto;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    z-index: 1;
  }
}
#top .top_reason .reason_point ul {
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media print, screen and (min-width: 768px) {
  #top .top_reason .reason_point ul {
    margin-top: 8rem;
    gap: 4rem 5%;
  }
}
@media print, screen and (min-width: 1024px) {
  #top .top_reason .reason_point ul {
    margin-top: 12rem;
    gap: 8rem 5%;
  }
}
#top .top_reason .reason_point ul li {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  #top .top_reason .reason_point ul li {
    width: 47.5%;
  }
}
@media print, screen and (min-width: 1200px) {
  #top .top_reason .reason_point ul li {
    width: 30%;
  }
}
#top .top_reason .reason_point ul li + li {
  margin-top: 2rem;
}
@media print, screen and (min-width: 768px) {
  #top .top_reason .reason_point ul li + li {
    margin-top: 0;
  }
}
@media print, screen and (min-width: 1024px) {
  #top .top_reason .reason_point ul li + li {
    margin: 0;
  }
}
#top .top_reason .reason_point ul li dl dt {
  position: relative;
}
@media print, screen and (min-width: 768px) {
  #top .top_reason .reason_point ul li dl dt {
    height: 80px;
    display: grid;
    place-items: center start;
    line-height: 1.3;
  }
}
@media print, screen and (min-width: 1024px) {
  #top .top_reason .reason_point ul li dl dt {
    height: 100px;
  }
}
#top .top_reason .reason_point ul li dl dt span.number {
  color: #21cdd4;
  font-size: 5rem;
  font-weight: bold;
  line-height: 1;
  opacity: 0.2;
  position: absolute;
  top: 50%;
  top: -15px;
  left: 0;
}
@media print, screen and (min-width: 768px) {
  #top .top_reason .reason_point ul li dl dt span.number {
    font-size: 8rem;
    top: 50%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}
@media print, screen and (min-width: 1024px) {
  #top .top_reason .reason_point ul li dl dt span.number {
    font-size: 12rem;
  }
}
#top .top_reason .reason_point ul li dl dt span.title {
  font-size: 2.4rem;
  margin-left: 2rem;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  #top .top_reason .reason_point ul li dl dt span.title {
    margin-left: 0;
  }
}
@media print, screen and (min-width: 1024px) {
  #top .top_reason .reason_point ul li dl dt span.title {
    font-size: 3.2rem;
  }
}
@media print, screen and (min-width: 1200px) {
  #top .top_reason .reason_point ul li dl dt span.title {
    font-size: min(2.3vw, 3.6rem);
  }
}
#top .top_reason .reason_point ul li dl dt span.title::before {
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#21cdd4), to(#3366cc));
  background: linear-gradient(to right, #21cdd4, #3366cc);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: bottom;
  position: absolute;
  top: 0;
  left: 0;
}
#top .top_reason .reason_point ul li dl dd {
  font-size: 1.8rem;
  line-height: 2;
}
@media print, screen and (min-width: 768px) {
  #top .top_reason .reason_point ul li dl dd {
    margin-top: 2rem;
  }
}
#top .top_service {
  padding: 6rem 0;
}
@media print, screen and (min-width: 768px) {
  #top .top_service {
    padding: 12rem 0;
  }
}
#top .top_service p.note {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 4rem auto 0;
  font-size: 2.4rem;
}
@media print, screen and (min-width: 768px) {
  #top .top_service p.note {
    margin: 8rem auto 0;
  }
}
@media print, screen and (min-width: 1024px) {
  #top .top_service p.note {
    font-size: min(2.3vw, 3.6rem);
  }
}
#top .top_service .service_list {
  margin-top: 2rem;
}
@media print, screen and (min-width: 768px) {
  #top .top_service .service_list {
    margin-top: 4rem;
  }
}
#top .top_service .service_list ul li {
  font-size: 2rem;
  padding-left: 2.5rem;
  text-indent: -2.5rem;
}
@media print, screen and (min-width: 768px) {
  #top .top_service .service_list ul li {
    padding-left: 8rem;
    text-indent: -8rem;
  }
}
@media print, screen and (min-width: 1024px) {
  #top .top_service .service_list ul li {
    font-weight: bold;
  }
}
#top .top_service .service_list ul li + li {
  margin-top: 2rem;
}
@media print, screen and (min-width: 768px) {
  #top .top_service .service_list ul li + li {
    margin-top: 4rem;
  }
}
#top .top_service .service_list ul li::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../img/top/icon_list.webp);
  background-size: contain;
  margin-right: 0.5rem;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}
@media print, screen and (min-width: 768px) {
  #top .top_service .service_list ul li::before {
    width: 40px;
    height: 40px;
    margin-right: 4rem;
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
  }
}
#top .top_service .service_list p {
  margin-top: 2rem;
  color: #3366cc;
  font-size: 2rem;
  padding-left: 1em;
  text-indent: -1.2em;
}
@media print, screen and (min-width: 768px) {
  #top .top_service .service_list p {
    margin-top: 4rem;
    font-weight: bold;
  }
}
#top .top_plan {
  padding: 6rem 0;
  background: -webkit-gradient(linear, left top, right top, from(#21cdd4), to(#3366cc));
  background: linear-gradient(to right, #21cdd4, #3366cc);
}
@media print, screen and (min-width: 768px) {
  #top .top_plan {
    padding: 12rem 0;
  }
}
#top .top_plan p.note {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 4rem auto 0;
  color: #FFF;
  font-size: 2.4rem;
}
@media print, screen and (min-width: 768px) {
  #top .top_plan p.note {
    margin: 8rem auto 0;
  }
}
@media print, screen and (min-width: 1024px) {
  #top .top_plan p.note {
    font-weight: bold;
    text-align: center;
  }
}
#top .top_plan .plan_list {
  margin: 2rem 0 4rem;
}
@media print, screen and (min-width: 768px) {
  #top .top_plan .plan_list {
    margin: 4rem auto 8rem;
  }
}
#top .top_plan .plan_list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4rem;
}
#top .top_plan .plan_list ul li {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  width: 100%;
  max-width: 440px;
  background-color: #FFF;
  border: 1px solid #FFF;
  border-radius: 10px;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  #top .top_plan .plan_list ul li {
    border: none;
  }
}
#top .top_plan .plan_list ul li h3 {
  color: #FFF;
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  background-color: #3366cc;
  padding: 0.3em 0;
}
@media print, screen and (min-width: 1024px) {
  #top .top_plan .plan_list ul li h3 {
    font-size: 3.2rem;
  }
}
#top .top_plan .plan_list ul li:nth-of-type(1) h3 {
  background-color: #3366cc;
}
#top .top_plan .plan_list ul li:nth-of-type(2) h3 {
  background-color: #217ed4;
}
#top .top_plan .plan_list ul li:nth-of-type(3) h3 {
  background-color: #21cdd4;
}
#top .top_plan .plan_list ul li .plan_desc {
  padding: 1rem 0.5rem;
}
@media print, screen and (min-width: 768px) {
  #top .top_plan .plan_list ul li .plan_desc {
    padding: 2rem 1rem;
  }
}
#top .top_plan .plan_list ul li .plan_desc .when p {
  color: #3366cc;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}
#top .top_plan .plan_list ul li .plan_desc .when span {
  display: block;
  color: #3366cc;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}
#top .top_plan .plan_list ul li .plan_desc .when span:first-of-type {
  margin-top: 10px;
}
#top .top_plan .plan_list ul li .plan_desc dl.price {
  margin-top: 2rem;
}
@media print, screen and (min-width: 768px) {
  #top .top_plan .plan_list ul li .plan_desc dl.price {
    margin-top: 4rem;
  }
}
#top .top_plan .plan_list ul li .plan_desc dl.price dt {
  font-size: 2.4rem;
  text-align: center;
}
#top .top_plan .plan_list ul li .plan_desc dl.price dd {
  font-size: 3.2rem;
  text-align: center;
}
#top .top_plan .plan_list ul li .plan_desc dl.price dd.promotion {
  position: relative;
  color: #ed1c24;
  font-size: 1.8rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
#top .top_plan .plan_list ul li .plan_desc dl.price dd.promotion::before {
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), to(#e7f553));
  background: linear-gradient(to bottom, transparent 50%, #e7f553 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#top .top_plan .plan_list ul li .plan_desc dl.price dd span {
  display: block;
  font-size: 2.8rem;
}
#top .top_plan .plan_list ul li .plan_desc dl.detail,
#top .top_plan .plan_list ul li .plan_desc dl.feature,
#top .top_plan .plan_list ul li .plan_desc dl.conditions {
  margin-top: 20px;
}
@media print, screen and (min-width: 768px) {
  #top .top_plan .plan_list ul li .plan_desc dl.detail,
  #top .top_plan .plan_list ul li .plan_desc dl.feature,
  #top .top_plan .plan_list ul li .plan_desc dl.conditions {
    margin-top: 4rem;
  }
}
#top .top_plan .plan_list ul li .plan_desc dl.detail dt,
#top .top_plan .plan_list ul li .plan_desc dl.feature dt,
#top .top_plan .plan_list ul li .plan_desc dl.conditions dt {
  color: #FFF;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  padding: 0.5rem 0;
}
@media print, screen and (min-width: 768px) {
  #top .top_plan .plan_list ul li .plan_desc dl.detail dt,
  #top .top_plan .plan_list ul li .plan_desc dl.feature dt,
  #top .top_plan .plan_list ul li .plan_desc dl.conditions dt {
    padding: 1rem 0;
  }
}
#top .top_plan .plan_list ul li .plan_desc dl.detail dt.bg_color01,
#top .top_plan .plan_list ul li .plan_desc dl.feature dt.bg_color01,
#top .top_plan .plan_list ul li .plan_desc dl.conditions dt.bg_color01 {
  background-color: #3366cc;
}
#top .top_plan .plan_list ul li .plan_desc dl.detail dt.bg_color02,
#top .top_plan .plan_list ul li .plan_desc dl.feature dt.bg_color02,
#top .top_plan .plan_list ul li .plan_desc dl.conditions dt.bg_color02 {
  background-color: #217ed4;
}
#top .top_plan .plan_list ul li .plan_desc dl.detail dt.bg_color03,
#top .top_plan .plan_list ul li .plan_desc dl.feature dt.bg_color03,
#top .top_plan .plan_list ul li .plan_desc dl.conditions dt.bg_color03 {
  background-color: #21cdd4;
}
#top .top_plan .plan_list ul li .plan_desc dl.detail dt.bg_color04,
#top .top_plan .plan_list ul li .plan_desc dl.feature dt.bg_color04,
#top .top_plan .plan_list ul li .plan_desc dl.conditions dt.bg_color04 {
  background-color: #c1272d;
}
#top .top_plan .plan_list ul li .plan_desc dl.detail dd,
#top .top_plan .plan_list ul li .plan_desc dl.feature dd,
#top .top_plan .plan_list ul li .plan_desc dl.conditions dd {
  position: relative;
  padding: 1rem 0 1rem 1.5rem;
  margin: 0 15px;
  font-size: 1.8rem;
}
@media print, screen and (min-width: 768px) {
  #top .top_plan .plan_list ul li .plan_desc dl.detail dd,
  #top .top_plan .plan_list ul li .plan_desc dl.feature dd,
  #top .top_plan .plan_list ul li .plan_desc dl.conditions dd {
    padding: 2rem 0 2rem 2rem;
  }
}
@media print, screen and (min-width: 1024px) {
  #top .top_plan .plan_list ul li .plan_desc dl.detail dd,
  #top .top_plan .plan_list ul li .plan_desc dl.feature dd,
  #top .top_plan .plan_list ul li .plan_desc dl.conditions dd {
    font-weight: bold;
  }
}
#top .top_plan .plan_list ul li .plan_desc dl.detail dd::before,
#top .top_plan .plan_list ul li .plan_desc dl.feature dd::before,
#top .top_plan .plan_list ul li .plan_desc dl.conditions dd::before {
  content: "・";
  position: absolute;
  left: 0;
}
#top .top_plan .plan_list ul li .plan_desc dl.detail dd span,
#top .top_plan .plan_list ul li .plan_desc dl.feature dd span,
#top .top_plan .plan_list ul li .plan_desc dl.conditions dd span {
  color: #f82930;
  font-size: 1.4rem;
}
#top .top_plan .plan_list ul li .plan_desc dl.conditions dd {
  font-size: 1.6rem;
  padding: 0 0 0 1.5rem;
}
#top .top_plan .plan_list ul li .plan_desc dl.conditions dd:first-of-type {
  margin-top: 1rem;
}
#top .top_voice {
  padding: 6rem 0;
}
@media print, screen and (min-width: 768px) {
  #top .top_voice {
    padding: 12rem 0;
  }
}
#top .top_voice .voice_list {
  margin-top: 3rem;
}
@media print, screen and (min-width: 768px) {
  #top .top_voice .voice_list {
    margin-top: 6rem;
  }
}
#top .top_voice .voice_list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media print, screen and (min-width: 1024px) {
  #top .top_voice .voice_list ul {
    gap: 10rem 0;
  }
}
#top .top_voice .voice_list ul li {
  position: relative;
}
@media print, screen and (min-width: 1024px) {
  #top .top_voice .voice_list ul li {
    width: 48%;
  }
}
#top .top_voice .voice_list ul li + li {
  margin-top: 4rem;
}
@media print, screen and (min-width: 768px) {
  #top .top_voice .voice_list ul li + li {
    margin-top: 8rem;
  }
}
@media print, screen and (min-width: 1024px) {
  #top .top_voice .voice_list ul li + li {
    margin-top: 0;
  }
  #top .top_voice .voice_list ul li + li.even {
    position: relative;
    top: 8rem;
  }
}
#top .top_voice .voice_list ul li figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  position: absolute;
  top: -25px;
}
@media print, screen and (min-width: 768px) {
  #top .top_voice .voice_list ul li figure {
    top: -50px;
  }
}
#top .top_voice .voice_list ul li figure img {
  width: 50px;
}
@media print, screen and (min-width: 768px) {
  #top .top_voice .voice_list ul li figure img {
    width: 100px;
  }
}
#top .top_voice .voice_list ul li figure figcaption {
  font-size: 1.8rem;
  position: relative;
  top: -10px;
}
@media print, screen and (min-width: 768px) {
  #top .top_voice .voice_list ul li figure figcaption {
    margin-top: -1.5rem;
  }
}
@media print, screen and (min-width: 1024px) {
  #top .top_voice .voice_list ul li figure figcaption {
    font-weight: bold;
  }
}
#top .top_voice .voice_list ul li dl {
  margin-left: 2.5rem;
  padding: 2rem 1rem;
  background-color: #3366cc;
  border-radius: 15px;
}
@media print, screen and (min-width: 768px) {
  #top .top_voice .voice_list ul li dl {
    margin-left: 5rem;
    padding: 5rem 2rem;
  }
}
@media print, screen and (min-width: 1024px) {
  #top .top_voice .voice_list ul li dl {
    height: 100%;
  }
  #top .top_voice .voice_list ul li dl:nth-of-type(2) dl dt, #top .top_voice .voice_list ul li dl:nth-of-type(4) dl dt {
    margin-top: 4rem;
  }
}
#top .top_voice .voice_list ul li dl dt {
  color: #FFF;
  font-size: 2.2rem;
  line-height: 2;
}
@media print, screen and (min-width: 1024px) {
  #top .top_voice .voice_list ul li dl dt {
    font-weight: bold;
  }
}
#top .top_voice .voice_list ul li dl dt span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #21cdd4));
  background: linear-gradient(to bottom, transparent 60%, #21cdd4 60%);
  padding-bottom: 3px;
}
#top .top_voice .voice_list ul li dl dd {
  color: #FFF;
  font-size: 1.8rem;
  text-align: justify;
  margin-top: 2rem;
}
@media print, screen and (min-width: 768px) {
  #top .top_voice .voice_list ul li dl dd {
    margin-top: 4rem;
  }
}
@media print, screen and (min-width: 1024px) {
  #top .top_voice .voice_list ul li dl dd {
    font-weight: bold;
  }
}
#top .top_faq {
  padding: 6rem 0;
  background-color: #3366cc;
}
@media print, screen and (min-width: 768px) {
  #top .top_faq {
    padding: 12rem 0;
  }
}
#top .top_faq .faq_list {
  margin-top: 2rem;
}
@media print, screen and (min-width: 768px) {
  #top .top_faq .faq_list {
    margin-top: 4rem;
  }
}
#top .top_faq .faq_list dl dt {
  color: #FFF;
  font-size: 1.8rem;
  text-align: justify;
  text-indent: -1.5em;
  padding: 1rem 2rem 0 3em;
  border-top: 1px solid #FFF;
}
@media print, screen and (min-width: 768px) {
  #top .top_faq .faq_list dl dt {
    text-indent: -1.3em;
    padding: 2rem 4rem 0 4em;
  }
}
@media print, screen and (min-width: 1024px) {
  #top .top_faq .faq_list dl dt {
    font-weight: bold;
  }
}
#top .top_faq .faq_list dl dt::before {
  content: "Q";
  color: #e7f553;
  font-size: 2rem;
  font-weight: bold;
  margin-right: 1rem;
}
@media print, screen and (min-width: 768px) {
  #top .top_faq .faq_list dl dt::before {
    font-size: 2.4rem;
    position: relative;
    top: 2px;
  }
}
#top .top_faq .faq_list dl dd {
  color: #FFF;
  font-size: 1.8rem;
  text-align: justify;
  text-indent: -1.5em;
  padding: 1rem 2rem 1rem 3em;
}
@media print, screen and (min-width: 768px) {
  #top .top_faq .faq_list dl dd {
    text-indent: -1.3em;
    padding: 2rem 4rem 2rem 4em;
  }
}
@media print, screen and (min-width: 1024px) {
  #top .top_faq .faq_list dl dd {
    font-weight: bold;
  }
}
#top .top_faq .faq_list dl dd::before {
  content: "A";
  color: #e7f553;
  font-size: 2rem;
  font-weight: bold;
  margin-right: 1rem;
}
@media print, screen and (min-width: 768px) {
  #top .top_faq .faq_list dl dd::before {
    font-size: 2.4rem;
    position: relative;
    top: 2px;
  }
}
#top .top_faq .faq_list dl dd:last-of-type {
  border-bottom: 1px solid #FFF;
}
#top .top_contact {
  padding: 6rem 0;
}
@media print, screen and (min-width: 768px) {
  #top .top_contact {
    padding: 12rem 0;
  }
}
#top .top_contact p.note {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 2rem auto 0;
  font-size: 1.8rem;
}
@media print, screen and (min-width: 768px) {
  #top .top_contact p.note {
    margin-top: 4rem;
  }
}
@media print, screen and (min-width: 1024px) {
  #top .top_contact p.note {
    font-weight: bold;
  }
}
#top .top_contact p.note span {
  color: #ed1c24;
}
@media print, screen and (min-width: 768px) {
  #top .top_contact p.note span {
    display: block;
    text-align: center;
  }
}
#top .top_contact .contact_form {
  margin-top: 2rem;
}
@media print, screen and (min-width: 768px) {
  #top .top_contact .contact_form {
    margin-top: 8em;
  }
}
#top .top_contact .contact_form form dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#top .top_contact .contact_form form dl + dl {
  margin-top: 1rem;
}
@media print, screen and (min-width: 768px) {
  #top .top_contact .contact_form form dl + dl {
    margin-top: 2em;
  }
}
#top .top_contact .contact_form form dl dt {
  font-size: 1.8rem;
}
@media print, screen and (min-width: 768px) {
  #top .top_contact .contact_form form dl dt {
    width: 28rem;
  }
}
@media print, screen and (min-width: 1024px) {
  #top .top_contact .contact_form form dl dt {
    font-weight: bold;
  }
}
#top .top_contact .contact_form form dl dt.must::after {
  content: "＊";
  color: #ed1c24;
  margin-left: 0.5rem;
}
@media print, screen and (min-width: 768px) {
  #top .top_contact .contact_form form dl:last-of-type dt {
    -ms-flex-item-align: baseline;
        align-self: baseline;
    margin-top: 1rem;
  }
}
#top .top_contact .contact_form form dl dd {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  #top .top_contact .contact_form form dl dd {
    width: calc(100% - 28rem);
  }
}
#top .top_contact .contact_form form dl dd input,
#top .top_contact .contact_form form dl dd textarea {
  width: 100%;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  border: 1px solid #333;
  border-radius: 3px;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media print, screen and (min-width: 768px) {
  #top .top_contact .contact_form form dl dd input,
  #top .top_contact .contact_form form dl dd textarea {
    padding: 1rem 2rem;
  }
}
#top .top_contact .contact_form form dl dd input:hover,
#top .top_contact .contact_form form dl dd textarea:hover {
  background-color: rgb(216, 236, 255);
}
#top .top_contact .contact_form form .privacy_area {
  width: 100%;
  max-width: 1024px;
  margin: 2rem auto 0;
}
@media print, screen and (min-width: 768px) {
  #top .top_contact .contact_form form .privacy_area {
    margin-top: 4rem;
  }
}
#top .top_contact .contact_form form .privacy_area .privacy_desc {
  height: 200px;
  border: 1px solid #1A1A1A;
  border-radius: 5px;
  padding: 1rem 1.5rem;
  overflow-y: scroll;
}
@media print, screen and (min-width: 768px) {
  #top .top_contact .contact_form form .privacy_area .privacy_desc {
    padding: 2rem 6rem;
  }
}
#top .top_contact .contact_form form .privacy_area .privacy_desc h3 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
#top .top_contact .contact_form form .privacy_area .privacy_desc p {
  margin-top: 1rem;
}
@media print, screen and (min-width: 768px) {
  #top .top_contact .contact_form form .privacy_area .privacy_desc p {
    margin-top: 2rem;
  }
}
#top .top_contact .contact_form form .privacy_area .privacy_desc p span {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
}
#top .top_contact .contact_form form .privacy_area .privacy_desc dl {
  margin-top: 1rem;
  display: block;
}
@media print, screen and (min-width: 768px) {
  #top .top_contact .contact_form form .privacy_area .privacy_desc dl {
    margin-top: 2rem;
  }
}
#top .top_contact .contact_form form .privacy_area .privacy_desc dl dt {
  width: 100%;
  font-weight: 500;
}
#top .top_contact .contact_form form .privacy_area .privacy_desc dl dt:not(:first-of-type) {
  margin-top: 1rem;
}
#top .top_contact .contact_form form .privacy_area .privacy_desc dl dd {
  width: 100%;
}
#top .top_contact .contact_form form .privacy_area .accept_box {
  margin-top: 1rem;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  #top .top_contact .contact_form form .privacy_area .accept_box {
    margin-top: 2rem;
  }
}
#top .top_contact .contact_form form .privacy_area .accept_box input {
  margin-right: 0.5rem;
  accent-color: #3366cc;
  cursor: pointer;
}
@media print, screen and (min-width: 768px) {
  #top .top_contact .contact_form form .privacy_area .accept_box input {
    width: 20px;
    height: 20px;
    position: relative;
    top: 2px;
  }
}
#top .top_contact .contact_form form .privacy_area .accept_box label {
  font-size: 1.8rem;
  cursor: pointer;
}
@media print, screen and (min-width: 1024px) {
  #top .top_contact .contact_form form .privacy_area .accept_box label {
    font-weight: bold;
  }
}
#top .top_contact .contact_form form .privacy_area .accept_box label span {
  color: #21cdd4;
  font-weight: bold;
}
#top .top_contact .contact_form form .btn_box {
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}
@media print, screen and (min-width: 768px) {
  #top .top_contact .contact_form form .btn_box {
    margin-top: 8rem;
    gap: 5%;
  }
}
#top .top_contact .contact_form form .btn_box input {
  width: 80%;
  padding: 1rem;
  color: #FFF;
  font-weight: bold;
  text-align: center;
  border-radius: 3px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media print, screen and (min-width: 768px) {
  #top .top_contact .contact_form form .btn_box input {
    width: 47.5%;
    max-width: 400px;
    padding: 2rem;
  }
}
#top .top_contact .contact_form form .btn_box input:first-of-type {
  background-color: #1A1A1A;
}
#top .top_contact .contact_form form .btn_box input:last-of-type {
  background-color: #21cdd4;
}
#top .top_contact .contact_form form .btn_box input:hover {
  opacity: 0.7;
}

/* ========== top　ここまで ========== */
#contact .page_top {
  position: relative;
  padding-top: 70px;
  width: 100%;
  height: 250px;
  background: url(../img/contact/contact_main.webp);
  background-size: cover;
  background-position: 50% 50%;
}
#contact .page_top .page_title {
  width: 100%;
  color: #FFF;
  font-size: 2.4rem;
  text-align: center;
  position: absolute;
  top: 40%;
}
#contact .page_top .page_title span {
  display: block;
  font-size: 4rem;
  font-weight: 500;
}
#contact .breadcrumb {
  padding: 10px 0;
  background-color: #FFF;
}
#contact .breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#contact .breadcrumb ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#contact .breadcrumb ul li:not(:last-of-type)::after {
  content: ">";
  margin: 0 10px;
}
#contact .breadcrumb ul li a {
  color: #3366cc;
}
#contact .breadcrumb ul li a:hover {
  text-decoration: underline;
}
#contact .contact {
  padding: 40px 0;
}
#contact .contact h2.section_title {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}
#contact .contact p.note {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto 0;
  font-size: 1.8rem;
}
#contact .contact.complete p.note {
  margin-bottom: 40px;
}
#contact .contact .contact_form {
  margin-top: 20px;
}
#contact .contact .contact_form form dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#contact .contact .contact_form form dl + dl {
  margin-top: 10px;
}
#contact .contact .contact_form form dl dt {
  font-size: 1.8rem;
}
#contact .contact .contact_form form dl dt.must::after {
  content: "＊";
  color: #ed1c24;
  margin-left: 5px;
}
#contact .contact .contact_form form dl dd {
  width: 100%;
}
#contact .contact .contact_form form dl dd input, #contact .contact .contact_form form dl dd textarea {
  width: 100%;
  font-size: 2rem;
  padding: 5px 10px;
  border: 1px solid #333;
  border-radius: 3px;
}
#contact .contact .contact_form form .privacy_area {
  width: 100%;
  max-width: 1024px;
  margin: 20px auto 0;
}
#contact .contact .contact_form form .privacy_area .privacy_desc {
  height: 200px;
  border: 1px solid #1A1A1A;
  border-radius: 5px;
  padding: 10px 15px;
  overflow-y: scroll;
}
#contact .contact .contact_form form .privacy_area .privacy_desc h3 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
#contact .contact .contact_form form .privacy_area .privacy_desc p {
  margin-top: 10px;
}
#contact .contact .contact_form form .privacy_area .privacy_desc p span {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
}
#contact .contact .contact_form form .privacy_area .privacy_desc dl {
  margin-top: 10px;
  display: block;
}
#contact .contact .contact_form form .privacy_area .privacy_desc dl dt {
  width: 100%;
  font-weight: 500;
}
#contact .contact .contact_form form .privacy_area .privacy_desc dl dt:not(:first-of-type) {
  margin-top: 10px;
}
#contact .contact .contact_form form .privacy_area .privacy_desc dl dd {
  width: 100%;
}
#contact .contact .contact_form form .privacy_area .accept_box {
  margin-top: 10px;
  text-align: center;
}
#contact .contact .contact_form form .privacy_area .accept_box input {
  margin-right: 5px;
  accent-color: #3366cc;
}
#contact .contact .contact_form form .privacy_area .accept_box label {
  font-size: 1.8rem;
}
#contact .contact .contact_form form .privacy_area .accept_box label span {
  color: #21cdd4;
  font-weight: bold;
}
#contact .contact .contact_form form .btn_box {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
#contact .contact .contact_form form .btn_box input {
  width: 80%;
  padding: 10px;
  color: #FFF;
  font-weight: bold;
  text-align: center;
  border-radius: 3px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
#contact .contact .contact_form form .btn_box input:first-of-type {
  background-color: #1A1A1A;
}
#contact .contact .contact_form form .btn_box input:last-of-type {
  background-color: #21cdd4;
}
#contact .contact .contact_form form .btn_box input:hover {
  opacity: 0.7;
}
#contact .contact .top_btn {
  width: 90%;
  max-width: 560px;
  margin: auto;
}
#contact .contact .top_btn a {
  color: #FFF;
  font-size: 2.4rem;
  text-align: center;
  padding: 10px 20px;
  background-color: #21cdd4;
  border-radius: 9999px;
}
#contact .contact .top_btn a::after {
  content: "　＞";
}
#contact .contact .top_btn a:hover {
  opacity: 0.7;
}
@media print, screen and (min-width: 768px) {
  #contact .contact .top_btn a {
    padding: 30px 0;
  }
}
@media print, screen and (min-width: 1024px) {
  #contact .contact .top_btn a {
    font-weight: bold;
  }
}

@media print, screen and (min-width: 768px) {
  #contact .page_top {
    height: 350px;
  }
  #contact .contact {
    padding: 80px 0;
  }
  #contact .contact h2.section_title {
    font-size: 3.2rem;
  }
  #contact .contact p.note {
    margin-top: 40px;
  }
  #contact .contact p.note span {
    display: block;
    text-align: center;
  }
  #contact .contact .contact_form {
    margin-top: 80px;
  }
  #contact .contact .contact_form form dl + dl {
    margin-top: 20px;
  }
  #contact .contact .contact_form form dl dt {
    width: 280px;
  }
  #contact .contact .contact_form form dl:last-of-type dt {
    -ms-flex-item-align: baseline;
        align-self: baseline;
    margin-top: 10px;
  }
  #contact .contact .contact_form form dl dd {
    width: calc(100% - 280px);
  }
  #contact .contact .contact_form form dl dd input, #contact .contact .contact_form form dl dd textarea {
    padding: 10px 20px;
  }
  #contact .contact .contact_form form .privacy_area {
    margin: 40px auto 0;
  }
  #contact .contact .contact_form form .privacy_area .privacy_desc {
    padding: 20px 60px;
  }
  #contact .contact .contact_form form .privacy_area .privacy_desc p {
    margin-top: 20px;
  }
  #contact .contact .contact_form form .privacy_area .privacy_desc dl {
    margin-top: 20px;
  }
  #contact .contact .contact_form form .privacy_area .accept_box {
    margin-top: 20px;
    text-align: center;
  }
  #contact .contact .contact_form form .privacy_area .accept_box input {
    width: 20px;
    height: 20px;
    position: relative;
    top: 2px;
  }
  #contact .contact .contact_form form .btn_box {
    margin-top: 80px;
    gap: 5%;
  }
  #contact .contact .contact_form form .btn_box input {
    width: 47.5%;
    max-width: 400px;
    padding: 20px;
  }
}
@media print, screen and (min-width: 1024px) {
  #contact .page_top {
    height: 500px;
  }
  #contact .contact p.note {
    font-weight: bold;
    text-align: center;
  }
  #contact .contact .contact_form form dl dt {
    font-weight: bold;
  }
  #contact .contact .contact_form form .accept_box label {
    font-weight: bold;
  }
}
#ssl .page_top {
  position: relative;
  padding-top: 70px;
  width: 100%;
  height: 250px;
  background: url(../img/ssl/ssl_main.webp);
  background-size: cover;
  background-position: 50% 50%;
}
#ssl .page_top .page_title {
  width: 100%;
  color: #FFF;
  font-size: 2.4rem;
  text-align: center;
  position: absolute;
  top: 40%;
}
#ssl .page_top .page_title span {
  display: block;
  font-size: 4rem;
  font-weight: 500;
}
#ssl .breadcrumb {
  padding: 10px 0;
  background-color: #FFF;
}
#ssl .breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#ssl .breadcrumb ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#ssl .breadcrumb ul li:not(:last-of-type)::after {
  content: ">";
  margin: 0 10px;
}
#ssl .breadcrumb ul li a {
  color: #3366cc;
}
#ssl .breadcrumb ul li a:hover {
  text-decoration: underline;
}

.ssl-main {
  padding: 80px 0;
}
.ssl-main .ssl-main-top {
  display: grid;
  place-items: center;
  gap: 20px 0;
  margin-bottom: 64px;
}
.ssl-main .ssl-main-top h3 {
  font-size: min(4.8rem, 7vw);
  font-weight: bold;
}
.ssl-main .ssl-main-top figure {
  width: 12rem;
}
.ssl-main .ssl-main-top p {
  font-size: 1.8rem;
  text-align: center;
}
.ssl-main .ssl-main-bottom ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 4%;
}
.ssl-main .ssl-main-bottom ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.ssl-main .ssl-main-bottom ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 10px;
  position: relative;
  color: #3366cc;
  font-size: 1.8rem;
  font-weight: bold;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.ssl-main .ssl-main-bottom ul li a:hover {
  opacity: 0.5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.ssl-main .ssl-main-bottom ul li .arrow::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #3366cc;
  border-left: 2px solid #3366cc;
  -webkit-transform: translate(10px, 0px) rotate(-135deg);
          transform: translate(10px, 0px) rotate(-135deg);
}
.ssl-main .ssl-main-bottom ul li:first-child a::before {
  content: "";
  display: block;
  background: url(../img/ssl/button01.webp) no-repeat center/cover;
  width: 32px;
  height: 32px;
}
.ssl-main .ssl-main-bottom ul li:nth-of-type(2) a::before {
  content: "";
  display: block;
  background: url(../img/ssl/button02.webp) no-repeat center/cover;
  width: 32px;
  height: 32px;
}
.ssl-main .ssl-main-bottom ul li:last-child a::before {
  content: "";
  display: block;
  background: url(../img/ssl/button03.webp) no-repeat center/cover;
  width: 32px;
  height: 32px;
}

.contents-title {
  display: grid;
  place-items: center;
  margin-bottom: 40px;
}
.contents-title h3 {
  font-size: min(4.8rem, 7vw);
  font-weight: bold;
  line-height: 1.4;
  color: #217ED4;
}
.contents-title p {
  font-size: 1.8rem;
  font-weight: bold;
}

.ssl-contents01 {
  margin-bottom: 80px;
}

.ssl-contents02 {
  padding: 80px 0;
}

.ssl-contents03 {
  margin: 80px 0;
}

span.annotation01 {
  font-size: 12px;
  vertical-align: top;
  color: #21CDD4;
  font-weight: bold;
}

.annotation02 {
  color: #21CDD4;
  font-weight: bold;
  margin-top: 40px;
}

.ssl-contents01 .ssl-contents01-block .hoge-item {
  margin-bottom: 64px;
}
.ssl-contents01 .ssl-contents01-block .hoge-item .img-box {
  display: grid;
  place-items: center;
}
.ssl-contents01 .ssl-contents01-block .hoge-item .img-box img {
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  max-width: 640px;
  border: 1px solid #333;
}
.ssl-contents01 .ssl-contents01-block .hoge-item .img-box img:hover {
  opacity: 0.5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.ssl-contents01 .ssl-contents01-block .hoge-item .img-box span {
  font-weight: bold;
  font-size: 1.6rem;
}
.ssl-contents01 .ssl-contents01-block .hoge-item .img-box p {
  font-size: 2.4rem;
  font-weight: bold;
  color: #3366CC;
  padding-top: 10px;
}
.ssl-contents01 .ssl-contents01-block .modal-block {
  display: none;
  position: fixed;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}
.ssl-contents01 .ssl-contents01-block .modal-block .img-section {
  position: relative;
  margin: 0 auto;
  padding: 20px;
  max-width: 1400px;
  width: 100%;
}
.ssl-contents01 .ssl-contents01-block .modal-block .img-section span {
  position: absolute;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  top: 0;
  right: 0;
  cursor: pointer;
}
.ssl-contents01 .ssl-contents01-block .modal-block .img-section span::before {
  content: "";
  background: url(../img/ssl/mark.webp) no-repeat center/contain;
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  left: -55px;
  top: 25px;
  z-index: 100000;
}
.ssl-contents01 .ssl-contents01-block .modal-block .img-section img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ssl-contents01 .ssl-contents01-block dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 2%;
  margin-bottom: 40px;
}
.ssl-contents01 .ssl-contents01-block dl dt, .ssl-contents01 .ssl-contents01-block dl dd {
  width: 100%;
}
.ssl-contents01 .ssl-contents01-block dl dt figure figcaption, .ssl-contents01 .ssl-contents01-block dl dd figure figcaption {
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  font-weight: bold;
  color: #3366CC;
  padding-top: 10px;
}
.ssl-contents01 .ssl-contents01-block p.top {
  margin-bottom: 40px;
}
.ssl-contents01 .ssl-contents01-block p.bottom {
  color: #21CDD4;
  font-weight: bold;
}

.ssl-contents02 {
  background: rgba(51, 102, 204, 0.1);
}
.ssl-contents02 .ssl-contents02-block ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 80px 2%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.ssl-contents02 .ssl-contents02-block ul li {
  width: 100%;
}
.ssl-contents02 .ssl-contents02-block ul li h4 {
  font-size: min(3.2rem, 6vw);
  font-weight: bold;
  display: grid;
  place-items: center;
}
.ssl-contents02 .ssl-contents02-block ul li figure {
  margin: 20px 0;
  display: grid;
  place-items: center;
}
.ssl-contents02 .ssl-contents02-block ul li figure img {
  max-width: 120px;
}

.ssl-contents03 .ssl-contents03-block ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px 4%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.ssl-contents03 .ssl-contents03-block ul li {
  width: 100%;
}
.ssl-contents03 .ssl-contents03-block ul li figure {
  max-width: 280px;
}
.ssl-contents03 .ssl-contents03-block ul li:first-child {
  display: grid;
  place-items: center;
}

@media print, screen and (min-width: 500px) {
  .ssl-main .ssl-main-top figure {
    width: 20rem;
  }
  .ssl-main .ssl-main-bottom ul li {
    width: 46%;
  }
  .ssl-contents02 .ssl-contents02-block ul li {
    width: 48%;
  }
  .ssl-contents02 .ssl-contents02-block ul li figure img {
    max-width: 160px;
  }
  .ssl-contents03 .ssl-contents03-block ul li {
    width: 46%;
  }
  .ssl-contents03 .ssl-contents03-block ul li figure {
    max-width: 450px;
  }
}
@media print, screen and (min-width: 768px) {
  #ssl .page_top {
    height: 350px;
  }
  .ssl-main {
    padding: 150px 0;
  }
  .ssl-main .ssl-main-top {
    margin-bottom: 100px;
  }
  .ssl-main .ssl-main-bottom ul {
    gap: 40px 8%;
  }
  .ssl-main .ssl-main-bottom ul li {
    width: auto;
  }
  .ssl-main .ssl-main-bottom ul li:first-child a::before,
  .ssl-main .ssl-main-bottom ul li:nth-of-type(2) a::before,
  .ssl-main .ssl-main-bottom ul li:last-child a::before {
    width: 56px;
    height: 56px;
  }
  .contents-title {
    margin-bottom: 80px;
  }
  .ssl-contents01 {
    margin-bottom: 150px;
  }
  .ssl-contents02 {
    padding: 150px 0;
  }
  .ssl-contents03 {
    margin: 150px 0;
  }
  .ssl-contents01 .ssl-contents01-block dl dt, .ssl-contents01 .ssl-contents01-block dl dd {
    width: 48%;
  }
}
@media print, screen and (min-width: 1024px) {
  #ssl .page_top {
    height: 500px;
  }
}
.contents-title {
  display: grid;
  place-items: center;
  margin-bottom: 40px;
}
.contents-title h3 {
  font-size: min(4.8rem, 7vw);
  font-weight: bold;
  line-height: 1.4;
  color: #217ED4;
}
.contents-title p {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: initial;
  word-break: break-all;
}

.multidevice-contents01 {
  margin-bottom: 80px;
}

.multidevice-contents02 {
  padding: 80px 0;
}

.multidevice-contents03 {
  margin: 80px 0;
}

span.annotation01 {
  font-size: 12px;
  vertical-align: top;
  color: #21CDD4;
  font-weight: bold;
}

.annotation02 {
  color: #21CDD4;
  font-weight: bold;
  margin-top: 40px;
}

.color {
  color: #21CDD4;
  font-weight: bold;
  word-break: break-all;
}

#multidevice .page_top {
  position: relative;
  padding-top: 70px;
  width: 100%;
  height: 250px;
  background: url(../img/multidevice/multidevice_main.webp);
  background-size: cover;
  background-position: 50% 50%;
}
#multidevice .page_top .page_title {
  width: 100%;
  color: #FFF;
  font-size: 2.4rem;
  text-align: center;
  position: absolute;
  top: 40%;
}
#multidevice .page_top .page_title span {
  display: block;
  font-size: 4rem;
  font-weight: 500;
}
#multidevice .breadcrumb {
  padding: 10px 0;
  background-color: #FFF;
}
#multidevice .breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#multidevice .breadcrumb ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#multidevice .breadcrumb ul li:not(:last-of-type)::after {
  content: ">";
  margin: 0 10px;
}
#multidevice .breadcrumb ul li a {
  color: #3366cc;
}
#multidevice .breadcrumb ul li a:hover {
  text-decoration: underline;
}

.multidevice-main {
  padding: 80px 0;
}
.multidevice-main .multidevice-main-top {
  display: grid;
  place-items: center;
  gap: 20px 0;
  margin-bottom: 64px;
}
.multidevice-main .multidevice-main-top h3 {
  font-size: min(4.8rem, 7vw);
  font-weight: bold;
}
.multidevice-main .multidevice-main-top figure {
  width: 12rem;
}
.multidevice-main .multidevice-main-top p {
  font-size: 1.8rem;
  text-align: center;
}
.multidevice-main .multidevice-main-bottom ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 4%;
}
.multidevice-main .multidevice-main-bottom ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.multidevice-main .multidevice-main-bottom ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 10px;
  position: relative;
  color: #3366cc;
  font-size: 1.8rem;
  font-weight: bold;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.multidevice-main .multidevice-main-bottom ul li a:hover {
  opacity: 0.5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.multidevice-main .multidevice-main-bottom ul li .arrow::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #3366cc;
  border-left: 2px solid #3366cc;
  -webkit-transform: translate(10px, 0px) rotate(-135deg);
          transform: translate(10px, 0px) rotate(-135deg);
}
.multidevice-main .multidevice-main-bottom ul li:first-child a::before {
  content: "";
  display: block;
  background: url(../img/multidevice/button01.webp) no-repeat center/cover;
  width: 32px;
  height: 32px;
}
.multidevice-main .multidevice-main-bottom ul li:nth-of-type(2) a::before {
  content: "";
  display: block;
  background: url(../img/multidevice/button02.webp) no-repeat center/cover;
  width: 32px;
  height: 32px;
}
.multidevice-main .multidevice-main-bottom ul li:last-child a::before {
  content: "";
  display: block;
  background: url(../img/multidevice/button03.webp) no-repeat center/cover;
  width: 32px;
  height: 32px;
}

.multidevice-contents01 .multidevice-contents01-block ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px 4%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.multidevice-contents01 .multidevice-contents01-block ul li {
  width: 100%;
}
.multidevice-contents01 .multidevice-contents01-block ul li figure {
  max-width: 320px;
}
.multidevice-contents01 .multidevice-contents01-block ul li:first-child {
  display: grid;
  place-items: center;
}

.multidevice-contents02 {
  background: rgba(51, 102, 204, 0.1);
}
.multidevice-contents02 .multidevice-contents02-block > p {
  margin-bottom: 40px;
}
.multidevice-contents02 .multidevice-contents02-block ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 80px 2%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.multidevice-contents02 .multidevice-contents02-block ul li {
  width: 100%;
}
.multidevice-contents02 .multidevice-contents02-block ul li h4 {
  font-size: min(3.2rem, 6vw);
  font-weight: bold;
  display: grid;
  place-items: center;
}
.multidevice-contents02 .multidevice-contents02-block ul li figure {
  margin: 20px 0;
  display: grid;
  place-items: center;
}
.multidevice-contents02 .multidevice-contents02-block ul li figure img {
  max-width: 120px;
}

.multidevice-contents03 .multidevice-contents03-block > p {
  text-align: center;
  margin-bottom: 40px;
}
.multidevice-contents03 .multidevice-contents03-block ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 2%;
}
.multidevice-contents03 .multidevice-contents03-block ul li {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.multidevice-contents03 .multidevice-contents03-block ul li p {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.multidevice-contents03 .multidevice-contents03-block ul li figure {
  text-align: center;
}
.multidevice-contents03 .multidevice-contents03-block ul li figure img {
  max-width: 100%;
  width: auto;
  border: 1px solid #333;
}
.multidevice-contents03 .multidevice-contents03-block ul li .block-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4%;
}
.multidevice-contents03 .multidevice-contents03-block ul li .block-title span {
  color: #fff;
  text-align: center;
  background: #3366CC;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.2;
  border-radius: 200px;
  padding: 17px 15px;
}
.multidevice-contents03 .multidevice-contents03-block ul li .block-title h4 {
  color: #3366CC;
  font-weight: bold;
  font-size: 2rem;
}
.multidevice-contents03 .multidevice-contents03-block p.last {
  color: #3366CC;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-top: 40px;
}
.multidevice-contents03 .multidevice-contents03-block p.last a {
  display: inline-block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.multidevice-contents03 .multidevice-contents03-block p.last a:hover {
  opacity: 0.5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media print, screen and (min-width: 500px) {
  .multidevice-main .multidevice-main-top figure {
    width: 20rem;
  }
  .multidevice-main .multidevice-main-bottom ul li {
    width: 46%;
  }
  .multidevice-contents01 .multidevice-contents01-block ul li {
    width: 46%;
  }
  .multidevice-contents01 .multidevice-contents01-block ul li figure {
    max-width: 570px;
  }
  .multidevice-contents02 .multidevice-contents02-block ul li {
    width: 48%;
  }
  .multidevice-contents02 .multidevice-contents02-block ul li figure img {
    max-width: 160px;
  }
}
@media print, screen and (min-width: 768px) {
  .contents-title {
    margin-bottom: 80px;
  }
  .multidevice-contents01 {
    margin-bottom: 150px;
  }
  .multidevice-contents02 {
    padding: 150px 0;
  }
  .multidevice-contents03 {
    margin: 150px 0;
  }
  #multidevice .page_top {
    height: 350px;
  }
  .multidevice-main {
    padding: 150px 0;
  }
  .multidevice-main .multidevice-main-top {
    margin-bottom: 100px;
  }
  .multidevice-main .multidevice-main-bottom ul {
    gap: 40px 8%;
  }
  .multidevice-main .multidevice-main-bottom ul li {
    width: auto;
  }
  .multidevice-main .multidevice-main-bottom ul li:first-child a::before,
  .multidevice-main .multidevice-main-bottom ul li:nth-of-type(2) a::before,
  .multidevice-main .multidevice-main-bottom ul li:last-child a::before {
    width: 56px;
    height: 56px;
  }
  .multidevice-contents02 .multidevice-contents02-block > p {
    margin-bottom: 80px;
  }
  .multidevice-contents03 .multidevice-contents03-block > p {
    margin-bottom: 80px;
  }
  .multidevice-contents03 .multidevice-contents03-block ul {
    gap: 80px 2%;
  }
  .multidevice-contents03 .multidevice-contents03-block ul li {
    width: 48%;
  }
}
@media print, screen and (min-width: 1024px) {
  #multidevice .page_top {
    height: 500px;
  }
}
#bitone header {
  background-color: rgba(33, 205, 212, 0.9);
}
#bitone h2.common_title {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
@media print, screen and (min-width: 768px) {
  #bitone h2.common_title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 2rem;
  }
}
#bitone h2.common_title figure.deco {
  height: 2.5rem;
}
#bitone h2.common_title figure.deco.exception {
  height: 4rem;
}
#bitone h2.common_title figure.deco img {
  width: auto;
  height: 100%;
}
#bitone h2.common_title figure.title {
  height: 6.5rem;
}
@media print, screen and (min-width: 560px) {
  #bitone h2.common_title figure.title {
    height: 10rem;
  }
}
@media print, screen and (min-width: 1024px) {
  #bitone h2.common_title figure.title {
    height: 12rem;
  }
}
#bitone h2.common_title figure.title img {
  width: auto;
  height: 100%;
}
#bitone section.fv {
  padding-top: 8rem;
}
@media print, screen and (min-width: 1400px) {
  #bitone section.fv {
    padding-top: 12rem;
  }
}
#bitone section.fv .logo_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#bitone section.fv .logo_area figure {
  width: 45%;
  padding: 0 1rem;
  margin-top: 1rem;
}
@media print, screen and (min-width: 768px) {
  #bitone section.fv .logo_area figure {
    padding: 0 1rem 0 2rem;
  }
}
@media print, screen and (min-width: 1200px) {
  #bitone section.fv .logo_area figure {
    padding: 0 1rem 0 4rem;
    margin-top: 3rem;
  }
}
#bitone section.fv .logo_area p {
  width: 55%;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  color: #2b4ea0;
  font-size: min(3.25vw, 10rem);
  font-weight: bold;
  text-align: center;
  background-color: #c2e4e6;
  padding: 1rem 0;
}
@media print, screen and (min-width: 1200px) {
  #bitone section.fv .logo_area p {
    padding: 2rem 0;
  }
}
#bitone section.fv figure.only_pc {
  display: none;
}
@media print, screen and (min-width: 768px) {
  #bitone section.fv figure.only_pc {
    display: block;
    background-image: url(../img/bitone/figure_pc_bg.webp);
    background-size: contain;
    background-position: center 95%;
  }
}
@media print, screen and (min-width: 1600px) {
  #bitone section.fv figure.only_pc {
    background-size: 100% 510px;
  }
}
#bitone section.fv figure.only_pc img {
  display: block;
  width: 95%;
  max-width: 1500px;
  margin: auto;
}
@media print, screen and (min-width: 768px) {
  #bitone section.fv .hidden_area {
    position: absolute;
    left: -200%;
  }
}
#bitone section.fv .hidden_area h2 {
  color: #2b4ea0;
  font-size: 4rem;
  font-size: min(4.8vw, 4rem);
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}
#bitone section.fv .hidden_area h2 span {
  font-size: 6rem;
  font-size: min(8vw, 6rem);
}
#bitone section.fv .hidden_area h3 {
  margin-top: 1rem;
  color: #fff;
  font-size: min(4.5vw, 4.5rem);
  font-weight: bold;
  text-align: center;
  background-color: #2b4ea0;
}
#bitone section.fv .hidden_area p {
  margin-top: 2rem;
  font-size: min(4.5vw, 3.2rem);
  font-weight: bold;
  text-align: center;
}
#bitone section.fv .hidden_area p span {
  color: #2b4ea0;
  font-size: min(6vw, 4rem);
  font-weight: bold;
  background-color: #f7b52c;
  padding: 0 0.5rem;
}
#bitone section.fv .hidden_area .if {
  position: absolute;
  left: -200%;
}
#bitone section.fv .hidden_area figure.only_sp {
  margin-top: 1rem;
  padding-bottom: 5%;
  background-image: url(../img/bitone/figure_sp_bg.webp);
  background-size: contain;
  background-position: bottom;
}
@media print, screen and (min-width: 768px) {
  #bitone section.fv .hidden_area figure.only_sp {
    display: none;
  }
}
#bitone section.fv .hidden_area figure.only_sp img {
  display: block;
  width: 95%;
  margin: auto;
}
#bitone section.merit {
  margin-top: 4rem;
}
@media print, screen and (min-width: 1200px) {
  #bitone section.merit {
    margin-top: 6rem;
  }
}
#bitone section.merit ul.merit_list {
  margin-top: 2rem;
  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;
  gap: 2rem 0;
}
@media print, screen and (min-width: 768px) {
  #bitone section.merit ul.merit_list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 3rem 0;
  }
}
@media print, screen and (min-width: 1024px) {
  #bitone section.merit ul.merit_list {
    margin-top: 4rem;
  }
}
#bitone section.merit ul.merit_list li {
  width: 100%;
  max-width: 50rem;
  background-color: #c2e4e6;
  padding: 1rem;
}
@media print, screen and (min-width: 768px) {
  #bitone section.merit ul.merit_list li {
    width: 48.5%;
    max-width: none;
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }
}
#bitone section.merit ul.merit_list li dl {
  border: 0.1rem solid #2b4ea0;
  padding: 1rem;
  height: 100%;
}
#bitone section.merit ul.merit_list li dl dt {
  color: #2b4ea0;
  font-size: 3.2rem;
  font-size: min(6vw, 3.2rem);
  font-weight: bold;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  #bitone section.merit ul.merit_list li dl dt {
    font-size: min(3vw, 3.2rem);
  }
}
#bitone section.merit ul.merit_list li dl dt span {
  display: block;
  font-size: 2.6rem;
  font-size: min(4.5vw, 2.6rem);
}
@media print, screen and (min-width: 768px) {
  #bitone section.merit ul.merit_list li dl dt span {
    font-size: min(2.5vw, 2.6rem);
  }
}
#bitone section.merit ul.merit_list li dl dd {
  margin-top: 1rem;
  font-size: 2rem;
  font-size: min(4vw, 2rem);
}
@media print, screen and (min-width: 768px) {
  #bitone section.merit ul.merit_list li dl dd {
    font-size: min(1.85vw, 2rem);
    text-align: center;
  }
}
#bitone section.merit ul.merit_list li dl dd span {
  display: block;
  color: #e60012;
  font-size: 1.4rem;
}
#bitone section.function {
  margin-top: 6rem;
}
@media print, screen and (min-width: 1200px) {
  #bitone section.function {
    margin-top: 10rem;
  }
}
#bitone section.function ul.function_list {
  margin-top: 2rem;
  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;
  gap: 2rem 0;
}
@media print, screen and (min-width: 768px) {
  #bitone section.function ul.function_list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media print, screen and (min-width: 1024px) {
  #bitone section.function ul.function_list {
    margin-top: 4rem;
  }
}
#bitone section.function ul.function_list li {
  width: 100%;
  max-width: 55rem;
  background-color: #2db8bf;
  padding: 2rem;
}
@media print, screen and (min-width: 768px) {
  #bitone section.function ul.function_list li {
    width: 32%;
  }
}
#bitone section.function ul.function_list li dl dt {
  color: #fff;
  font-size: 3.8rem;
  font-size: min(6vw, 3.8rem);
  font-weight: bold;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  #bitone section.function ul.function_list li dl dt {
    font-size: min(3vw, 3.8rem);
  }
}
@media print, screen and (min-width: 768px) {
  #bitone section.function ul.function_list li dl dt span {
    display: none;
  }
}
#bitone section.function ul.function_list li dl dd {
  margin-top: 1rem;
  font-size: 2.4rem;
  font-size: min(4.5vw, 2.4rem);
  text-align: center;
  background-color: #fff;
  padding: 1rem 0.5rem;
}
@media print, screen and (min-width: 768px) {
  #bitone section.function ul.function_list li dl dd {
    font-size: min(2vw, 2.4rem);
    padding: 2rem 0.5rem;
  }
}
#bitone section.upload {
  margin-top: 6rem;
}
@media print, screen and (min-width: 1200px) {
  #bitone section.upload {
    margin-top: 10rem;
  }
}
#bitone section.upload ul.upload_flow {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media print, screen and (min-width: 1024px) {
  #bitone section.upload ul.upload_flow {
    margin-top: 10rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
#bitone section.upload ul.upload_flow li.flow_area {
  position: relative;
  margin-left: 6rem;
}
@media print, screen and (min-width: 500px) {
  #bitone section.upload ul.upload_flow li.flow_area {
    margin-left: 10rem;
  }
}
@media print, screen and (min-width: 1024px) {
  #bitone section.upload ul.upload_flow li.flow_area {
    margin-left: 0;
  }
}
#bitone section.upload ul.upload_flow li.flow_area::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#bitone section.upload ul.upload_flow li.flow_area span.number {
  position: absolute;
  top: 10%;
  left: -5rem;
  z-index: -10;
  display: grid;
  place-items: center left;
  padding-left: 1rem;
  width: 8rem;
  height: 8rem;
  background-color: #2b4ea0;
  border-radius: 50%;
  color: #f8b62d;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1;
}
@media print, screen and (min-width: 500px) {
  #bitone section.upload ul.upload_flow li.flow_area span.number {
    left: -7.5rem;
    width: 12rem;
    height: 12rem;
    font-size: 5rem;
  }
}
@media print, screen and (min-width: 1024px) {
  #bitone section.upload ul.upload_flow li.flow_area span.number {
    top: auto;
    bottom: calc(100% - 7rem);
    width: 15rem;
    height: 15rem;
    place-items: start center;
    padding-left: 0;
    padding-top: 2rem;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
@media print, screen and (min-width: 1024px) {
  #bitone section.upload ul.upload_flow li.flow_area .flow {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
}
#bitone section.upload ul.upload_flow li.flow_area .flow figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1rem;
}
#bitone section.upload ul.upload_flow li.flow_area .flow figure + figure {
  margin-top: 1rem;
}
#bitone section.upload ul.upload_flow li.flow_area .flow figure img {
  width: 4.5rem;
}
@media print, screen and (min-width: 500px) {
  #bitone section.upload ul.upload_flow li.flow_area .flow figure img {
    width: 6rem;
  }
}
@media print, screen and (min-width: 1024px) {
  #bitone section.upload ul.upload_flow li.flow_area .flow figure img {
    width: 4.5rem;
  }
}
#bitone section.upload ul.upload_flow li.flow_area .flow figure figcaption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  color: #2b4ea0;
  font-size: 4rem;
  font-size: min(3.5vw, 4rem);
  font-weight: bold;
}
@media print, screen and (min-width: 1024px) {
  #bitone section.upload ul.upload_flow li.flow_area .flow figure figcaption {
    font-size: min(1.75vw, 4rem);
  }
}
#bitone section.upload ul.upload_flow li.flow_area .flow figure figcaption span.bg {
  color: #f8b62d;
  font-size: 5rem;
  font-size: min(5vw, 5rem);
  font-weight: bold;
  line-height: 1;
  background-color: #2b4ea0;
  padding: 0.5rem;
}
@media print, screen and (min-width: 1024px) {
  #bitone section.upload ul.upload_flow li.flow_area .flow figure figcaption span.bg {
    font-size: min(1.5vw, 5rem);
  }
}
#bitone section.upload ul.upload_flow li.flow_area.area01 {
  padding: 2rem 8% 5rem;
}
@media print, screen and (min-width: 500px) {
  #bitone section.upload ul.upload_flow li.flow_area.area01 {
    padding: 4rem 8% 6rem;
  }
}
@media print, screen and (min-width: 1024px) {
  #bitone section.upload ul.upload_flow li.flow_area.area01 {
    padding: 2rem;
    width: calc(30% + 4rem);
  }
}
@media print, screen and (min-width: 1200px) {
  #bitone section.upload ul.upload_flow li.flow_area.area01 {
    padding: 4rem 2rem;
  }
}
#bitone section.upload ul.upload_flow li.flow_area.area01::before {
  background-color: #c2e4e6;
  clip-path: polygon(100% 0, 100% calc(100% - 4rem), 50% 100%, 0 calc(100% - 4rem), 0 0);
}
@media print, screen and (min-width: 500px) {
  #bitone section.upload ul.upload_flow li.flow_area.area01::before {
    clip-path: polygon(100% 0, 100% calc(100% - 6rem), 50% 100%, 0 calc(100% - 6rem), 0 0);
  }
}
@media print, screen and (min-width: 1024px) {
  #bitone section.upload ul.upload_flow li.flow_area.area01::before {
    clip-path: polygon(calc(100% - 4rem) 0, 100% 50%, calc(100% - 4rem) 100%, 0 100%, 0 0);
  }
}
#bitone section.upload ul.upload_flow li.flow_area.area02 {
  padding: 6rem 8% 5rem;
  margin-top: -3rem;
}
@media print, screen and (min-width: 500px) {
  #bitone section.upload ul.upload_flow li.flow_area.area02 {
    padding: 8rem 8% 6rem;
    margin-top: -5rem;
  }
}
@media print, screen and (min-width: 1024px) {
  #bitone section.upload ul.upload_flow li.flow_area.area02 {
    margin-top: 0;
    margin-left: -3rem;
    padding: 2rem;
    width: calc(30% + 8rem);
  }
}
@media print, screen and (min-width: 1200px) {
  #bitone section.upload ul.upload_flow li.flow_area.area02 {
    padding: 4rem 2rem;
  }
}
#bitone section.upload ul.upload_flow li.flow_area.area02::before {
  background-color: #9fd6d9;
  clip-path: polygon(50% 4rem, 100% 0, 100% calc(100% - 4rem), 50% 100%, 0 calc(100% - 4rem), 0 0);
}
@media print, screen and (min-width: 500px) {
  #bitone section.upload ul.upload_flow li.flow_area.area02::before {
    clip-path: polygon(50% 6rem, 100% 0, 100% calc(100% - 6rem), 50% 100%, 0 calc(100% - 6rem), 0 0);
  }
}
@media print, screen and (min-width: 1024px) {
  #bitone section.upload ul.upload_flow li.flow_area.area02::before {
    clip-path: polygon(0 0, calc(100% - 4rem) 0%, 100% 50%, calc(100% - 4rem) 100%, 0 100%, 4rem 50%);
  }
}
#bitone section.upload ul.upload_flow li.flow_area.area03 {
  padding: 6rem 8% 8rem;
  margin-top: -3rem;
}
@media print, screen and (min-width: 500px) {
  #bitone section.upload ul.upload_flow li.flow_area.area03 {
    padding: 8rem 8% 10rem;
    margin-top: -5rem;
  }
}
@media print, screen and (min-width: 1024px) {
  #bitone section.upload ul.upload_flow li.flow_area.area03 {
    margin-top: 0;
    margin-left: -3rem;
    padding: 2rem;
    width: 40%;
  }
}
@media print, screen and (min-width: 1200px) {
  #bitone section.upload ul.upload_flow li.flow_area.area03 {
    padding: 4rem 2rem;
  }
}
#bitone section.upload ul.upload_flow li.flow_area.area03::before {
  background-color: #63c2c8;
  clip-path: polygon(50% 4rem, 100% 0, 100% 100%, 0 100%, 0 0);
}
@media print, screen and (min-width: 500px) {
  #bitone section.upload ul.upload_flow li.flow_area.area03::before {
    clip-path: polygon(50% 6rem, 100% 0, 100% 100%, 0 100%, 0 0);
  }
}
@media print, screen and (min-width: 1024px) {
  #bitone section.upload ul.upload_flow li.flow_area.area03::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 4rem 50%);
  }
}
#bitone section.upload ul.upload_flow li.flow_area.area03 .flow {
  position: relative;
}
@media print, screen and (min-width: 1024px) {
  #bitone section.upload ul.upload_flow li.flow_area.area03 .flow {
    margin-left: 10%;
  }
}
#bitone section.upload ul.upload_flow li.flow_area.area03 .flow figure figcaption {
  position: relative;
}
#bitone section.upload ul.upload_flow li.flow_area.area03 .flow figure figcaption span.shadow {
  color: #2b4ea0;
  font-size: 5rem;
  font-size: min(5vw, 5rem);
  text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff;
}
@media print, screen and (min-width: 1024px) {
  #bitone section.upload ul.upload_flow li.flow_area.area03 .flow figure figcaption span.shadow {
    font-size: min(1.75vw, 5rem);
  }
}
#bitone section.upload ul.upload_flow li.flow_area.area03 .flow figure figcaption span.arrow {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  padding: 1rem;
  clip-path: polygon(calc(100% - 1rem) 0, 100% 50%, calc(100% - 1rem) 100%, 0 100%, 0 0);
  color: #2b4ea0;
  font-size: 6rem;
  font-size: min(6vw, 6rem);
  line-height: 1;
}
@media print, screen and (min-width: 1024px) {
  #bitone section.upload ul.upload_flow li.flow_area.area03 .flow figure figcaption span.arrow {
    font-size: min(2vw, 5rem);
  }
}
#bitone section.upload ul.upload_flow li.flow_area.area03 .flow figure.illust {
  position: absolute;
  top: 50%;
  right: 0%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 30%;
  aspect-ratio: 50/54;
}
@media print, screen and (min-width: 1024px) {
  #bitone section.upload ul.upload_flow li.flow_area.area03 .flow figure.illust {
    top: 75%;
    right: auto;
    left: 115%;
    width: 70%;
  }
}
@media print, screen and (min-width: 1200px) {
  #bitone section.upload ul.upload_flow li.flow_area.area03 .flow figure.illust {
    width: 100%;
  }
}
#bitone section.upload ul.upload_flow li.flow_area.area03 .flow figure.illust img {
  width: 100%;
}
#bitone section.plan {
  margin-top: 6rem;
}
@media print, screen and (min-width: 1200px) {
  #bitone section.plan {
    margin-top: 10rem;
  }
}
#bitone section.plan .plan_example {
  margin-top: 2rem;
  position: relative;
  border: 0.3rem solid #f8b62d;
}
@media print, screen and (min-width: 768px) {
  #bitone section.plan .plan_example {
    border-width: 0.5rem;
  }
}
@media print, screen and (min-width: 1024px) {
  #bitone section.plan .plan_example {
    margin-top: 4rem;
  }
}
#bitone section.plan .plan_example > small {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  color: #2b4ea0;
  font-size: 1.8rem;
  font-weight: bold;
}
#bitone section.plan .plan_example .banner {
  border: 0.5rem solid #fff;
  background-color: #2b4ea0;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media print, screen and (min-width: 768px) {
  #bitone section.plan .plan_example .banner {
    border-width: 1rem;
    padding: 4rem 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#bitone section.plan .plan_example .banner .monthly {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #f8b62d;
  font-size: 4.6rem;
  font-size: min(6vw, 4.6rem);
  font-weight: bold;
  line-height: 1;
  border: 0.2rem solid #f8b62d;
  padding: 0.5rem;
}
@media print, screen and (min-width: 768px) {
  #bitone section.plan .plan_example .banner .monthly {
    font-size: min(4.5vw, 4.6rem);
  }
}
#bitone section.plan .plan_example .banner .price {
  width: 100%;
  color: #f8b62d;
  font-size: 5rem;
  font-size: min(8vw, 6rem);
  font-weight: bold;
  text-align: center;
  line-height: 1;
  -webkit-animation: blinking 2s infinite;
          animation: blinking 2s infinite;
}
@media print, screen and (min-width: 768px) {
  #bitone section.plan .plan_example .banner .price {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: min(6vw, 6rem);
    margin: 0 3rem 0 1.5rem;
  }
}
#bitone section.plan .plan_example .banner .price span {
  font-size: min(12vw, 9rem);
  padding: 0 0.5rem;
}
@media print, screen and (min-width: 768px) {
  #bitone section.plan .plan_example .banner .price span {
    font-size: min(9vw, 9rem);
    line-height: 0.7;
  }
}
#bitone section.plan .plan_example .banner .price span.tax {
  position: relative;
}
#bitone section.plan .plan_example .banner .price span.tax::after {
  content: "（消費税別途）";
  position: absolute;
  top: 90%;
  right: -25%;
  font-size: min(3.5vw, 1.6rem);
}
#bitone section.plan .plan_example .banner .period {
  width: 100%;
  color: #f8b62d;
  font-size: 3.2rem;
  font-size: min(4vw, 3.2rem);
  text-align: right;
}
@media print, screen and (min-width: 768px) {
  #bitone section.plan .plan_example .banner .period {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: min(3vw, 3.2rem);
  }
}
#bitone section.plan .plan_example .banner .note {
  width: 100%;
  color: #fff;
  font-size: 2rem;
  font-size: min(3.5vw, 2rem);
  text-align: center;
  line-height: 1;
}
@media print, screen and (min-width: 768px) {
  #bitone section.plan .plan_example .banner .note {
    margin-top: 4rem;
    font-size: min(2vw, 2rem);
  }
}
#bitone section.plan p {
  margin-top: 4rem;
  color: #2b4ea0;
  font-size: 3.2rem;
  font-size: min(4.5vw, 3.2rem);
  font-weight: bold;
}
@media print, screen and (min-width: 768px) {
  #bitone section.plan p {
    font-size: min(2.75vw, 3.2rem);
    text-align: center;
  }
}
#bitone section.plan p strong {
  color: #fff;
  background-color: #2b4ea0;
  padding: 0 0.5rem;
}
#bitone section.plan p span {
  background-color: #fcdc9f;
  padding: 0 0.3rem;
}
#bitone section.works {
  margin: 6rem 0;
}
@media print, screen and (min-width: 1200px) {
  #bitone section.works {
    margin: 10rem 0;
  }
}
#bitone section.works p.desc {
  margin-top: 2rem;
  font-size: 2.4rem;
  font-size: min(4vw, 2.4rem);
  text-align: center;
}
#bitone section.works p.desc span {
  color: #fff;
  font-weight: bold;
  background-color: #2b4ea0;
  padding: 0 0.5rem;
  margin-right: 0.5rem;
}
#bitone section.works ul.works_list {
  margin-top: 2rem;
  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;
  gap: 2rem 0;
}
@media print, screen and (min-width: 768px) {
  #bitone section.works ul.works_list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 4rem 4rem;
  }
}
@media print, screen and (min-width: 1024px) {
  #bitone section.works ul.works_list {
    margin-top: 4rem;
  }
}
@media print, screen and (min-width: 1200px) {
  #bitone section.works ul.works_list {
    gap: 8rem 4rem;
  }
}
#bitone section.works ul.works_list li {
  position: relative;
  width: 100%;
  max-width: 60rem;
}
@media print, screen and (min-width: 768px) {
  #bitone section.works ul.works_list li {
    width: calc((100% - 4rem) / 2);
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }
}
@media print, screen and (min-width: 1200px) {
  #bitone section.works ul.works_list li {
    width: calc((100% - 8rem) / 3);
  }
}
#bitone section.works ul.works_list li:nth-of-type(3) {
  margin-top: 3rem;
}
@media print, screen and (min-width: 768px) {
  #bitone section.works ul.works_list li:nth-of-type(3) {
    margin-top: 0;
  }
}
#bitone section.works ul.works_list li .border {
  border: 0.1rem solid #2b4ea0;
}
@media print, screen and (min-width: 768px) {
  #bitone section.works ul.works_list li .border {
    height: 100%;
    overflow: hidden;
  }
}
#bitone section.works ul.works_list li .border figure.img_area {
  position: relative;
  width: 100%;
  aspect-ratio: 5/4;
  overflow: hidden;
  cursor: pointer;
}
#bitone section.works ul.works_list li .border figure.img_area::after {
  content: "";
  width: 6rem;
  height: 5rem;
  background-color: #3e3a39;
  background-image: url(../img/bitone/icon_glass.webp);
  background-size: 3.5rem;
  background-repeat: no-repeat;
  background-position: center;
  padding: 1rem;
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#bitone section.works ul.works_list li .border figure.img_area:hover::after {
  background-color: #2db8bf;
}
#bitone section.works ul.works_list li .border .link_area {
  position: relative;
}
@media print, screen and (min-width: 768px) {
  #bitone section.works ul.works_list li .border .link_area {
    height: 100%;
  }
}
#bitone section.works ul.works_list li .border .link_area a {
  background-color: #2b4ea0;
  padding: 1rem;
}
@media print, screen and (min-width: 768px) {
  #bitone section.works ul.works_list li .border .link_area a {
    height: 100%;
  }
}
@media print, screen and (min-width: 1200px) {
  #bitone section.works ul.works_list li .border .link_area a {
    padding: 2rem 1rem;
  }
}
#bitone section.works ul.works_list li .border .link_area a .name {
  color: #fff;
  font-weight: bold;
  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;
  gap: 1rem;
}
#bitone section.works ul.works_list li .border .link_area a .name::before {
  content: "";
  display: block;
  width: 1.5em;
  aspect-ratio: 1/1;
  background-image: url(../img/bitone/icon_new.webp);
  background-size: contain;
  background-repeat: no-repeat;
}
#bitone section.works ul.works_list li .border .link_area a .url {
  color: #fff;
  text-align: center;
}
#bitone section.works ul.works_list li .border .link_area a:hover .name, #bitone section.works ul.works_list li .border .link_area a:hover .url {
  text-decoration: underline;
}
#bitone section.works ul.works_list li p.note {
  position: absolute;
  top: calc(100% + 0.5rem);
  width: 100%;
  color: #2db8bf;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  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;
  gap: 1rem;
}
#bitone section.works ul.works_list li p.note::before {
  content: "";
  display: block;
  width: 1.7rem;
  aspect-ratio: 17/20;
  background-image: url(../img/bitone/icon_lock.webp);
  background-size: contain;
  background-repeat: no-repeat;
}
#bitone section.works .top_btn {
  margin-top: 4rem;
}
@media print, screen and (min-width: 1200px) {
  #bitone section.works .top_btn {
    margin-top: 8rem;
  }
}
#bitone .modal_block {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999999;
  display: grid;
  place-items: center;
  display: none;
}
#bitone .modal_block .img_section {
  width: 90%;
  max-width: 80rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  max-height: calc(100vh - 25rem);
  margin-top: -10rem;
  overflow-y: scroll;
}
@media print, screen and (min-width: 768px) {
  #bitone .modal_block .img_section {
    margin: 0;
  }
}
@media print, screen and (min-width: 1024px) {
  #bitone .modal_block .img_section {
    max-height: calc(100vh - 10rem);
  }
}
#bitone .modal_block .img_section::-webkit-scrollbar {
  width: 1rem;
}
#bitone .modal_block .img_section::-webkit-scrollbar-track {
  background: transparent;
}
#bitone .modal_block .img_section::-webkit-scrollbar-thumb {
  background-color: #2db8bf;
  border: 0.2rem solid #fff;
  border-radius: 9999px;
}
#bitone .modal_block .img_section figure {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
#bitone .modal_block .close_btn {
  position: absolute;
  top: calc(100vh - 25rem + 10rem);
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  cursor: pointer;
}
@media print, screen and (min-width: 768px) {
  #bitone .modal_block .close_btn {
    top: 4rem;
    left: auto;
    right: 4rem;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
#bitone .modal_block .close_btn span {
  display: block;
  width: 4.5rem;
  height: 0.3rem;
  background-color: #fff;
  border-radius: 9999px;
  position: absolute;
  top: 50%;
  left: 50%;
}
#bitone .modal_block .close_btn span:nth-of-type(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
#bitone .modal_block .close_btn span:nth-of-type(2) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

#en-support {
  color: #494949;
}
#en-support p {
  line-height: 1.4;
}
#en-support img {
  width: auto;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#en-support .t-orange {
  color: #f79f63;
}
#en-support .button_area {
  text-align: center;
}
#en-support .button_area a {
  display: block;
  width: 80%;
  max-width: 60rem;
  font-size: 2.4rem;
  margin: 0 auto;
  background-color: #7ec4c4;
  padding: 1rem 2rem;
  color: #FFF;
  border-radius: 6rem;
}
@media print, screen and (min-width: 1024px) {
  #en-support .button_area a {
    font-size: 4rem;
  }
}
#en-support .button_area a:hover {
  opacity: 0.7;
}
#en-support .button_area a.arrow::after {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 2rem;
  background-color: #FFF;
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  margin-left: 1rem;
  vertical-align: middle;
}
@media print, screen and (min-width: 1024px) {
  #en-support .button_area a.arrow::after {
    width: 1.8rem;
    height: 2.6rem;
  }
}
#en-support .button_area p {
  margin-top: 2rem;
}
#en-support .button_area p small {
  font-size: 1.8rem;
}
#en-support header {
  background-color: rgba(33, 205, 212, 0.9);
}
#en-support header .to_top {
  right: 1rem;
  bottom: 1rem;
}
#en-support header .to_top.active {
  -webkit-animation: fade 1s forwards;
          animation: fade 1s forwards;
}
#en-support header .to_top a {
  padding: 0;
  border: none;
  background-image: url(../img/en-support/gotop.webp);
  background-position: center;
  width: 6rem;
  height: 6rem;
}
#en-support header .to_top a span {
  display: none;
}
#en-support header .to_top a::before {
  content: none;
}
#en-support .cover {
  position: relative;
  width: 90%;
  max-width: 1660px;
  margin: 0 auto;
}
#en-support .cover_1400 {
  position: relative;
  width: 96%;
  max-width: 1400px;
  margin: 0 auto;
}
#en-support .main-visual {
  position: relative;
  width: 100%;
  height: 100%;
}
@media print, screen and (min-width: 1024px) {
  #en-support .main-visual {
    height: 59.375vw;
  }
}
#en-support .main-visual .main-visual_text {
  position: absolute;
  width: 100%;
  height: 100%;
}
#en-support .main-visual .main-visual_text .cover {
  margin-top: 12rem;
}
#en-support .main-visual .main-visual_text .comment {
  font-size: 3.4rem;
  font-weight: bold;
  padding: 0 2rem;
  border-radius: 3rem;
  color: #FFF;
  font-size: 8vw;
  text-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.3);
}
@media print, screen and (min-width: 1024px) {
  #en-support .main-visual .main-visual_text .comment {
    position: absolute;
    font-size: 4.8rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
            writing-mode: vertical-rl;
    word-break: break-all;
    white-space: nowrap;
    color: #494949;
    font-size: min(3vw, 4.8rem);
    text-shadow: none;
    padding: 2rem 2rem;
  }
}
#en-support .main-visual .main-visual_text .comment_1 {
  top: 8rem;
  right: 0;
}
@media print, screen and (min-width: 1024px) {
  #en-support .main-visual .main-visual_text .comment_1 {
    padding: 1.6em 1.2em;
  }
}
#en-support .main-visual .main-visual_text .comment_2 {
  top: 8rem;
  left: 0;
}
@media print, screen and (min-width: 1024px) {
  #en-support .main-visual .main-visual_text .comment_2 {
    padding: 1.6em 1.2em;
  }
}
#en-support .main-visual img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 216vw;
  z-index: -1;
}
@media print, screen and (min-width: 1024px) {
  #en-support .main-visual img {
    height: 100%;
  }
}
#en-support .main-visual .obi {
  width: 100%;
  color: #fff;
  padding: 0.5em 1em;
  background-color: rgba(73, 73, 73, 0.6);
  font-size: 3rem;
  text-align: center;
  z-index: 1;
  position: absolute;
  bottom: 5rem;
}
@media print, screen and (min-width: 1024px) {
  #en-support .main-visual .obi {
    font-size: 4rem;
  }
}
#en-support .nayami {
  position: relative;
  background-image: url(../img/en-support/back_nayami.webp);
  background-position: center left 72%;
  background-size: auto 100%;
  background-repeat: no-repeat;
  padding: 4rem 0;
}
@media print, screen and (min-width: 1024px) {
  #en-support .nayami {
    padding: 0;
    background-position: center;
    background-size: cover;
  }
  #en-support .nayami::before {
    content: "";
    display: block;
    padding-top: 49.375vw;
  }
}
@media print, screen and (min-width: 1024px) {
  #en-support .nayami .cover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    max-width: 1024px;
  }
}
@media print, screen and (min-width: 1660px) {
  #en-support .nayami .cover {
    max-width: 1660px;
  }
}
#en-support .nayami .nayami_list {
  height: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  gap: 2rem;
}
@media print, screen and (min-width: 1024px) {
  #en-support .nayami .nayami_list {
    display: block;
    gap: 0;
  }
}
#en-support .nayami .fukidashi {
  position: relative;
  background-color: #fff;
  font-size: 2rem;
  text-align: center;
  line-height: 1.2;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.2);
  display: inline-block;
  padding: 4rem 2rem;
  padding: 1.5em;
}
@media print, screen and (min-width: 1024px) {
  #en-support .nayami .fukidashi {
    position: absolute;
  }
}
@media print, screen and (min-width: 1660px) {
  #en-support .nayami .fukidashi {
    font-size: 3rem;
  }
}
#en-support .nayami .fukidashi::before, #en-support .nayami .fukidashi::after {
  content: "";
  background-color: #fff;
  position: absolute;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.2);
}
#en-support .nayami .fukidashi::before {
  right: -3rem;
  width: 3rem;
  height: 3rem;
  bottom: 10%;
}
#en-support .nayami .fukidashi::after {
  right: -6rem;
  width: 2rem;
  height: 2rem;
  bottom: 15%;
}
@media print, screen and (min-width: 1024px) {
  #en-support .nayami .fukidashi_1 {
    left: 2%;
    top: 9%;
  }
  #en-support .nayami .fukidashi_1::after {
    bottom: 10%;
  }
  #en-support .nayami .fukidashi_2 {
    left: 10%;
    top: 30%;
  }
  #en-support .nayami .fukidashi_3 {
    left: 30%;
    top: 16%;
  }
  #en-support .nayami .fukidashi_3::after {
    bottom: 10%;
  }
  #en-support .nayami .fukidashi_4 {
    left: 40%;
    top: 45%;
  }
  #en-support .nayami .fukidashi_5 {
    left: 15%;
    top: 50%;
  }
  #en-support .nayami .fukidashi_6 {
    left: 2%;
    top: 60%;
  }
}
@media print, screen and (min-width: 1660px) {
  #en-support .nayami .fukidashi_1 {
    left: 12%;
    top: 16%;
    padding: 4rem 4rem;
  }
  #en-support .nayami .fukidashi_1::after {
    bottom: 10%;
  }
  #en-support .nayami .fukidashi_2 {
    left: 25%;
    top: 30%;
    padding: 4.5rem 4rem;
  }
  #en-support .nayami .fukidashi_3 {
    left: 45%;
    top: 25%;
    padding: 4.5rem 4rem;
  }
  #en-support .nayami .fukidashi_3::after {
    bottom: 10%;
  }
  #en-support .nayami .fukidashi_4 {
    left: 40%;
    top: 45%;
    padding: 5rem 4rem;
  }
  #en-support .nayami .fukidashi_5 {
    left: 15%;
    top: 45%;
    padding: 4rem 4rem;
  }
  #en-support .nayami .fukidashi_6 {
    left: 10%;
    top: 60%;
    padding: 3rem 4rem;
  }
}
#en-support .nayami .obi {
  bottom: 8rem;
  left: 0;
  right: 0;
  margin: 3rem auto 0;
  text-align: center;
  font-size: 2.6rem;
}
@media print, screen and (min-width: 1024px) {
  #en-support .nayami .obi {
    position: absolute;
    margin: 0 auto;
    bottom: 2rem;
  }
}
@media print, screen and (min-width: 1660px) {
  #en-support .nayami .obi {
    font-size: 3.2rem;
    bottom: 8rem;
  }
}
#en-support section {
  padding: 8rem 0;
}
#en-support #plan h2 {
  font-size: 3.4rem;
  font-weight: normal;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 3rem;
}
@media print, screen and (min-width: 1024px) {
  #en-support #plan h2 {
    font-size: 4.8rem;
    margin-bottom: 6rem;
  }
}
#en-support #plan h2 strong {
  display: inline-block;
  vertical-align: top;
  font-weight: normal;
}
#en-support #plan h2 strong span {
  display: block;
  font-size: 1.4rem;
  line-height: 1;
}
#en-support #plan .flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media print, screen and (min-width: 1024px) {
  #en-support #plan .flex-box {
    gap: 4rem;
  }
}
#en-support #plan .flex-box div {
  position: relative;
}
#en-support #plan .flex-box div::before, #en-support #plan .flex-box div::after {
  content: "";
  position: absolute;
  display: block;
  width: 10rem;
  height: 10rem;
}
@media print, screen and (min-width: 1024px) {
  #en-support #plan .flex-box div::before, #en-support #plan .flex-box div::after {
    content: none;
  }
}
#en-support #plan .flex-box div::before {
  bottom: -5rem;
  background: #eef6ef;
  border-radius: 50%;
  left: 5rem;
  z-index: -2;
}
#en-support #plan .flex-box div::after {
  bottom: -5rem;
  background: #FFF;
  border-radius: 50%;
  left: 9rem;
  z-index: -1;
}
#en-support #plan .flex-box p {
  position: relative;
  font-size: 2.8rem;
  line-height: 1.4;
  z-index: 1;
  padding: 3rem 4rem;
  background-color: #eef6ef;
  border-radius: 5rem;
  margin-top: 2rem;
  z-index: 1;
}
@media print, screen and (min-width: 1024px) {
  #en-support #plan .flex-box p {
    font-size: 3.4rem;
    padding: 6.6rem 4.5rem 9.3rem 5.6rem;
    background-color: transparent;
    border-radius: none;
    margin-top: 0;
  }
}
#en-support #plan .flex-box p strong {
  font-size: 3.2rem;
}
@media print, screen and (min-width: 1024px) {
  #en-support #plan .flex-box p strong {
    font-size: 4.6rem;
  }
}
@media print, screen and (min-width: 1024px) {
  #en-support #plan .flex-box p::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../img/en-support/fukidashi.webp);
    background-position: center;
    background-size: contain;
    left: 0;
    top: 0;
    z-index: -1;
  }
}
#en-support .plan_list {
  margin: 2rem 0 4rem;
}
@media print, screen and (min-width: 768px) {
  #en-support .plan_list {
    margin: 4rem auto 8rem;
  }
}
#en-support .plan_list strong.t-orange {
  color: #f79f63;
}
#en-support .plan_list h3,
#en-support .plan_list h4 {
  background-color: #7ec4c4;
  border-radius: 1rem;
  font-size: 3.4rem;
  font-weight: bold;
  color: #FFF;
  padding: 0.5rem;
  text-align: center;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}
@media print, screen and (min-width: 1024px) {
  #en-support .plan_list h3,
  #en-support .plan_list h4 {
    margin: 0;
  }
}
#en-support .plan_list > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4rem;
  margin-top: 2rem;
}
#en-support .plan_list > ul li {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  width: 100%;
  max-width: 440px;
  background-color: #FFF;
  border: 1px solid #FFF;
  border-radius: 1rem;
  overflow: hidden;
}
#en-support .plan_list > ul li#plan_01 {
  border-color: #f79f63;
}
#en-support .plan_list > ul li#plan_01 h4,
#en-support .plan_list > ul li#plan_01 .feature dt {
  background-color: #f79f63;
}
#en-support .plan_list > ul li#plan_02 {
  border-color: #efc567;
}
#en-support .plan_list > ul li#plan_02 h4,
#en-support .plan_list > ul li#plan_02 .feature dt {
  background-color: #efc567;
}
#en-support .plan_list > ul li#plan_03 {
  border-color: #a6d199;
}
#en-support .plan_list > ul li#plan_03 h4,
#en-support .plan_list > ul li#plan_03 .feature dt {
  background-color: #a6d199;
}
#en-support .plan_list > ul li h4 {
  color: #FFF;
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  padding: 0.5rem;
  border-radius: 1rem 1rem 0 0;
}
@media print, screen and (min-width: 1024px) {
  #en-support .plan_list > ul li h4 {
    font-size: 3.2rem;
  }
}
#en-support .plan_list > ul li .plan_desc {
  padding: 1rem 0.5rem;
}
@media print, screen and (min-width: 768px) {
  #en-support .plan_list > ul li .plan_desc {
    padding: 2rem 1rem;
  }
}
#en-support .plan_list > ul li .plan_desc .when {
  color: #bf6440;
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
}
#en-support .plan_list > ul li .plan_desc dl.price {
  margin-top: 2rem;
  font-weight: bold;
}
@media print, screen and (min-width: 768px) {
  #en-support .plan_list > ul li .plan_desc dl.price {
    margin-top: 4rem;
  }
}
#en-support .plan_list > ul li .plan_desc dl.price dt {
  font-size: 2.2rem;
  text-align: center;
}
#en-support .plan_list > ul li .plan_desc dl.price dd {
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.2;
}
#en-support .plan_list > ul li .plan_desc dl.price dd span {
  display: inline-block;
  font-size: 4rem;
}
#en-support .plan_list > ul li .plan_desc dl.price dd small {
  font-size: 1.6rem;
}
#en-support .plan_list > ul li .plan_desc dl.feature {
  margin-top: 2rem;
}
@media print, screen and (min-width: 768px) {
  #en-support .plan_list > ul li .plan_desc dl.feature {
    margin-top: 4rem;
  }
}
#en-support .plan_list > ul li .plan_desc dl.feature dt {
  color: #FFF;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  padding: 0.5rem 0;
}
@media print, screen and (min-width: 768px) {
  #en-support .plan_list > ul li .plan_desc dl.feature dt {
    padding: 1rem 0;
  }
}
#en-support .plan_list > ul li .plan_desc dl.feature dd {
  position: relative;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 1rem;
}
#en-support .plan_list > ul li .plan_desc dl.feature dd ul li {
  padding-left: 1em;
  line-height: 1.4;
  margin-top: 0.5rem;
}
#en-support .plan_list > ul li .plan_desc dl.feature dd ul li::before {
  content: "・";
  display: inline-block;
  width: 1em;
  text-align: center;
  margin-left: -1em;
}
#en-support .conditions {
  padding: 2rem 2rem 0;
}
#en-support .conditions p {
  font-size: 1.6rem;
  font-weight: bold;
  padding-left: 1em;
}
#en-support .conditions p::before {
  content: "※";
  display: inline-block;
  width: 1em;
  text-align: center;
  margin-left: -1em;
}
#en-support #case {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#e8ede2), to(#f4e8d7));
  background-image: linear-gradient(180deg, #e8ede2, #f4e8d7);
}
#en-support #case > p {
  text-align: center;
  font-size: 3.2rem;
}
@media print, screen and (min-width: 1024px) {
  #en-support #case > p {
    font-size: 4.6rem;
  }
}
#en-support #case div + p {
  font-size: 2.4rem;
  padding: 8rem 0 4rem;
}
@media print, screen and (min-width: 1024px) {
  #en-support #case div + p {
    font-size: 3.6rem;
  }
}
#en-support #case #case_01,
#en-support #case #case_02,
#en-support #case #case_03 {
  margin-top: 8rem;
  position: relative;
  z-index: 1;
  padding-bottom: 6rem;
}
#en-support #case #case_01::before,
#en-support #case #case_02::before,
#en-support #case #case_03::before {
  position: absolute;
  content: "";
  width: calc(100% - 1rem);
  height: 100%;
  background-color: #FFF;
  z-index: -1;
}
@media print, screen and (min-width: 1024px) {
  #en-support #case #case_01::before,
  #en-support #case #case_02::before,
  #en-support #case #case_03::before {
    width: 98%;
    width: 99%;
  }
}
@media print, screen and (min-width: 1700px) {
  #en-support #case #case_01::before,
  #en-support #case #case_02::before,
  #en-support #case #case_03::before {
    width: 92vw;
  }
}
#en-support #case #case_01:nth-of-type(2n+1)::before,
#en-support #case #case_02:nth-of-type(2n+1)::before,
#en-support #case #case_03:nth-of-type(2n+1)::before {
  border-radius: 0 6rem 6rem 0;
  top: 0;
  left: 0;
}
#en-support #case #case_01:nth-of-type(2n)::before,
#en-support #case #case_02:nth-of-type(2n)::before,
#en-support #case #case_03:nth-of-type(2n)::before {
  border-radius: 6rem 0 0 6rem;
  top: 0;
  right: 0;
}
#en-support #case h2 {
  font-size: 2.8rem;
  font-weight: bold;
  border-bottom: solid 0.3rem transparent;
  line-height: 1.2;
  margin-bottom: 3rem;
  padding: 0 1rem 1rem;
}
#en-support #case h2 span {
  font-size: 3rem;
  font-weight: bold;
  margin-right: 0.5em;
  display: block;
}
#en-support #case h2 span strong {
  font-size: 2em;
}
@media print, screen and (min-width: 1024px) {
  #en-support #case h2 {
    font-size: 3.6rem;
    padding: 0;
  }
  #en-support #case h2 span {
    display: inline;
    vertical-align: middle;
    font-size: 5rem;
  }
  #en-support #case h2 span strong {
    font-size: 10rem;
  }
}
#en-support #case ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 4rem;
  counter-reset: case 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#en-support #case ol li {
  position: relative;
  width: calc(100% - 2rem);
  max-width: 800px;
  border-radius: 3rem;
  border: solid 0.2rem transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  counter-increment: case 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media print, screen and (min-width: 1024px) {
  #en-support #case ol li {
    width: calc((100% - 8rem) / 3);
  }
}
#en-support #case ol li::after {
  content: "";
  position: absolute;
  width: 4rem;
  height: 2.8rem;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  bottom: -3.5rem;
  left: calc(50% - 2rem);
}
@media print, screen and (min-width: 1024px) {
  #en-support #case ol li::after {
    width: 2.8rem;
    height: 4rem;
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
    right: -4rem;
    top: 50%;
    bottom: 50%;
    left: auto;
  }
}
#en-support #case ol li:last-child::after {
  content: none;
}
#en-support #case ol li p {
  color: #FFF;
  padding: 1rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  line-height: 1.2;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
}
#en-support #case ol li p::before {
  content: counter(case);
  font-size: 2em;
  margin-right: 0.5em;
}
#en-support #case ol li img {
  border-radius: 0 0 3rem 3rem;
  display: block;
}
#en-support #case_01 h2 {
  border-color: #f79f63;
}
#en-support #case_01 h2 span {
  color: #f79f63;
}
#en-support #case_01 ol li {
  border-color: #f79f63;
  background-color: #f79f63;
}
#en-support #case_01 ol li::after {
  background-color: #f79f63;
}
#en-support #case_02 h2 {
  border-color: #efc567;
}
#en-support #case_02 h2 span {
  color: #efc567;
}
#en-support #case_02 ol li {
  border-color: #efc567;
  background-color: #efc567;
}
#en-support #case_02 ol li::after {
  background-color: #efc567;
}
#en-support #case_03 h2 {
  border-color: #a6d199;
}
#en-support #case_03 h2 span {
  color: #a6d199;
}
#en-support #case_03 ol li {
  border-color: #a6d199;
  background-color: #a6d199;
}
#en-support #case_03 ol li::after {
  background-color: #a6d199;
}
#en-support #service .cover_1400 > p {
  text-align: center;
  font-size: 3.2rem;
}
@media print, screen and (min-width: 1024px) {
  #en-support #service .cover_1400 > p {
    font-size: 4.6rem;
  }
}
#en-support #service .cover_1400 div + p {
  font-size: 2.4rem;
  padding: 8rem 0 4rem;
}
@media print, screen and (min-width: 1024px) {
  #en-support #service .cover_1400 div + p {
    font-size: 3.6rem;
  }
}
#en-support #service .cover_1400 div + p span {
  font-size: 1.6rem;
}
@media print, screen and (min-width: 1024px) {
  #en-support #service .cover_1400 div + p span {
    font-size: 2rem;
  }
}
#en-support #service .service-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4rem;
  margin-top: 8rem;
}
#en-support #service .service-list div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  width: calc(50% - 2rem);
}
@media print, screen and (min-width: 1024px) {
  #en-support #service .service-list div {
    width: auto;
  }
}
@media print, screen and (min-width: 1400px) {
  #en-support #service .service-list div#service_01 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 340px;
            flex: 1 1 340px;
  }
}
@media print, screen and (min-width: 1400px) {
  #en-support #service .service-list div#service_02 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 250px;
            flex: 1 1 250px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media print, screen and (min-width: 1400px) {
  #en-support #service .service-list div#service_03 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 310px;
            flex: 1 1 310px;
    margin-top: 4rem;
  }
}
@media print, screen and (min-width: 1400px) {
  #en-support #service .service-list div#service_04 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 310px;
            flex: 1 1 310px;
    margin-top: 2rem;
  }
}
@media print, screen and (min-width: 1400px) {
  #en-support #service .service-list div#service_05 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 340px;
            flex: 1 1 340px;
    margin-top: -14rem;
  }
}
@media print, screen and (min-width: 1400px) {
  #en-support #service .service-list div#service_06 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 340px;
            flex: 1 1 340px;
  }
}
@media print, screen and (min-width: 1400px) {
  #en-support #service .service-list div#service_07 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 280px;
            flex: 1 1 280px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media print, screen and (min-width: 1400px) {
  #en-support #service .service-list div#service_08 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 340px;
            flex: 1 1 340px;
    margin-top: -8rem;
  }
}
#en-support #service .service-list div p {
  position: relative;
  padding: 2rem;
  border-radius: 3.5rem;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 6rem;
}
@media print, screen and (min-width: 1024px) {
  #en-support #service .service-list div p {
    padding: 5rem;
    font-size: 3rem;
  }
}
#en-support #service .service-list div p::after {
  content: "";
  position: absolute;
  display: block;
  width: 5rem;
  height: 5.4rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -5rem;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}
#en-support #service .service-list div p.bk_green {
  background-color: #e3f4c1;
}
#en-support #service .service-list div p.bk_green::after {
  background-color: #e3f4c1;
}
#en-support #service .service-list div p.bk_yellow {
  background-color: #f9f1c0;
}
#en-support #service .service-list div p.bk_yellow::after {
  background-color: #f9f1c0;
}
#en-support #service .service-list div figure {
  max-width: 340px;
  max-height: 520px;
  text-align: center;
}
#en-support footer {
  background-color: #65a6ba;
}/*# sourceMappingURL=style.css.map */