@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

::selection {
  background-color: pink;
}

html {
  font-size: 62.5%;
}
@media screen and (max-width: 768px) {
  html {
    overflow-x: auto;
  }
}

body {
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
}

img {
  max-width: 100%;
  vertical-align: bottom;
  object-fit: cover;
}

a:link,
a:visited {
  color: inherit;
  text-decoration: none;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

textarea {
  resize: none;
}

body {
  font-family: "Noto Sans JP", serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #333333;
}

.container {
  width: 100%;
  max-width: 118rem;
  padding-right: 1.4rem;
  padding-left: 1.4rem;
  margin-right: auto;
  margin-left: auto;
}

.is-pc-hide {
  display: block;
}
@media screen and (max-width: 1440px) {
  .is-pc-hide {
    display: none;
  }
}

.is-pc-show {
  display: none;
}
@media screen and (max-width: 1440px) {
  .is-pc-show {
    display: block;
  }
}

.is-md-hide {
  display: block;
}
@media screen and (max-width: 768px) {
  .is-md-hide {
    display: none;
  }
}

.is-md-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .is-md-show {
    display: block;
  }
}

html.is-global-nav-open {
  overflow: hidden;
}
html.is-global-nav-open header nav.open {
  justify-content: space-between;
  right: 0;
}
html.is-global-nav-open header nav ul {
  align-items: flex-start;
}
html.is-global-nav-open header nav ul li a {
  background-image: url(../img/icon-header-nav-arrow.svg);
  background-position: 0 center;
  background-repeat: no-repeat;
}
html.is-global-nav-open header nav ul li a span {
  color: #ffffff;
  font-size: 18px;
  padding-left: 20px;
}

header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 92px;
  padding: 0 32px;
  background-color: #f3fbff;
}
@media screen and (max-width: 768px) {
  header {
    height: 88px;
    padding: 16px;
  }
}
header .logo {
  width: 426px;
  margin: 0;
}
header .logo img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  header .logo {
    width: 120px;
  }
}
header nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 1440px) {
  header nav {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  header nav {
    flex-direction: column;
    height: calc(100vh - 88px);
    position: fixed;
    right: -100%;
    top: 88px;
    width: auto;
    padding: 80px 16px;
    background-color: #2c88c4;
    transition: all 0.3s ease;
    z-index: 1002;
  }
}
header nav ul {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
header nav ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 41px;
  padding: 0 16px;
}
@media screen and (max-width: 1440px) {
  header nav ul li {
    padding: 0 10px;
  }
}
header nav ul li a span {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #2c88c4;
  white-space: nowrap;
}
header nav .btn-line {
  height: 46px;
  padding-left: 27.5px;
  padding-right: 27.5px;
}
header nav .btn-line .arrow {
  width: 20px;
}
header nav .btn-line .caption .text {
  font-size: 20px;
}
header .hamburger-menu {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background-color: #2c88c4;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 1001;
}
header .hamburger-menu span {
  position: absolute;
  left: 16px;
  width: 24px;
  height: 4px;
  border-radius: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease;
  cursor: pointer;
}
header .hamburger-menu span:nth-child(1) {
  top: 18px;
}
header .hamburger-menu span:nth-child(2) {
  top: 26px;
}
header .hamburger-menu span:nth-child(3) {
  top: 34px;
}
header .hamburger-menu.open {
  background-color: #fa5a5a;
}
header .hamburger-menu.open span {
  left: 12px;
  width: 32px;
  height: 3px;
}
header .hamburger-menu.open span:nth-child(1) {
  top: 27px;
  transform: rotate(45deg);
}
header .hamburger-menu.open span:nth-child(2) {
  opacity: 0;
}
header .hamburger-menu.open span:nth-child(3) {
  top: 27px;
  transform: rotate(-45deg);
}

footer {
  background-color: #2c88c4;
}
footer .footer-links {
  display: flex;
  justify-content: space-evenly;
  width: 1120px;
  margin: 0 auto;
  padding: 80px 0;
  display: none;
}
footer .footer-links .footer-col {
  flex: 1;
}
footer .footer-links .footer-col li {
  position: relative;
  padding: 0 0 0 16px;
  margin: 0 0 16px;
}
footer .footer-links .footer-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  margin-top: 2px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #ffffff;
}
footer .footer-links .footer-col li a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
}
footer .footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  height: 40px;
  background-color: #333333;
}
@media screen and (max-width: 768px) {
  footer .footer-bottom {
    flex-direction: column;
    gap: 32px;
    height: auto;
    padding: 32px 0;
  }
}
footer .footer-bottom a {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
}

.btn-line {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
  background-color: #22c720;
  border-radius: 8px;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.24);
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .btn-line {
    gap: 4px;
    padding: 0 10px;
  }
}
.btn-line .caption {
  display: flex;
  align-items: center;
  gap: 4px;
}
.btn-line .caption .text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
}
.btn-line .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.btn-line .head {
  position: absolute;
  left: 50%;
  top: -12px;
  transform: translateX(-50%);
  display: inline-block;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.56px;
  color: #ffffff;
  background-color: #fa5a5a;
  border-radius: 4px;
}
.btn-line .head .num {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  letter-spacing: 0.8px;
}

.layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 1440px;
  margin: 0 auto;
  padding: min(64px, 64px * 100vw / 1030px) min(48px, 48px * 100vw / 1030px);
}
@media screen and (max-width: 1440px) {
  .layout {
    width: 100%;
    padding: min(64px, 64px * 100vw / 1440px) min(36px, 36px * 100vw / 1440px);
  }
}
@media screen and (max-width: 1040px) {
  .layout {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .layout {
    padding: 0 16px;
  }
}
.layout main {
  padding: 0;
  width: 71%;
}
@media screen and (max-width: 1040px) {
  .layout main {
    width: 100%;
    max-width: 953px;
  }
}
.layout aside {
  width: 26%;
}
@media screen and (max-width: 1040px) {
  .layout aside {
    width: 100%;
    max-width: 953px;
  }
}

a {
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.7;
}

.ttl-has-line {
  position: relative;
  margin-bottom: 32px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .ttl-has-line {
    margin-bottom: 16px;
  }
}
.ttl-has-line span {
  position: relative;
  padding: 0 32px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  color: #2c88c4;
  background-color: #ffffff;
}
@media screen and (max-width: 768px) {
  .ttl-has-line span {
    padding: 0 16px;
    font-size: 20px;
  }
}
.ttl-has-line span:not(.big) {
  display: flex;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .ttl-has-line span:not(.big) {
    flex-direction: column;
  }
}
.ttl-has-line span .big {
  padding: 0;
}
@media screen and (max-width: 768px) {
  .ttl-has-line span .big {
    font-size: 28px;
  }
}
.ttl-has-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #2c88c4;
}

