<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  border: none;
  line-height: 1em;
  box-sizing: border-box;
  font-weight: normal;
}

body {
  font-size: 16px;
  font-family: "Sawarabi Gothic", serif, sans-serif;
}
body a:hover {
  text-decoration: none !important;
}
body * {
  font-size: inherit;
  color: inherit;
  font-family: inherit;
}

header {
  width: 100%;
  position: relative;
}
header .top_label_wrap {
  width: 100%;
  padding: 5px 0;
  background: #eaeaea;
}
header .top_label_wrap p {
  max-width: 1024px;
  margin: 0 auto;
  font-size: 12px;
  padding: 5px;
  line-height: 1.3em;
}
@media screen and (max-width: 1024px) {
  header .top_label_wrap p {
    padding-right: 55px;
  }
}
header .logo_contact_wrap {
  max-width: 1024px;
  display: flex;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0 10px;
}
@media screen and (max-width: 1024px) {
  header .logo_contact_wrap {
    padding: 15px 0;
  }
}
header .logo_contact_wrap h1 {
  display: block;
  flex: 1;
}
header .logo_contact_wrap h1 a {
  display: block;
  max-width: 100%;
  padding-left: 10px;
}
header .logo_contact_wrap h1 a img {
  display: block;
  max-width: 100%;
}
header .logo_contact_wrap .tel {
  display: block;
  flex: 2;
}
header .logo_contact_wrap .tel p.top_info {
  padding: 5px 5px 0;
  width: 100%;
  font-size: 10px;
  text-align: right;
  line-height: 1.2em;
  display: none;
}
@media screen and (min-width: 1025px) {
  header .logo_contact_wrap .tel p.top_info {
    display: block;
  }
}
header .logo_contact_wrap .tel a {
  display: block;
  padding-right: 10px;
  margin-left: auto;
  max-width: 50%;
}
header .logo_contact_wrap .tel a img {
  margin-left: auto;
  display: block;
  max-width: 100%;
}
header nav {
  /* モバイル用非表示設定 */
}
@media screen and (min-width: 1025px) {
  header nav {
    display: block;
    margin-top: 10px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    background: linear-gradient(to bottom, #f0f0f0, #e2e2e2);
  }
  header nav ul {
    display: flex !important;
    width: 1024px;
    margin: 0 auto;
    list-style: none;
  }
  header nav ul li {
    flex: 1;
    text-align: center;
    border-left: 1px solid #ccc;
  }
  header nav ul li:last-of-type {
    border-right: 1px solid #ccc;
  }
  header nav ul li a {
    display: block;
    padding: 20px 0;
    color: #333;
    text-decoration: none;
  }
  header nav ul li a.select, header nav ul li a:hover {
    background: #333;
    color: #fff;
  }
}
@media screen and (max-width: 1024px) {
  header nav ul {
    list-style: none;
    display: block;
    justify-content: space-around;
    position: fixed;
    top: 0;
    left: -100%;
    width: 80vw;
    height: 100%;
    background-color: rgba(51, 51, 51, 0.9);
    padding-top: 60px;
    transition: left 0.3s ease-in-out;
    z-index: 10000;
  }
  header nav ul li {
    border-bottom: 1px solid #fff;
  }
  header nav ul a {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 20px;
  }
  header nav ul a:hover {
    background: #fff;
    color: #333;
  }
}
header nav .menu-toggle {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  padding: 10px;
  z-index: 1000;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
  height: 44px;
  background: #fff;
  /* スマホ表示の際にメニューボタンを表示 */
}
header nav .menu-toggle span {
  width: 30px;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  header nav .menu-toggle {
    display: flex;
  }
}
header nav .menu-toggle.open span:nth-child(1) {
  transform: translateX(10px) rotate(45deg) translateY(12px);
}
header nav .menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
header nav .menu-toggle.open span:nth-child(3) {
  transform: translateX(10px) rotate(-45deg) translateY(-12px);
}
header nav .open-menu {
  left: 0;
}

.flex_footer {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .flex_footer {
    display: block;
  }
}
.flex_footer ul {
  background: #000;
  display: flex;
  gap: 0 1px;
  margin: 0;
}
.flex_footer ul li {
  display: block;
  flex: 1;
}
.flex_footer ul li:nth-of-type(2n + 1) {
  background: #479b9c;
}
.flex_footer ul li:nth-of-type(2n + 2) {
  background: #ea6d89;
}
.flex_footer ul li a {
  display: block;
  padding: 20px 0;
  text-align: center;
  text-decoration: none;
  color: #fff;
}
.flex_footer ul li a:hover {
  opacity: 0.8;
}
.flex_footer ul li a i {
  display: inline-block;
  margin-right: 10px;
}

footer {
  background: #ededed;
  padding: 20px 0;
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  footer {
    padding: 20px 0 80px;
  }
}
footer .footer {
  max-width: 1024px;
  margin: 0 auto;
}
footer .footer .logo_contact {
  justify-content: space-between;
}
@media screen and (min-width: 1025px) {
  footer .footer .logo_contact {
    display: flex;
  }
}
@media screen and (max-width: 1024px) {
  footer .footer .logo_contact {
    display: block;
    padding: 10px;
  }
  footer .footer .logo_contact p.logo {
    width: 300px;
    margin-bottom: 30px;
  }
  footer .footer .logo_contact div.contact p {
    text-align: left;
  }
}
footer .footer .logo_contact .logo {
  flex: 1;
}
footer .footer .logo_contact .logo a {
  display: block;
}
footer .footer .logo_contact .logo a img {
  display: block;
  width: 100%;
}
footer .footer .logo_contact .contact {
  flex: 2;
}
footer .footer .logo_contact .contact p {
  font-size: 12px;
  text-align: right;
  margin-bottom: 10px;
}
footer .footer .logo_contact .contact p.tel {
  font-size: 24px;
}
footer .footer .logo_contact .contact p.button a {
  display: inline-block;
  padding: 8px 10px;
  background: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 2px;
}
footer .footer nav {
  padding: 0 10px;
}
footer .footer nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
}
footer .footer nav ul li {
  display: block;
  padding: 10px 0;
}
@media screen and (max-width: 1024px) {
  footer .footer nav ul li {
    min-width: 40%;
  }
}