body.home {
  display: block;
}
body.home #main-visual {
  position: relative;
  width: 100%;
  background-color: #ebf3f7;
  border-radius: 16px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  body.home #main-visual {
    width: 100vw;
    margin: 0 -16px;
    padding: 0 16px;
    border-radius: 0;
  }
}
body.home #main-visual .mv-img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  body.home #main-visual .mv-img {
    position: relative;
    left: unset;
    top: unset;
    transform: unset;
    height: auto;
    width: 100vw;
    margin: 0 -16px;
  }
}
body.home #main-visual .mv-img img {
  position: absolute;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  body.home #main-visual .mv-img img {
    position: relative;
    height: auto;
  }
}
body.home #main-visual .mv-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 22px;
  padding: min(28px, 28px * 100vw / 1030px) min(32px, 32px * 100vw / 1030px);
}
@media screen and (max-width: 768px) {
  body.home #main-visual .mv-inner {
    align-items: center;
    gap: 0;
    margin-top: -40%;
    padding: 0 0 24px;
  }
}
body.home #main-visual .mv-inner .mv-ttl {
  font-size: min(48px, 48px * 100vw / 1030px);
  line-height: 1.3;
}
@media screen and (max-width: 1280px) {
  body.home #main-visual .mv-inner .mv-ttl {
    font-size: min(36px, 36px * 100vw / 1030px);
  }
}
@media screen and (max-width: 768px) {
  body.home #main-visual .mv-inner .mv-ttl {
    margin: 0 0 8px;
    text-align: center;
    font-size: 39px;
  }
}
body.home #main-visual .mv-inner .mv-ttl .big {
  font-size: min(56px, 56px * 100vw / 1030px);
  color: #fa5a5a;
}
@media screen and (max-width: 1280px) {
  body.home #main-visual .mv-inner .mv-ttl .big {
    font-size: min(48px, 48px * 100vw / 1030px);
  }
}
@media screen and (max-width: 768px) {
  body.home #main-visual .mv-inner .mv-ttl .big {
    font-size: 46px;
  }
}
body.home #main-visual .mv-inner .mv-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: fit-content;
}
body.home #main-visual .mv-inner .mv-center .reason {
  display: flex;
  align-items: center;
  gap: 4px;
}
body.home #main-visual .mv-inner .mv-center .reason .circle-group {
  display: flex;
  align-items: center;
}
body.home #main-visual .mv-inner .mv-center .reason .circle-group .circle-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(96px, 96px * 100vw / 1030px);
  height: min(96px, 96px * 100vw / 1030px);
  border-radius: 50%;
  background-color: #ffffff;
}
@media screen and (max-width: 768px) {
  body.home #main-visual .mv-inner .mv-center .reason .circle-group .circle-item {
    width: 87px;
    height: 87px;
  }
}
body.home #main-visual .mv-inner .mv-center .reason .circle-group .circle-item p {
  position: relative;
  font-size: min(16px, 16px * 100vw / 1030px);
  font-weight: 500;
  line-height: 1.5;
  color: #2c88c4;
}
@media screen and (max-width: 768px) {
  body.home #main-visual .mv-inner .mv-center .reason .circle-group .circle-item p {
    font-size: 15px;
  }
}
body.home #main-visual .mv-inner .mv-center .reason .circle-group .circle-item p span {
  font-size: min(22px, 22px * 100vw / 1030px);
}
@media screen and (max-width: 768px) {
  body.home #main-visual .mv-inner .mv-center .reason .circle-group .circle-item p span {
    font-size: 20px;
  }
}
body.home #main-visual .mv-inner .mv-center .reason .circle-group .circle-item p::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -11px;
  transform: translateX(-50%);
  width: 14px;
  height: 7px;
  background: url("../img/mv/deco.svg") no-repeat;
  background-position: center;
  background-size: contain;
}
body.home #main-visual .mv-inner .mv-center .reason .circle-group .circle-item.center {
  margin-top: -16px;
  margin-left: -8px;
  margin-right: -8px;
}
body.home #main-visual .mv-inner .mv-center .reason .tail {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  color: #2c88c4;
}
body.home #main-visual .mv-inner .mv-center .lead {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  body.home #main-visual .mv-inner .mv-center .lead {
    margin: 0 0 4px;
  }
}
body.home #main-visual .mv-inner .mv-center .lead .icon {
  width: 32px;
  height: 32px;
}
body.home #main-visual .mv-inner .mv-center .lead .text {
  position: relative;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  color: #333333;
}
@media screen and (max-width: 768px) {
  body.home #main-visual .mv-inner .mv-center .lead .text {
    font-size: 21px;
  }
}
body.home #main-visual .mv-inner .mv-center .lead .text span {
  position: relative;
  z-index: 1;
}
body.home #main-visual .mv-inner .mv-center .lead .text span.big {
  font-size: 28px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  body.home #main-visual .mv-inner .mv-center .lead .text span.big {
    font-size: 25px;
  }
}
body.home #main-visual .mv-inner .mv-center .lead .text span.big::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: 4px;
  width: 100%;
  height: 8px;
  background-color: #f0c819;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  body.home #main-visual .mv-inner .mv-center .lead .text span.big::after {
    right: 0;
    bottom: 2px;
  }
}
body.home #main-visual .mv-inner .mv-bottom {
  padding-top: 26px;
}
body.home #main-visual .mv-inner .mv-bottom .btn-line {
  height: 64px;
}
@media screen and (max-width: 768px) {
  body.home #main-visual .mv-inner .mv-bottom .btn-line {
    height: 55px;
  }
}
body.home #main-visual .mv-inner .mv-bottom .btn-line .caption .icon {
  width: 36px;
  height: 36px;
}
@media screen and (max-width: 768px) {
  body.home #main-visual .mv-inner .mv-bottom .btn-line .caption .icon {
    width: 32px;
    height: 32px;
  }
}
body.home #main-visual .mv-inner .mv-bottom .btn-line .caption .text {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  body.home #main-visual .mv-inner .mv-bottom .btn-line .caption .text {
    font-size: 20px;
  }
}
body.home #main-visual .mv-inner .mv-bottom .btn-line .caption .text .big {
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  body.home #main-visual .mv-inner .mv-bottom .btn-line .caption .text .big {
    font-size: 28px;
  }
}
body.home #main-visual .mv-inner .mv-bottom .btn-line .head {
  top: -26px;
  font-size: 20px;
}
body.home #main-visual .mv-inner .mv-bottom .btn-line .head .num {
  font-size: 30px;
}
body.home #kind {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  body.home #kind {
    padding: 48px 0;
  }
}
body.home #kind .phone-area {
  margin: 0 0 48px;
}
body.home #kind .phone-area .phone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
body.home #kind .phone-area .phone-list .phone-item {
  position: relative;
  width: calc(25% - 12px);
}
@media screen and (max-width: 768px) {
  body.home #kind .phone-area .phone-list .phone-item {
    width: calc(50% - 8px);
  }
}
body.home #kind .phone-area .phone-list .phone-item .fig {
  background: linear-gradient(180deg, rgba(67, 130, 165, 0.5) 0%, rgba(112, 160, 192, 0.5) 45.35%, rgba(67, 130, 165, 0.5) 100%);
  border-radius: 8px;
}
body.home #kind .phone-area .phone-list .phone-item .ttl {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(160px, 160px * 100vw / 1030px);
  height: min(38px, 38px * 100vw / 1030px);
  margin: 0 auto;
  margin-top: -18px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #2c88c4;
  background-color: #ffffff;
  border: 1px solid #2c88c4;
  border-radius: 8px;
}
@media screen and (max-width: 1280px) {
  body.home #kind .phone-area .phone-list .phone-item .ttl {
    width: 120px;
    height: 35px;
    margin-top: -16px;
    font-size: 18px;
  }
}
body.home #kind .brand-area .brand-area-ttl {
  display: inline-block;
  margin: 0 0 16px;
  padding: 4px 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #ffffff;
  background-color: #2c88c4;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  body.home #kind .brand-area .brand-area-ttl {
    display: block;
    margin: 0 0 8px;
    text-align: center;
    border-radius: 4px;
  }
}
body.home #kind .brand-area .brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
body.home #kind .brand-area .brand-list .brand-item {
  display: flex;
  align-items: center;
  gap: 16px;
  width: calc(20% - 6.4px);
  padding: 8px 20px;
  border-radius: min(6px, 6px * 100vw / 1030px);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.32);
}
@media screen and (max-width: 1280px) {
  body.home #kind .brand-area .brand-list .brand-item {
    width: calc(25% - 6px);
    gap: 8px;
    padding: 8px;
  }
}
@media screen and (max-width: 1040px) {
  body.home #kind .brand-area .brand-list .brand-item {
    width: calc(20% - 6.4px);
  }
}
@media screen and (max-width: 768px) {
  body.home #kind .brand-area .brand-list .brand-item {
    width: calc(50% - 4px);
  }
}
body.home #kind .brand-area .brand-list .brand-item .fig {
  width: min(50px, 50px * 100vw / 1030px);
  height: min(54px, 54px * 100vw / 1030px);
}
body.home #kind .brand-area .brand-list .brand-item .ttl {
  font-size: min(18px, 18px * 100vw / 1030px);
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 1040px) {
  body.home #kind .brand-area .brand-list .brand-item .ttl {
    font-size: 18px;
  }
}
@media screen and (max-width: 1280px) {
  body.home #kind .brand-area .brand-list .brand-item:nth-child(1), body.home #kind .brand-area .brand-list .brand-item:nth-child(2) {
    width: calc(50% - 4px);
  }
}
@media screen and (max-width: 1040px) {
  body.home #kind .brand-area .brand-list .brand-item:nth-child(1), body.home #kind .brand-area .brand-list .brand-item:nth-child(2) {
    width: calc(20% - 6.4px);
  }
}
@media screen and (max-width: 768px) {
  body.home #kind .brand-area .brand-list .brand-item:nth-child(1), body.home #kind .brand-area .brand-list .brand-item:nth-child(2) {
    width: calc(50% - 4px);
  }
}
body.home #method .box {
  margin: 0 0 32px;
}
body.home #method .box .method-ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  font-size: min(32px, 32px * 100vw / 1030px);
  font-weight: 700;
  line-height: 1.5;
  color: #ffffff;
  background-color: #4aacec;
  border-radius: 16px 16px 0 0;
}
@media screen and (max-width: 768px) {
  body.home #method .box .method-ttl {
    flex-direction: column;
    height: auto;
    padding: 12px;
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  body.home #method .box .method-ttl .big {
    font-size: 28px;
  }
}
body.home #method .box .list {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  padding: 42px 57.5px 32px;
  background-color: #f3fbff;
  border-radius: 0 0 16px 16px;
}
@media screen and (max-width: 1440px) {
  body.home #method .box .list {
    padding: 32px 16px;
  }
}
@media screen and (max-width: 768px) {
  body.home #method .box .list {
    gap: 48px;
  }
}
body.home #method .box .list .item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: calc(33.3333333333% - 29.3333333333px);
  padding: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  body.home #method .box .list .item {
    flex-direction: row;
    gap: 16px;
    width: 100%;
  }
}
body.home #method .box .list .item .fig {
  position: relative;
  width: calc(100% - 30px);
  margin: 0 15px;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  body.home #method .box .list .item .fig {
    width: 120px;
    max-width: 120px;
    margin: 0;
    flex: 1;
  }
}
body.home #method .box .list .item .fig .wrap {
  position: relative;
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
}
body.home #method .box .list .item .fig .wrap img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
body.home #method .box .list .item .fig .wrap::before {
  content: "";
  display: block;
  padding-top: 100%;
}
body.home #method .box .list .item .fig .num {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(48px, 48px * 100vw / 1030px);
  height: min(48px, 48px * 100vw / 1030px);
  font-size: min(24px, 24px * 100vw / 1030px);
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  color: #ffffff;
  background-color: #f2b50d;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  body.home #method .box .list .item .fig .num {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  body.home #method .box .list .item .info {
    text-align: left;
    flex: 1;
  }
}
body.home #method .box .list .item .info .ttl {
  font-size: min(19.8px, 19.8px * 100vw / 1280px);
  letter-spacing: min(0.7px, 0.7px * 100vw / 1030px);
  font-weight: 700;
  line-height: 1.4;
  color: #2c88c4;
}
@media screen and (max-width: 768px) {
  body.home #method .box .list .item .info .ttl {
    font-size: 18px;
    letter-spacing: 0.7px;
  }
}
body.home #method .box .list .item .info .txt {
  font-size: min(16px, 16px * 100vw / 1280px);
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  body.home #method .box .list .item .info .txt {
    font-size: 14px;
  }
}
body.home #method .box .list .item::after {
  content: "";
  position: absolute;
  right: -32px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 16px;
  background: url("../img/method/icon-arrow.svg") no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  body.home #method .box .list .item::after {
    right: unset;
    left: 50%;
    top: unset;
    bottom: -32px;
    transform: translateX(-50%) rotate(90deg);
    width: 16px;
    height: 12px;
  }
}
body.home #method .box .list .item:last-child::after {
  content: none;
}
body.home #archivement {
  padding: 80px 0;
  display: none;
}
body.home #archivement .list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 0 24.5px;
}
body.home #archivement .list .item {
  width: calc(33.3333333333% - 21.3333333333px);
}
body.home #archivement .list .item .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 8px;
}
body.home #archivement .list .item .head h4 {
  font-size: min(20px, 20px * 100vw / 1030px);
  font-weight: 700;
  line-height: 1.3;
}
body.home #archivement .list .item .head h4 span {
  display: block;
  width: fit-content;
}
body.home #archivement .list .item .head p {
  text-align: center;
  font-size: min(14px, 14px * 100vw / 1030px);
  font-weight: 500;
  line-height: 1.5;
}
body.home #archivement .list .item .head p .rank {
  display: block;
  width: 100%;
  padding: 0 12px;
  color: #ffffff;
  background-color: #2c88c4;
  border-radius: 4px;
}
body.home #archivement .list .item .head p .date {
  display: block;
  width: fit-content;
  margin-top: 4px;
  color: #988989;
}
body.home #archivement .list .item .fig {
  position: relative;
  width: 100%;
  margin: 0 0 12px;
  border-radius: 8px;
  overflow: hidden;
}
body.home #archivement .list .item .fig::before {
  content: "";
  display: block;
  padding-top: 60%;
}
body.home #archivement .list .item .fig img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
body.home #archivement .list .item .price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 40px;
  margin: 0 0 8px;
  padding: 0 16px;
  background-color: #f0c819;
  border-radius: 4px;
}
body.home #archivement .list .item .price .ttl {
  font-size: min(14px, 14px * 100vw / 1030px);
  font-weight: 500;
  line-height: 1.5;
}
body.home #archivement .list .item .price .value {
  font-size: min(20px, 20px * 100vw / 1030px);
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  line-height: 1.3;
}
body.home #archivement .list .item .price .value .amount {
  font-size: min(28px, 28px * 100vw / 1030px);
}
body.home #archivement .list .item .review {
  font-size: min(14px, 14px * 100vw / 1030px);
  font-weight: 500;
  line-height: 1.5;
}
body.home #reason {
  margin-top: 80px;
  padding: 64px 32px 48px;
  background-color: #f3fbff;
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  body.home #reason {
    margin-top: 48px;
    margin-left: -16px;
    margin-right: -16px;
    padding: 48px 16px;
  }
}
body.home #reason .reason-ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 0 32px;
}
@media screen and (max-width: 768px) {
  body.home #reason .reason-ttl {
    gap: 8px;
    margin-left: -8px;
    margin-right: -8px;
  }
}
body.home #reason .reason-ttl .laurel {
  width: min(35px, 35px * 100vw / 1030px);
}
@media screen and (max-width: 768px) {
  body.home #reason .reason-ttl .laurel {
    width: 35px;
  }
}
body.home #reason .reason-ttl .text {
  text-align: center;
  font-size: min(24px, 24px * 100vw / 1030px);
  font-weight: 700;
  line-height: 1.5;
  color: #2c88c4;
}
@media screen and (max-width: 768px) {
  body.home #reason .reason-ttl .text {
    font-size: 20px;
  }
}
body.home #reason .reason-ttl .text .big {
  display: block;
  font-size: min(32px, 32px * 100vw / 1030px);
}
@media screen and (max-width: 768px) {
  body.home #reason .reason-ttl .text .big {
    font-size: 32px;
  }
}
body.home #reason .reason-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 12.5px;
  margin: 0 0 32px;
}
body.home #reason .reason-list .item {
  position: relative;
  display: flex;
  flex-direction: column;
  width: calc(33.3333333333% - 8.3333333333px);
  padding: min(16px, 16px * 100vw / 1280px);
  background-color: #ffffff;
  border: 1px dashed #2c88c4;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  body.home #reason .reason-list .item {
    width: 100%;
    padding: 16px;
  }
}
body.home #reason .reason-list .item .meta {
  display: flex;
  gap: 3px;
  position: absolute;
  right: 10px;
  top: -1px;
  display: flex;
  z-index: 1;
}
body.home #reason .reason-list .item .meta .mark {
  display: flex;
  align-items: center;
  gap: 1.5px;
  padding: 4px 8px;
  border-radius: 0 0 8px 8px;
}
body.home #reason .reason-list .item .meta .mark .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
body.home #reason .reason-list .item .meta .mark .text {
  font-size: min(18px, 18px * 100vw / 1030px);
  font-weight: 700;
  line-height: 1.5;
  color: #ffffff;
}
body.home #reason .reason-list .item .meta .mark.blue {
  background-color: #2c88c4;
}
body.home #reason .reason-list .item .meta .mark.yellow {
  background-color: #f2b50d;
}
body.home #reason .reason-list .item .fig {
  position: relative;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  body.home #reason .reason-list .item .fig {
    margin-bottom: 8px;
  }
}
body.home #reason .reason-list .item .fig::before {
  content: "";
  display: block;
  padding-top: 56%;
}
body.home #reason .reason-list .item .fig img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
body.home #reason .reason-list .item .txt {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 1;
  text-align: center;
  font-size: min(20px, 20px * 100vw / 1440px);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 1280px) {
  body.home #reason .reason-list .item .txt {
    font-size: min(16px, 16px * 100vw / 1280px);
  }
}
@media screen and (max-width: 768px) {
  body.home #reason .reason-list .item .txt {
    font-size: 20px;
  }
}
body.home #reason .reason-list .item .txt span {
  font-size: min(24px, 24px * 100vw / 1440px);
  color: #2c88c4;
}
@media screen and (max-width: 1280px) {
  body.home #reason .reason-list .item .txt span {
    font-size: min(20px, 20px * 100vw / 1280px);
  }
}
@media screen and (max-width: 768px) {
  body.home #reason .reason-list .item .txt span {
    font-size: 24px;
  }
}
body.home #reason .reason-list .item .lnk {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  margin: 0 -6px;
  margin-top: 8px;
  padding: 0 8px;
  background-color: #fa5a5a;
  border-radius: 4px;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.16);
  display: none;
}
body.home #reason .reason-list .item .lnk .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
body.home #reason .reason-list .item .lnk .text {
  font-size: min(16px, 16px * 100vw / 1030px);
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
}
body.home #reason .reason-list .arrow {
  position: absolute;
  right: 32px;
  bottom: -40px;
}
body.home #reason .box {
  margin: 0 0 32px;
  border-radius: 16px;
  overflow: hidden;
}
body.home #reason .box .ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  width: 100%;
  height: 70px;
  color: #ffffff;
  background-color: #4aacec;
}
@media screen and (max-width: 1280px) {
  body.home #reason .box .ttl {
    flex-direction: column;
    gap: 8px;
    height: auto;
    padding: 12px;
  }
}
body.home #reason .box .ttl .left {
  text-align: center;
  font-size: min(24px, 24px * 100vw / 1030px);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  body.home #reason .box .ttl .left {
    font-size: 16px;
  }
}
body.home #reason .box .ttl .left .big {
  display: block;
}
@media screen and (max-width: 768px) {
  body.home #reason .box .ttl .left .big {
    font-size: 28px;
    line-height: 1.2;
  }
}
body.home #reason .box .ttl .right {
  font-size: min(18px, 18px * 100vw / 1030px);
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  body.home #reason .box .ttl .right {
    font-size: 18px;
  }
}
body.home #reason .box .base-list {
  display: flex;
  flex-wrap: wrap;
}
body.home #reason .box .base-list .item {
  width: 20%;
  padding: 16px 8px 12px;
}
@media screen and (max-width: 768px) {
  body.home #reason .box .base-list .item {
    display: flex;
    width: 100%;
    padding: 8px 16px;
  }
}
body.home #reason .box .base-list .item .circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  font-size: min(24px, 24px * 100vw / 1030px);
  font-weight: 700;
  line-height: 1.5;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  body.home #reason .box .base-list .item .circle {
    width: 32px;
    height: 32px;
    font-size: 20px;
  }
}
body.home #reason .box .base-list .item .fig {
  margin-top: -16px;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  body.home #reason .box .base-list .item .fig {
    width: 112px;
    margin: 0;
  }
}
body.home #reason .box .base-list .item .txt {
  font-size: min(16px, 16px * 100vw / 1030px);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  body.home #reason .box .base-list .item .txt {
    font-size: min(14px, 14px * 100vw / 1280px);
  }
}
@media screen and (max-width: 768px) {
  body.home #reason .box .base-list .item .txt {
    width: calc(100% - 152px);
    margin: 0 0 0 8px;
    font-size: 14px;
  }
}
body.home #reason .box .base-list .item:nth-child(1) {
  background-color: #d7f2ff;
}
body.home #reason .box .base-list .item:nth-child(1) .circle {
  background-color: #a3d8f2;
}
body.home #reason .box .base-list .item:nth-child(2) {
  background-color: #def4ff;
}
body.home #reason .box .base-list .item:nth-child(2) .circle {
  background-color: #b2daed;
}
body.home #reason .box .base-list .item:nth-child(3) {
  background-color: #e3f6ff;
}
body.home #reason .box .base-list .item:nth-child(3) .circle {
  background-color: #bcdae8;
}
body.home #reason .box .base-list .item:nth-child(4) {
  background-color: #e4f0f6;
}
body.home #reason .box .base-list .item:nth-child(4) .circle {
  background-color: #cdd7db;
}
body.home #reason .box .base-list .item:nth-child(5) {
  background-color: #ebf0f2;
}
body.home #reason .box .base-list .item:nth-child(5) .circle {
  background-color: #d4d9db;
}
body.home #middle {
  padding: 48px 0;
}
@media screen and (max-width: 768px) {
  body.home #middle {
    margin: 0 -8px;
    padding: 32px 0;
  }
}
body.home #regions {
  padding: 48px 60.5px;
  background-color: #f3fbff;
  border-radius: 16px;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 1280px) {
  body.home #regions {
    padding: min(48px, 48px * 100vw / 1280px);
  }
}
@media screen and (max-width: 768px) {
  body.home #regions {
    margin: 0 -16px;
    padding: 48px 16px;
  }
}
body.home #regions .regions-ttl {
  text-align: center;
  margin: 0 0 32px;
  font-size: min(32px, 32px * 100vw / 1030px);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  body.home #regions .regions-ttl {
    font-size: 28px;
  }
}
body.home #regions .region-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  body.home #regions .region-list {
    gap: 16px;
  }
}
body.home #regions .region-list .region-item {
  display: flex;
  flex-direction: column;
  width: calc(33.3333333333% - 21.3333333333px);
  border-radius: 16px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  body.home #regions .region-list .region-item {
    width: 100%;
  }
}
body.home #regions .region-list .region-item .region-ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 43px;
  font-size: min(18px, 18px * 100vw / 1030px);
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
  background-color: #2c88c4;
}
@media screen and (max-width: 1040px) {
  body.home #regions .region-list .region-item .region-ttl {
    height: auto;
    padding: 4px;
    font-size: 18px;
  }
}
body.home #regions .region-list .region-item .prefectures {
  flex: 1;
  padding: 24px 32px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 16px 16px;
}
@media screen and (max-width: 1280px) {
  body.home #regions .region-list .region-item .prefectures {
    padding: min(24px, 24px * 100vw / 1280px) min(16px, 16px * 100vw / 1280px);
  }
}
@media screen and (max-width: 1040px) {
  body.home #regions .region-list .region-item .prefectures {
    padding: 16px;
  }
}
@media screen and (max-width: 768px) {
  body.home #regions .region-list .region-item .prefectures {
    padding: 16px 32px;
  }
}
body.home #regions .region-list .region-item .prefectures .prefecture-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
}
@media screen and (max-width: 768px) {
  body.home #regions .region-list .region-item .prefectures .prefecture-list {
    gap: 16px 13px;
  }
}
body.home #regions .region-list .region-item .prefectures .prefecture-list li {
  width: calc(50% - 16px);
}
@media screen and (max-width: 768px) {
  body.home #regions .region-list .region-item .prefectures .prefecture-list li {
    width: calc(33.3333333333% - 8.6666666667px);
    text-align: center;
  }
}
body.home #regions .region-list .region-item .prefectures .prefecture-list li a {
  font-size: min(16px, 16px * 100vw / 1280px);
  font-weight: 500;
  line-height: 1.5;
  color: #333333;
  text-decoration: none;
}
@media screen and (max-width: 1040px) {
  body.home #regions .region-list .region-item .prefectures .prefecture-list li a {
    font-size: 16px;
  }
}
body.home #others {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  body.home #others {
    padding: 64px 0;
  }
}
body.home #others .others-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: min(0px, 0px * 100vw / 1030px) min(44.5px, 44.5px * 100vw / 1030px);
}
@media screen and (max-width: 1280px) {
  body.home #others .others-list {
    padding: min(0px, 0px * 100vw / 1280px) min(24px, 24px * 100vw / 1280px);
  }
}
body.home #others .others-list .others-item {
  width: calc(20% - 12.8px);
  padding: 16px 8px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 0px 8px 0px rgba(44, 136, 196, 0.48);
}
@media screen and (max-width: 768px) {
  body.home #others .others-list .others-item {
    width: calc(50% - 8px);
  }
}
body.home #others .others-list .others-item .fig {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 8px;
}
body.home #others .others-list .others-item .fig img {
  max-width: 100%;
  height: auto;
}
body.home #others .others-list .others-item .ttl {
  text-align: center;
  font-size: min(18px, 18px * 100vw / 1280px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.72px;
  color: #2c88c4;
}
@media screen and (max-width: 768px) {
  body.home #others .others-list .others-item .ttl {
    font-size: 18px;
  }
}
body.home .cta {
  padding: 26px 0 0;
}
body.home .cta .btn-line {
  width: fit-content;
  height: 64px;
  margin: 0 auto;
}
body.home .cta .btn-line .caption .icon {
  width: 36px;
  height: 36px;
}
body.home .cta .btn-line .caption .text {
  font-size: 24px;
}
body.home .cta .btn-line .caption .text .big {
  font-size: 32px;
}
body.home .cta .btn-line .head {
  top: -26px;
  font-size: 20px;
}
body.home .cta .btn-line .head .num {
  font-size: 30px;
}
body.home aside #flow .flow-ttl {
  display: flex;
  align-items: center;
  margin: 0 0 16px;
  font-size: min(20px, 20px * 100vw / 1030px);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  body.home aside #flow .flow-ttl {
    font-size: 20px;
  }
}
body.home aside #flow .flow-ttl .logo {
  margin-right: 8px;
  font-family: "Open Sans", sans-serif;
  font-size: min(32px, 32px * 100vw / 1030px);
  color: #4cace9;
}
@media screen and (max-width: 768px) {
  body.home aside #flow .flow-ttl .logo {
    font-size: 32px;
  }
}
@media screen and (max-width: 1040px) {
  body.home aside #flow .flow-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  body.home aside #flow .flow-list {
    gap: 0;
  }
}
body.home aside #flow .flow-list .flow-step {
  margin: 0 0 24px;
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 1440px) {
  body.home aside #flow .flow-list .flow-step {
    padding: 16px;
  }
}
@media screen and (max-width: 1040px) {
  body.home aside #flow .flow-list .flow-step {
    width: calc(33.3333333333% - 16px);
  }
}
@media screen and (max-width: 768px) {
  body.home aside #flow .flow-list .flow-step {
    width: 100%;
  }
}
body.home aside #flow .flow-list .flow-step .step-ttl {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 0 8px;
  font-size: min(20px, 20px * 100vw / 1030px);
  font-weight: 500;
  line-height: 1;
  color: #2c88c4;
}
@media screen and (max-width: 768px) {
  body.home aside #flow .flow-list .flow-step .step-ttl {
    font-size: 20px;
  }
}
body.home aside #flow .flow-list .flow-step .step-ttl .num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-family: "Poppins", sans-serif;
  font-size: min(15px, 15px * 100vw / 1030px);
  font-weight: 700;
  border: 1px solid #2c88c4;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  body.home aside #flow .flow-list .flow-step .step-ttl .num {
    font-size: 15px;
  }
}
body.home aside #flow .flow-list .flow-step .step-txt {
  margin: 0 0 16px;
  font-size: min(16px, 16px * 100vw / 1030px);
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  body.home aside #flow .flow-list .flow-step .step-txt {
    font-size: 16px;
  }
}
body.home aside #flow .flow-list .flow-step .step-img {
  border-radius: 8px;
  overflow: hidden;
}
body.home aside #flow .flow-list .flow-step .step-img img {
  width: 100%;
  height: auto;
}
body.home aside #flow .flow-cta {
  margin: 0 0 24px;
  padding: 24px 0;
}
@media screen and (max-width: 1040px) {
  body.home aside #flow .flow-cta {
    width: 320px;
    margin: 0 auto;
  }
}
body.home aside #flow .flow-cta .btn-line {
  justify-content: space-between;
  height: 64px;
}
body.home aside #flow .flow-cta .btn-line .caption .icon {
  width: 42px;
  height: 42px;
}
body.home aside #flow .flow-cta .btn-line .caption .text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  margin-top: 4px;
  text-align: center;
  line-height: 1.1;
  font-size: min(16px, 16px * 100vw / 1280px);
}
@media screen and (max-width: 1040px) {
  body.home aside #flow .flow-cta .btn-line .caption .text {
    font-size: 16px;
  }
}
body.home aside #flow .flow-cta .btn-line .caption .text .big {
  display: block;
  font-size: min(22px, 22px * 100vw / 1280px);
}
@media screen and (max-width: 1040px) {
  body.home aside #flow .flow-cta .btn-line .caption .text .big {
    font-size: 22px;
  }
}
body.home aside #flow .flow-cta .btn-line .head {
  top: -22px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  gap: 8px;
  width: 180px;
  height: 32px;
  padding: 0 8px;
  font-size: 16px;
  border-radius: 8px;
}
body.home aside #flow .flow-cta .btn-line .head .simple {
  display: inline-block;
  padding: 4px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #fa5a5a;
  background-color: #ffffff;
  border-radius: 4px;
}
body.home aside #flow .flow-cta .btn-line .head .text {
  flex: 1;
  display: inline-block;
  width: fit-content;
  font-size: min(16px, 16px * 100vw / 1030px);
  letter-spacing: 0;
}
@media screen and (max-width: 1040px) {
  body.home aside #flow .flow-cta .btn-line .head .text {
    font-size: 16px;
  }
}
body.home aside #flow .flow-cta .btn-line .head .text .num {
  font-family: "Poppins", sans-serif;
  font-size: min(24px, 24px * 100vw / 1030px);
}
@media screen and (max-width: 1040px) {
  body.home aside #flow .flow-cta .btn-line .head .text .num {
    font-size: 24px;
  }
}
body.home aside #flow .flow-cta .btn-line::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 22px;
  left: 50%;
  top: -22px;
  transform: translateX(-50%);
  border-radius: 8px;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.24);
  z-index: -1;
}
body.home aside .location-widget {
  margin: 0 0 24px;
  border-radius: 8px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.08);
  display: none;
}
body.home aside .location-widget .location-ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 63px;
  text-align: center;
  background-color: #4aacec;
  border-radius: 8px 8px 0 0;
}
body.home aside .location-widget .location-ttl .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}
body.home aside .location-widget .location-ttl .text {
  text-align: center;
  font-size: min(14px, 14px * 100vw / 1030px);
}
body.home aside .location-widget .location-ttl .text .big {
  font-size: min(20px, 20px * 100vw / 1030px);
}
body.home aside .location-widget .location-tags {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px;
  background-color: #f3fbff;
}
body.home aside .location-widget .location-tags li a {
  display: block;
  padding: 4px 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  background-color: #ffffff;
  border: 1px solid #333333;
  border-radius: 999px;
  text-decoration: none;
}
body.home aside .location-widget .location-tags li a:hover {
  background-color: #f0f0f0;
}
body.home aside .area-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 80px;
  margin: 0 0 20px;
  padding: 0 27.5px;
  border-radius: 8px;
  color: #ffffff;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.24);
  display: none;
}
body.home aside .area-btn .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
body.home aside .area-btn .text {
  flex: 1;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
}
body.home aside .area-btn .text .big {
  font-size: 20px;
}
body.home aside .area-btn.pink {
  background-color: #fa5a5a;
}
body.home aside .area-btn.yellow {
  background-color: #ffc107;
}

.p-column__time {
  font-size: 12px;
  color: #666666;
  margin-bottom: 16px;
  text-align: right;
}
.p-column__btn-line-img {
  width: 100%;
}
.p-column__btn-line {
  margin: 0 auto;
  text-align: center;
  width: 355px;
  display: block;
  margin-bottom: 16px;
}
.p-column__btn {
  margin: 0 auto;
  margin-top: 16px;
  margin-bottom: 16px;
  width: 347px;
  height: 82px;
  border-radius: 20px;
  background-color: #00e6ff;
  color: #fff !important;
  font-weight: 700;
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
.p-column__white-box {
  margin-bottom: 16px;
  padding: 26px;
  width: 100%;
  background-color: #fff;
  font-size: 16px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 21px;
}
.p-column__img-box {
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 21px;
  margin-bottom: 16px;
  padding: 26px;
  width: 100%;
  background-color: #fff;
  font-size: 16px;
  display: flex;
  flex-direction: row;
  column-gap: 11px;
}
@media screen and (max-width: 768px) {
  .p-column__img-box {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 25px;
  }
}
.p-column__box-img {
  flex-shrink: none;
  width: 120px;
  height: 120px;
  border-radius: 50%;
}
.p-column__btn-text {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.p-column__btn-arrow {
  width: 25px;
}
.p-column__other-link {
  border: 3px solid #ff6e6e;
  padding: 17px 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  column-gap: 43px;
}
@media screen and (max-width: 768px) {
  .p-column__other-link {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 25px;
  }
}
.p-column__link-img {
  width: 125px;
  height: 82px;
}
.p-column__other-link-text {
  font-size: 18px;
}
.p-column__h1 {
  margin-bottom: 16px;
  font-size: 26px;
  font-weight: 700;
  color: #5fb2e8;
  padding: 10px 7px;
  border-bottom: 3px solid #5fb2e8;
  border-top: 3px solid #5fb2e8;
}
@media screen and (max-width: 768px) {
  .p-column__h1 {
    font-size: 22px;
  }
}
.p-column__thumbnail {
  margin-bottom: 11px;
  width: 100%;
  max-height: 450px;
  height: 450px;
  min-height: 450px;
}
@media screen and (max-width: 768px) {
  .p-column__thumbnail {
    max-height: 200px;
    height: 200px;
    min-height: 200px;
  }
}
.p-column__content {
  font-size: 18px;
  color: #222222;
}
@media screen and (max-width: 768px) {
  .p-column__content {
    font-size: 14px;
  }
}
.p-column__content h2 {
  margin-top: 16px;
  border-radius: 7px;
  font-size: 26px;
  font-weight: 700;
  padding-left: 20px;
  color: #fff;
  margin-bottom: 16px;
  background: linear-gradient(to right, #2b85c9, #e0f1ff);
}
@media screen and (max-width: 768px) {
  .p-column__content h2 {
    font-size: 18px;
  }
}
.p-column__content h3 {
  margin-bottom: 16px;
  padding-top: 3px;
  padding-bottom: 3px;
  font-size: 27px;
  font-weight: 700;
  color: #ff4800;
  background-color: #fff;
  padding-left: 10px;
  border-left: 5px solid #ff4800;
}
@media screen and (max-width: 768px) {
  .p-column__content h3 {
    font-size: 18px;
  }
}
.p-column__content h4 {
  font-size: 24px;
  font-weight: 700;
  color: #ff4800;
  padding-left: 35px;
  position: relative;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .p-column__content h4 {
    font-size: 18px;
  }
}
.p-column__content h4::before {
  content: "";
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  left: 5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #ff4800;
}
.p-column__content p {
  margin-bottom: 16px;
}
.p-column__content .weight {
  font-weight: 700;
}
.p-column__content .red {
  color: #c81414;
  font-weight: 700;
}
.p-column__content .red-line {
  background: linear-gradient(to bottom, transparent 0%, transparent 60%, #ff6969 60%, #ff6969 90%, transparent 90%, transparent 100%);
}

.p-column__table-of-contents {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 20px;
  width: 350px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.p-column__table-of-contents ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-column__table-of-contents li a {
  font-size: 12px;
  color: #333;
  text-decoration: none;
}
.p-column__table-of-contents li a:hover {
  text-decoration: underline;
}
.p-column__table-of-contents .p-column__table-of-contents-more {
  text-align: center;
}
.p-column__table-of-contents .p-column__table-of-contents-more a,
.p-column__table-of-contents .p-column__table-of-contents-close {
  color: #999999;
  cursor: pointer;
}
.p-column__table-of-contents .p-column__table-of-contents-close {
  font-size: 12px;
  color: #999;
  text-align: right;
  margin-top: 10px;
}

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