.pankuzu_wrap {
  display: block;
  background: #666;
}
.pankuzu_wrap ul {
  display: flex;
  max-width: 1024px;
  margin: 0 auto;
}
.pankuzu_wrap ul li {
  display: flex;
  color: #fff;
  padding: 5px 20px 5px 10px;
  font-size: 12px;
  position: relative;
  margin-right: 5px;
}
.pankuzu_wrap ul li:after {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  content: " ";
  margin-left: 10px;
  transform: translateY(-4px) rotate(30deg); /* 斜めにする */
  width: 10px;
  height: 25px;
  border-right: 1px solid #fff;
}
.pankuzu_wrap ul li:first-of-type {
  border-left: 1px solid #fff;
}
.pankuzu_wrap ul li:last-of-type:after {
  display: none;
}

.gototop {
  max-width: 1024px;
  margin: 100px auto 0;
}
.gototop p a {
  display: block;
  text-indent: -99999px;
  border-top: 3px solid #999;
  border-left: 3px solid #999;
  transform: rotate(45deg);
  width: 40px;
  height: 40px;
  margin: 0 auto;
}

.flexslider_wrap {
  position: relative;
  background: #f0f0f0;
  padding: 10px 10px 30px;
}

.flexslider {
  position: relative;
}
.flexslider.main {
  max-width: 800px;
  margin: 0 auto;
}
.flexslider.sub {
  width: 100%;
  margin: 10px 0;
}
.flexslider.sub .slides a {
  border: 1px solid #ccc;
  padding: 5px 0;
}
.flexslider.sub .slides a img {
  width: auto;
  height: 40px;
  margin: 0 auto;
}
.flexslider .slides a {
  display: block;
}
.flexslider .slides a img {
  display: block;
  width: 100%;
}
.flexslider .flex-control-nav {
  bottom: -20px;
}
.flexslider .flex-direction-nav a {
  font-size: 24px;
  width: 24px;
  height: 24px;
  top: calc(50% + 10px);
}
.flexslider .flex-direction-nav a:before {
  font-size: 24px;
  text-shadow: 0 0 5px #fff;
}

.fullsize .topimage {
  width: 100%;
  min-height: 85vh;
  position: relative;
}
.fullsize .topimage div.image {
  width: 100%;
  height: 100%;
  background: #000;
}
.fullsize .topimage div.image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  opacity: 0.6;
}
.fullsize .topimage div.arrow_wrap {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .fullsize .topimage div.arrow_wrap {
    bottom: 30%;
  }
}
@media screen and (max-width: 1024px) {
  .fullsize .topimage div.arrow_wrap {
    bottom: 30%;
  }
}
.fullsize .topimage div.arrow_wrap p {
  text-align: center;
}
.fullsize .topimage div.arrow_wrap p a {
  color: #fff;
  text-decoration: none;
}
.fullsize .topimage div.arrow_wrap p a span {
  display: block;
  margin-top: 25px;
  font-size: 10px;
}
.fullsize .topimage div.arrow_wrap p a i {
  color: #fff;
  font-size: 32px;
  animation: moveDown 2s ease-out infinite;
}
@keyframes moveDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(20px); /* ここでディレイを挟むために同じ位置を維持 */
  }
}
.fullsize .topimage div.text_wrap {
  z-index: 1;
  position: absolute;
  width: 80vw;
  max-width: 600px;
}
@media screen and (min-width: 1025px) {
  .fullsize .topimage div.text_wrap {
    left: 0;
    right: 0;
    margin: auto;
    top: 30%;
  }
  .fullsize .topimage div.text_wrap .text {
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  .fullsize .topimage div.text_wrap {
    left: 5vw;
    bottom: 55%;
  }
}
.fullsize .topimage div.text_wrap .text {
  font-family: "sawrabi mincho";
  line-height: 1.5em;
  font-size: 48px;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .fullsize .topimage div.text_wrap .text {
    font-size: 32px;
  }
}

.main_fullsize {
  width: 100%;
  background: #000;
}
.main_fullsize h2 {
  position: relative;
  padding: 80px 0;
  margin: 30px 0;
  background-image: url(../images/sell/top_fullsizeimage.jpg);
  background-size: cover;
  background-position: center;
  text-align: center;
}
.main_fullsize h2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.4); /* 白色の半透明オーバーレイ */
  pointer-events: none; /* 背景に対するクリック操作を有効にする */
}
.main_fullsize h2 span {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 32px;
}

@media screen and (max-width: 1024px) {
  .pconly {
    display: none !important;
  }
}

.main_content {
  display: block;
  max-width: 1024px;
  margin: 0 auto;
}
.main_content h2 {
  font-size: 24px;
  margin: 60px 10px;
  line-height: 1em;
  text-align: center;
}
.main_content h2:after {
  display: block;
  content: "";
  width: 40px;
  height: 0px;
  border-bottom: 3px solid #333;
  margin: 40px auto 0;
}
.main_content h3 {
  margin-top: 50px;
  font-size: 20px;
  text-align: center;
}
.main_content h4 {
  font-size: 18px;
  padding-left: 40px;
}
.main_content h4:first-letter {
  font-weight: bold;
  color: #ea6d89;
}
.main_content .normal_text p {
  line-height: 1.5em;
}
.main_content .imageitems {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .main_content .imageitems {
    display: block;
    margin: 0 10px;
  }
}
.main_content .imageitems div.imageitem {
  width: 30%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .main_content .imageitems div.imageitem {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
}
.main_content .imageitems div.imageitem a p.image img {
  display: block;
  width: 100%;
  object-fit: contain;
}
.main_content .imageitems div.imageitem a p.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 15px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
}
.main_content .table_wrap {
  margin-bottom: 30px;
}
.main_content .table_wrap table {
  border-spacing: 0;
}
@media screen and (min-width: 1025px) {
  .main_content .table_wrap table {
    width: 100%;
    min-width: 1024px;
  }
}
@media screen and (max-width: 1024px) {
  .main_content .table_wrap table.vertical {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .main_content .table_wrap table.vertical tr {
    display: block;
  }
}
@media screen and (min-width: 1025px) {
  .main_content .table_wrap table.vertical tr:nth-of-type(2n + 1) th,
  .main_content .table_wrap table.vertical tr:nth-of-type(2n + 1) td {
    background: #f0f0f0;
  }
}
.main_content .table_wrap table.vertical tr th,
.main_content .table_wrap table.vertical tr td {
  padding: 30px 20px;
  line-height: 2em;
}
@media screen and (max-width: 1024px) {
  .main_content .table_wrap table.vertical tr th,
  .main_content .table_wrap table.vertical tr td {
    display: block;
  }
}
.main_content .table_wrap table.vertical tr th {
  text-align: center;
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .main_content .table_wrap table.vertical tr th {
    text-align: left;
    width: 100%;
    background: #f0f0f0;
    padding: 10px 20px;
  }
}
.main_content .table_wrap table.vertical tr td {
  text-align: left;
  width: 70%;
}
@media screen and (max-width: 1024px) {
  .main_content .table_wrap table.vertical tr td {
    text-align: left;
    width: 100%;
    padding: 10px 20px 20px 30px;
    line-height: 1.5em;
  }
}
@media screen and (max-width: 1024px) {
  .main_content .table_wrap table.holizonal {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .main_content .table_wrap table.holizonal tr {
    display: flex;
    flex-wrap: wrap;
  }
}
.main_content .table_wrap table.holizonal tr:nth-of-type(2n + 1) th {
  background: #e0e0e0;
}
.main_content .table_wrap table.holizonal tr:nth-of-type(2n + 1) td {
  background: #f0f0f0;
}
.main_content .table_wrap table.holizonal tr th,
.main_content .table_wrap table.holizonal tr td {
  padding: 30px 20px;
}
@media screen and (max-width: 1024px) {
  .main_content .table_wrap table.holizonal tr th,
  .main_content .table_wrap table.holizonal tr td {
    width: 50%;
  }
  .main_content .table_wrap table.holizonal tr th.fullsize,
  .main_content .table_wrap table.holizonal tr td.fullsize {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .main_content .table_wrap table.holizonal tr th {
    padding: 5px;
    text-align: left;
  }
}
@media screen and (max-width: 1024px) {
  .main_content .table_wrap table.holizonal tr td {
    padding: 5px;
    text-align: left;
    line-height: 1.5em;
  }
}
@media screen and (min-width: 1025px) {
  .main_content .imagetext {
    display: flex;
    gap: 10px 0;
  }
}
@media screen and (max-width: 1024px) {
  .main_content .imagetext {
    display: block;
    padding: 0 20px;
  }
}
.main_content .imagetext.topspace {
  margin-top: 50px;
}
.main_content .imagetext &gt; div.text p {
  line-height: 1.5em;
}
.main_content .imagetext &gt; div.text p.centerbutton {
  text-align: center;
  line-height: 1em;
}
.main_content .imagetext &gt; div.text p a.button {
  padding: 15px 25px;
  border-radius: 5px;
  display: inline-block;
  background: #ea6d89;
  color: #fff;
  text-decoration: none;
}
.main_content .imagetext &gt; div.text p a.button:hover {
  opacity: 0.8;
}
@media screen and (min-width: 1025px) {
  .main_content .imagetext &gt; div {
    flex: 1;
  }
  .main_content .imagetext &gt; div.text {
    padding: 15px;
    background: #f0f0f0;
  }
  .main_content .imagetext &gt; div.text .centerbutton {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .main_content .imagetext &gt; div {
    display: block;
  }
  .main_content .imagetext &gt; div.text {
    padding: 15px;
  }
}
.main_content .imagetext &gt; div img {
  display: block;
  width: 100%;
}
.main_content .pagenation {
  margin: 30px 0;
  display: flex;
  justify-content: center;
  gap: 0 10px;
}
@media screen and (max-width: 1024px) {
  .main_content .pagenation {
    gap: 0 5px;
  }
}
.main_content .pagenation li {
  display: block;
}
.main_content .pagenation li.selected a, .main_content .pagenation li:hover a {
  background: #ea6d89;
  color: #fff;
}
.main_content .pagenation li.nolink {
  padding: 10px;
  line-height: 1em;
}
@media screen and (max-width: 1024px) {
  .main_content .pagenation li.nolink {
    padding: 5px;
  }
}
.main_content .pagenation li a {
  display: block;
  padding: 10px 15px;
  border: 1px solid #999;
  text-decoration: none;
  color: #999;
}
@media screen and (max-width: 1024px) {
  .main_content .pagenation li a {
    padding: 5px;
  }
}
.main_content .normaltext {
  margin: 30px 0;
  padding: 15px;
}
.main_content .normaltext.border {
  border: 1px solid #ccc;
}
.main_content .normaltext p {
  line-height: 1.8em;
}
.main_content .normaltext p.caution {
  font-size: 12px;
}
.main_content .normaltext p.image {
  margin: 30px 0;
}
.main_content .normaltext p.image img {
  display: block;
  max-width: 100%;
}
.main_content .normaltext iframe {
  width: 100%;
  margin: 0 auto;
}
.main_content .topview {
  position: relative;
}
.main_content .topview p img {
  object-fit: contain;
  display: block;
  width: 100%;
  margin: 0 auto;
}
.main_content .topview p.button {
  position: absolute;
  bottom: 20px;
  width: 100%;
  left: 0;
  text-align: center;
}
.main_content .topview p.button a {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  background: linear-gradient(to bottom, #df4036, #9d2117);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #617064;
}
.main_content .topview p.button a:hover {
  border: 2px solid #fff;
}
.main_content .jisseki_list_wrap .jisseki {
  display: flex;
  flex-wrap: wrap;
  padding: 15px;
}
.main_content .jisseki_list_wrap .jisseki:nth-of-type(2n + 1) {
  background: #f0f0f0;
}
.main_content .jisseki_list_wrap .jisseki div {
  margin-right: 10px;
  width: calc(16.6666666667% - 10px);
}
@media screen and (max-width: 1024px) {
  .main_content .jisseki_list_wrap .jisseki div {
    width: calc(33.3333333333% - 10px);
  }
  .main_content .jisseki_list_wrap .jisseki div:nth-of-type(-n + 4) {
    margin-bottom: 15px;
  }
  .main_content .jisseki_list_wrap .jisseki div:nth-of-type(-n + 4):nth-last-of-type(-n + 3) {
    /* スタイル */
    margin-bottom: 0;
  }
}
.main_content .jisseki_list_wrap .jisseki div.syozaiti {
  font-size: 20px;
  flex: none;
  width: 100%;
  margin-bottom: 10px;
  line-height: 1.5em;
  padding-bottom: 10px;
}
.main_content .jisseki_list_wrap .jisseki div span {
  display: block;
  font-size: 10px;
  margin-bottom: 5px;
  text-decoration: underline;
}
.main_content .jisseki_list_wrap .jisseki div p sup {
  font-size: 8px;
}
.main_content .infos {
  display: block;
  width: 100%;
  border-top: 1px solid #ccc;
}
@media screen and (max-width: 1024px) {
  .main_content .infos {
    margin: 0 20px;
  }
}
.main_content .infos .info {
  border-bottom: 1px solid #ccc;
  display: flex;
  align-items: center;
  padding: 20px 0;
}
.main_content .infos .info:hover {
  background: rgba(0, 0, 0, 0.1);
}
.main_content .infos .info a {
  text-decoration: underline;
}
.main_content .infos .info .date {
  width: 200px;
  text-align: center;
}
.main_content .infos .info .desc {
  flex: 1;
  line-height: 1.5em;
}
.main_content .infos .info .desc a {
  line-height: inherit;
}
.main_content .plans {
  margin-top: 50px;
  display: flex;
  gap: 0 20px;
}
@media screen and (max-width: 1024px) {
  .main_content .plans {
    margin: 0 20px;
    display: block;
  }
}
.main_content .plans .plan_wrap {
  flex: 1;
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 30px;
}
.main_content .plans .plan_wrap.kaitori {
  border: 3px solid #ea6d89;
  background: rgba(234, 109, 137, 0.2);
}
.main_content .plans .plan_wrap.kaitori .plan .number {
  background: #ea6d89;
  color: #fff;
}
.main_content .plans .plan_wrap.kaitori .plan .icon i {
  background: #ea6d89;
  color: #fff;
}
.main_content .plans .plan_wrap.kaitori .plan .button a {
  background: #ea6d89;
  color: #fff;
}
.main_content .plans .plan_wrap.chukai {
  border: 3px solid #479b9c;
  background: rgba(71, 155, 156, 0.2);
}
.main_content .plans .plan_wrap.chukai .plan .number {
  background: #479b9c;
  color: #fff;
}
.main_content .plans .plan_wrap.chukai .plan .icon i {
  background: #479b9c;
  color: #fff;
}
.main_content .plans .plan_wrap.chukai .plan .button a {
  background: #479b9c;
  color: #fff;
}
.main_content .plans .plan_wrap .plan .number {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  text-align: center;
  font-size: 20px;
  line-height: 30px;
  margin: 0 auto 15px;
}
.main_content .plans .plan_wrap .plan .title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.main_content .plans .plan_wrap .plan .icon {
  text-align: center;
  margin-bottom: 30px;
}
.main_content .plans .plan_wrap .plan .icon i {
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  line-height: 100px;
  font-size: 48px;
}
.main_content .plans .plan_wrap .plan .desc {
  line-height: 1.5em;
  margin-bottom: 20px;
}
.main_content .plans .plan_wrap .plan .button {
  text-align: center;
}
.main_content .plans .plan_wrap .plan .button a {
  display: inline-block;
  padding: 10px 15px;
  border-radius: 20px;
  text-decoration: none;
}
.main_content .flows {
  margin-top: 50px;
  display: flex;
  gap: 0 50px;
}
@media screen and (max-width: 1024px) {
  .main_content .flows {
    display: block;
    margin: 0 20px;
  }
}
.main_content .flows .flow {
  display: flex;
  gap: 10px 10px;
  flex: 1;
  flex-direction: column;
  margin-bottom: 30px;
}
.main_content .flows .flow.kaitori .title_item {
  background: #ea6d89;
  color: #fff;
}
.main_content .flows .flow.kaitori .item_wrap .title {
  color: #ea6d89;
}
.main_content .flows .flow.chukai .title_item {
  background: #479b9c;
  color: #fff;
}
.main_content .flows .flow.chukai .item_wrap .title {
  color: #479b9c;
}
.main_content .flows .flow .title_item {
  border-radius: 10px;
  padding: 30px 0;
  margin-bottom: 20px;
}
.main_content .flows .flow .title_item p {
  text-align: center;
  font-size: 24px;
}
.main_content .flows .flow .item_wrap .item {
  padding: 30px;
  background: #f0f0f0;
  color: #666;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .main_content .flows .flow .item_wrap .item {
    display: block;
  }
}
.main_content .flows .flow .item_wrap .item .image {
  display: block;
  width: 150px;
  margin-right: 10px;
}
@media screen and (max-width: 1024px) {
  .main_content .flows .flow .item_wrap .item .image {
    margin: 0 auto;
  }
}
.main_content .flows .flow .item_wrap .item .image img {
  display: block;
  width: 100%;
}
.main_content .flows .flow .item_wrap .item .textwrap {
  flex: 1;
}
.main_content .flows .flow .item_wrap .item .textwrap .title {
  font-size: 24px;
  margin-bottom: 30px;
  text-align: left;
  line-height: 1.5em;
}
@media screen and (max-width: 1024px) {
  .main_content .flows .flow .item_wrap .item .textwrap .title {
    text-align: center;
  }
}
.main_content .flows .flow .item_wrap .item .textwrap .desc {
  line-height: 1.5em;
}
.main_content .flows .flow .item_wrap:last-of-type:after {
  display: none;
}
.main_content .flows .flow .item_wrap:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-right: 3px solid #999;
  border-bottom: 3px solid #999;
  transform: rotate(45deg);
  margin: 30px auto;
}
.main_content .links {
  display: flex;
  margin-top: 50px;
  margin-bottom: 50px;
  gap: 0 20px;
}
@media screen and (max-width: 1024px) {
  .main_content .links {
    display: block;
  }
  .main_content .links.oneline {
    gap: 0 5px;
    display: flex;
  }
}
@media screen and (max-width: 1024px) and (max-width: 1024px) {
  .main_content .links.oneline div.link p a {
    display: block;
    padding: 20px 0;
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  .main_content .links div.link {
    margin-bottom: 10px;
  }
  .main_content .links div.link p a {
    display: flex;
    line-height: 40px;
  }
  .main_content .links div.link p a i {
    margin: 0 15px 0 0;
  }
}
.main_content .links .link {
  flex: 1;
}
.main_content .links .link.selected p a {
  background: rgba(234, 109, 137, 0.8);
  color: #fff;
}
.main_content .links .link.disabled {
  display: none;
}
.main_content .links .link p a {
  display: block;
  font-size: 18px;
  line-height: 1.3em;
  text-decoration: none;
  background: #f0f0f0;
  text-align: center;
  padding: 30px 20px;
}
.main_content .links .link p a:hover {
  background: rgba(234, 109, 137, 0.8);
  color: #fff;
}
.main_content .links .link p a:hover i {
  background: #fff;
  color: #ea6d89;
}
.main_content .links .link p a i {
  display: block;
  margin: 0 auto 20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  font-size: 20px;
  color: #fff;
  background: #606060;
}
.main_content .reasons {
  margin-top: 50px;
  display: flex;
  gap: 0 20px;
}
@media screen and (max-width: 1024px) {
  .main_content .reasons {
    display: block;
    margin: 0 20px;
  }
}
.main_content .reasons .reason {
  flex: 1;
  margin-bottom: 20px;
  background: #f0f0f0;
  padding: 30px;
  text-align: center;
}
.main_content .reasons .reason .number {
  display: inline-block;
  text-align: center;
  font-size: 18px;
  background: #ea6d89;
  color: #fff;
  border-radius: 20px;
  padding: 15px 20px;
}
.main_content .reasons .reason .title {
  font-size: 24px;
  margin: 20px 0;
  text-align: center;
  line-height: 1.5em;
}
.main_content .reasons .reason .desc {
  line-height: 1.5em;
  text-align: left;
}
.main_content .panels {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 20px;
}
@media screen and (max-width: 1024px) {
  .main_content .panels {
    margin: 0 20px;
    display: block;
  }
  .main_content .panels .panel {
    width: 100% !important;
    margin-bottom: 20px;
  }
  .main_content .panels .panel .desc {
    min-height: auto !important;
  }
}
.main_content .panels .panel {
  background: #f0f0f0;
  width: calc(33% - 20px);
  display: flex;
  flex-wrap: wrap;
}
.main_content .panels .panel .number {
  height: 40px;
  width: 40px;
  font-size: 18px;
  line-height: 40px;
  text-align: center;
  background: #606060;
  color: #fff;
}
.main_content .panels .panel .title {
  flex: 1;
  background: #e0e0e0;
  height: 40px;
  font-size: 18px;
  line-height: 40px;
  padding-left: 10px;
}
.main_content .panels .panel .desc {
  width: 100%;
  padding: 15px;
  line-height: 1.5em;
  min-height: 150px;
}
.main_content .qas {
  margin: 50px 0;
}
@media screen and (max-width: 1024px) {
  .main_content .qas {
    margin: 50px 10px;
  }
}
.main_content .qas dl {
  display: block;
  margin-bottom: 50px;
}
.main_content .qas dl dt,
.main_content .qas dl dd {
  display: block;
}
.main_content .qas dl dt {
  line-height: 40px;
  margin-bottom: 15px;
}
.main_content .qas dl dt:before {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  content: "Q";
  width: 40px;
  height: 40px;
  background: #ea6d89;
  color: #fff;
  margin-right: 10px;
}
.main_content .qas dl dd {
  line-height: 40px;
}
.main_content .qas dl dd:before {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  content: "A";
  width: 40px;
  height: 40px;
  background: #479b9c;
  color: #fff;
  margin-right: 10px;
}
.main_content .microengineform .form-control::placeholder {
  color: #c0c0c0;
}
.main_content .microengineform .radiolist {
  display: flex;
  flex-wrap: wrap;
}
.main_content .microengineform .radiolist div {
  display: flex;
  align-items: center;
  padding: 10px;
}
.main_content .microengineform .radiolist div input {
  margin-right: 10px;
}
.main_content .microengineform .radiolist div label {
  margin: 0;
}
.main_content .microengineform .radiolist .fullsize {
  flex: 1;
}
@media screen and (max-width: 1024px) {
  .main_content .microengineform .radiolist .fullsize {
    flex: auto;
    width: 100%;
  }
}
.main_content .microengineform .radiolist .fullsize input {
  display: inline-block;
  width: 80%;
  margin-left: 10px;
}/*# sourceMappingURL=style.css.map */</pre></body></html>