@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/yakuhanjp@3.2.0/dist/css/yakuhanjp.min.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

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

a:not([class]) {
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

img,
picture {
  max-width: 100%;
  display: inline-block;
}

input,
button,
textarea,
select {
  font: inherit;
  cursor: pointer;
}

strong {
  font-weight: bolder;
}

textarea {
  resize: vertical;
}

:root {
  --font_base: 16px/1.7 "YakuHanJP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
}

:root {
  --default-black: #333;
  --default-white: #fff;
  --default-blue: #1255de;
  --default-light-blue: #bcd1ff;
  --default-navy:#003391;
  --default-green: #00c605;
  --default-green-dark: #00b965;
  --default-green-shadow: #2eb677;
  --default-yellow-pale: #feff9e;
  --default-yellow: #fcff00;
  --default-yellow-dark: #ffec00;
  --default-yellow-shadow: #b3b500;
  --default-pink: #fe59a5;
  --base-gray-default: #F4F6F8;
  --base-gray-dark:#6C6C6C;
  --base-gray-pale:#f7f7f7;
  --base-blue-pale: #f0f5ff;
  --color-im-blue-pale: #dff1f9;
  --color-im-blue: #31a1cb;
  --color-im-blue-dark: #00709a;
  --color-tu-orange-pale: #fdf3d9;
  --color-tu-orange: #edb21b;
  --color-tu-orange-dark: #d69a00;
  --color-table-border: #cbcbcb;
  --color-table-red: #ff4546;
  --color-table-pink:#ffaaaa;
  --color-table-blue: #9fbed9;
  --default-gradient01: linear-gradient(-90deg, #ffea00 0%, #fffc00 100%);
  --default-gradient02: linear-gradient(90deg, #003391 0%, #004ae2 100%);
  --default-gradient03: linear-gradient(0deg, #c4e1ff 0%, #fff 100%);
  --default-gradient04: linear-gradient(180deg, #daffdb 0%, #fff 100%);
  --default-gradient05: linear-gradient(0deg, #beeaff 0%, #f3f9ff 100%);
}

a[href^=https],
a[href^="mailto:"] {
  word-break: break-all;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--default-blue);
  text-decoration: none;
  transition: all 0.5s;
}

@media all and (min-width: 768px) {
  .spOnly {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .pcOnly {
    display: none;
  }
}

.l-header {
  padding: 20px 25px 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-top: solid 5px var(--default-blue);
}
@media all and (min-width: 768px) {
  .l-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .l-header {
    padding: 20px 20px 20px 15px;
    display: flex;
    align-items: center;
  }
}
.l-header_logo {
  width: 50px;
  height: 50px;
}
.l-header_logo a {
  display: block;
  width: 50px;
  height: 50px;
  background: url(../common_2025/ico_logo.svg) no-repeat left top;
  background-size: contain;
  font-size: 0;
}
@media all and (min-width: 768px) {
  .l-header_title {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .l-header_title {
    display: block;
    width: 220px;
    margin-left: 15px;
    font-weight: 700;
    line-height: 1.3;
  }
}
@media screen and (max-width: 767px) {
  .l-header_nav {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100vw;
    bottom: 0;
    background: var(--default-white);
    z-index: 100000;
    transform: translateX(-100%);
    transition: transform 0.3s;
    overflow-y: scroll;
    padding-top: 90px;
  }
}
@media screen and (max-width: 767px) {
  .l-header_nav.is-open {
    transform: translateX(0);
  }
}
.l-header_nav_inner {
  align-items: center;
  /* margin-top: 15px; */
}
@media all and (min-width: 768px) {
  .l-header_nav_inner {
    display: flex;
    gap: 40px;
    padding: 0 25px;
  }
}
@media screen and (min-width:768px) and (max-width: 1059px) {
  .l-header_nav_inner {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-header_nav_inner {
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
  }
}
.l-header_nav_inner li {
  position: relative;
  line-height: 16px;
}
.l-header_nav_inner li::after {
  content: "/";
  position: absolute;
  top: 50%;
  right: -24px;
  transform: translateY(-50%);
  color: var(--default-light-blue);
  font-size: 1rem;
}
@media screen and (min-width:768px) and (max-width: 1059px) {
  .l-header_nav_inner li::after {
    right: -14px;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header_nav_inner li::after {
    content: none;
  }
}
.l-header_nav_inner li:last-of-type::after {
  content: none;
}
.l-header_nav_inner li a {
  color: var(--default-black);
  font-size: 1rem;
}
.l-header_nav_inner li a:hover {
  color: var(--default-blue);
}
@media screen and (max-width: 1278px) {
  .l-header_nav_inner li a {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .l-header_nav_inner li {
    position: relative;
    padding: 20px 30px 20px 90px;
    font-weight: 700;
  }
  .l-header_nav_inner li a {
    font-size: 1rem;
  }
  .l-header_nav_inner li :after {
    position: absolute;
    content: "\f13a";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--default-blue);
    font-size: 22px;
    top: calc(50% - 7px);
    left: 60px;
  }
}
.l-header_btn {
  /* 一旦消しておく */
}
@media all and (min-width: 768px) {
  .l-header_btn {
    width: 200px;
  }
  .l-header_btn a {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--default-black);
    padding: 10px 20px 10px 50px;
    line-height: 1.4;
    border: solid 2px var(--default-black);
    border-radius: 100px;
    background: var(--default-gradient01);
    position: relative;
    transition: all 0.5s;
  }
  .l-header_btn a:hover {
    background: var(--default-yellow);
    transition: all 0.5s;
  }
  .l-header_btn a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -10px;
    width: 50px;
    height: 35px;
    transform: translateY(-50%);
    background: url(../common_2025/ico_contact.png) no-repeat left top;
    background-size: contain;
  }
  .l-header_btn a span {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header_btn {
    display: none;
  }
}
.l-header #Top .l-header .l-header_logo a {
  pointer-events: none;
}
@media all and (min-width: 768px) {
  .l-header .l-header {
    display: flex;
    justify-content: space-between;
  }
}
.l-header .nav-toggle {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header .nav-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 100;
    background: var(--default-blue);
    border: none;
    cursor: pointer;
    display: block;
    z-index: 10000000;
    position: fixed;
  }
  .l-header .nav-toggle span {
    display: block;
    text-align: center;
    width: 50%;
    height: 2px;
    margin: 7px auto;
    background: var(--default-white);
    transition: 0.3s;
  }
  .l-header .nav-toggle span:nth-child(3) {
    font-size: 0.6875rem;
    height: 0;
    margin: 9px auto;
    color: var(--default-white);
  }
}
.l-header .nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(25deg);
}
.l-header .nav-toggle.is-open span:nth-child(2) {
  transform: translateY(-3px) rotate(-25deg);
}

.l-footer {
  background: var(--default-gradient02);
}
.l-footer_inner {
  width: 1060px;
  margin: 0 auto;
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-footer_inner {
    padding: 30px;
    width: 95%;
    display: block;
    margin: 0 auto;
  }
}
.l-footer_content {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .l-footer_content {
    width: 100%;
  }
}
.l-footer_content .l-footer_logo {
  color: var(--default-white);
  font-size: 1.625rem;
}
@media screen and (max-width: 767px) {
  .l-footer_content .l-footer_logo {
    font-size: 1.375rem;
    margin-bottom: 20px;
  }
}
.l-footer_content .l-footer_logo span {
  font-size: 1.375rem;
  display: inline-block;
  padding-left: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-footer_content .l-footer_logo span {
    font-size: 1.125rem;
  }
}
.l-footer_content .l-footer_logo span::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: url(../common_2025/ico_logo_white.svg) no-repeat center center;
  background-size: contain;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.l-footer_content .copy {
  font-size: 0.875rem;
  color: var(--default-white);
}
.l-footer_menu {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .l-footer_menu {
    width: 100%;
  }
}
.l-footer_menu li {
  display: inline-block;
  margin-right: 50px;
}
@media screen and (max-width: 767px) {
  .l-footer_menu li {
    display: block;
  }
}
.l-footer_menu li a {
  color: var(--default-white);
  font-size: 0.875rem;
  position: relative;
  transition: all 0.5s;
}
.l-footer_menu li a:hover {
  opacity: 0.7;
  transition: all 0.5s;
}
.l-footer_menu li a::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: url(../common_2025/ico_blank.png) no-repeat center center;
  background-size: contain;
  top: 50%;
  right: -17px;
  transform: translateY(-50%);
}

.foot-bnr {
  /* outline: 1px dashed red; */
  /* 確認用。完成後削除 */
  position: fixed;
  left: 0;
  right: 0;
  bottom: 20px;
  z-index: 1000;
  width: 100vw;
  max-width: 100vw;
  box-sizing: border-box;
  overflow-x: visible;
  margin: 0 auto;
  transition: opacity 0.4s ease;
  opacity: 0;
  visibility: hidden;
}
@media all and (min-width: 768px) {
  .foot-bnr {
    padding: 10px;
  }
  .foot-bnr.is-visible {
    opacity: 1;
    visibility: visible;
  }
  .foot-bnr a.btn {
    position: relative;
    display: block;
    width: 500px;
    margin: 0 auto;
    padding: 15px 50px;
    text-align: center;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--default-black);
    background: var(--default-gradient01);
    border: 2px solid var(--default-black);
    border-radius: 100px;
    line-height: 1.4;
    box-sizing: border-box;
    overflow: visible;
  }
  .foot-bnr a.btn:hover {
    background: var(--default-yellow);
  }
  .foot-bnr a.btn span {
    font-size: 0.875rem;
  }
  .foot-bnr a.btn::before, .foot-bnr a.btn::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 60px;
    height: 50px;
    transform: translateY(-50%);
    background-size: contain;
    background-repeat: no-repeat;
  }
  .foot-bnr a.btn::before {
    left: -20px;
    background-image: url(../common_2025/ico_contact.png);
  }
  .foot-bnr a.btn::after {
    right: -20px;
    background-image: url(../common_2025/ico_contact02.png);
  }
}
@media screen and (max-width: 767px) {
  .foot-bnr {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin-bottom: 0;
    /* width: 100vw;
    max-width: 100vw; */
    width: 100%;
    max-width: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    overflow-x: clip;
  }
  .foot-bnr a.btn {
    position: relative;
    display: block;
    width: 85%;
    margin: 0 auto;
    padding: 12px 50px;
    text-align: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--default-black);
    background: var(--default-gradient01);
    border: 2px solid var(--default-black);
    border-radius: 100px;
    line-height: 1.4;
    box-sizing: border-box;
  }
  .foot-bnr a.btn::before, .foot-bnr a.btn::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 50px;
    height: 35px;
    transform: translateY(-50%);
    background-size: contain;
    background-repeat: no-repeat;
  }
  .foot-bnr a.btn::before {
    left: -8px;
    background-image: url(../common_2025/ico_contact.png);
  }
  .foot-bnr a.btn::after {
    right: -8px;
    background-image: url(../common_2025/ico_contact02.png);
  }
}

body {
  position: relative;
  font: var(--font_base);
  color: var(--default-black);
  background: #fff;
}
@media screen and (max-width: 767px) {
  body {
    width: 100%;
    min-width: 0;
    overflow-x: hidden;
  }
}

/* html, body { height: 100%;} */
body > footer {
  /* position: sticky; */
  top: 100vh;
}

html, body {
  overflow-x: hidden;
}

.text_center,
.text_center_Pc,
.text_center_Sp {
  text-align: center;
}

.c-btn,
.c-btn a {
  text-decoration: none;
  cursor: pointer;
}

.c-btn_primary {
  display: block;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mb10 {
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .mt10_Sp {
    margin-top: 10px;
  }
  .mt15_Sp {
    margin-top: 15px;
  }
  .mt20_Sp {
    margin-top: 20px;
  }
  .mt30_Sp {
    margin-top: 30px;
  }
  .mt40_Sp {
    margin-top: 40px;
  }
  .mt50_Sp {
    margin-top: 50px;
  }
}
@media all and (min-width: 768px) {
  .mt10_Pc {
    margin-top: 10px;
  }
  .mt15_Pc {
    margin-top: 15px;
  }
  .mt20_Pc {
    margin-top: 20px;
  }
  .mt30_Pc {
    margin-top: 30px;
  }
  .mt40_Pc {
    margin-top: 40px;
  }
  .mt50_Pc {
    margin-top: 50px;
  }
}
.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .mb10_Sp {
    margin-bottom: 10px;
  }
  .mb15_Sp {
    margin-bottom: 15px;
  }
  .mb20_Sp {
    margin-bottom: 20px;
  }
  .mb30_Sp {
    margin-bottom: 30px;
  }
  .mb40_Sp {
    margin-bottom: 40px;
  }
  .mb50_Sp {
    margin-bottom: 50px;
  }
}
@media all and (min-width: 768px) {
  .mb10_Pc {
    margin-bottom: 10px;
  }
  .mb15_Pc {
    margin-bottom: 15px;
  }
  .mb20_Pc {
    margin-bottom: 20px;
  }
  .mb30_Pc {
    margin-bottom: 30px;
  }
  .mb40_Pc {
    margin-bottom: 40px;
  }
  .mb50_Pc {
    margin-bottom: 50px;
  }
}
.mr10 {
  margin-right: 10px;
}

.mr15 {
  margin-right: 15px;
}

.mr20 {
  margin-right: 20px;
}

.mr30 {
  margin-right: 30px;
}

.mr40 {
  margin-right: 40px;
}

.mr50 {
  margin-right: 50px;
}

@media screen and (max-width: 767px) {
  .mr10_Sp {
    margin-right: 10px;
  }
  .mr15_Sp {
    margin-right: 15px;
  }
  .mr20_Sp {
    margin-right: 20px;
  }
  .mr30_Sp {
    margin-right: 30px;
  }
  .mr40_Sp {
    margin-right: 40px;
  }
  .mr50_Sp {
    margin-right: 50px;
  }
}
@media all and (min-width: 768px) {
  .mr10_Pc {
    margin-right: 10px;
  }
  .mr15_Pc {
    margin-right: 15px;
  }
  .mr20_Pc {
    margin-right: 20px;
  }
  .mr30_Pc {
    margin-right: 30px;
  }
  .mr40_Pc {
    margin-right: 40px;
  }
  .mr50_Pc {
    margin-right: 50px;
  }
}
.ml10 {
  margin-left: 10px;
}

.ml15 {
  margin-left: 15px;
}

.ml20 {
  margin-left: 20px;
}

.ml30 {
  margin-left: 30px;
}

.ml40 {
  margin-left: 40px;
}

.ml50 {
  margin-left: 50px;
}

@media screen and (max-width: 767px) {
  .ml10_Sp {
    margin-left: 10px;
  }
  .ml15_Sp {
    margin-left: 15px;
  }
  .ml20_Sp {
    margin-left: 20px;
  }
  .ml30_Sp {
    margin-left: 30px;
  }
  .ml40_Sp {
    margin-left: 40px;
  }
  .ml50_Sp {
    margin-left: 50px;
  }
}
@media all and (min-width: 768px) {
  .ml10_Pc {
    margin-left: 10px;
  }
  .ml15_Pc {
    margin-left: 15px;
  }
  .ml20_Pc {
    margin-left: 20px;
  }
  .ml30_Pc {
    margin-left: 30px;
  }
  .ml40_Pc {
    margin-left: 40px;
  }
  .ml50_Pc {
    margin-left: 50px;
  }
}
.w50 {
  width: 50px;
}

.w80 {
  width: 80px;
}

.w100 {
  width: 100px;
}

.w120 {
  width: 120px;
}

.w150 {
  width: 150px;
}

.w160 {
  width: 160px;
}

.w180 {
  width: 180px;
}

.w200 {
  width: 200px;
}

.w220 {
  width: 220px;
}

.w250 {
  width: 250px !important;
}

.w300 {
  width: 300px;
}

.w350 {
  width: 350px;
}

.w30per {
  width: 30%;
}

.w50per {
  width: 50%;
}

.w60per {
  width: 60%;
}

.w70per {
  width: 70%;
}

.w80per {
  width: 80%;
}

.w100per {
  width: 100%;
}

@media all and (min-width: 768px) {
  .w50_Pc {
    width: 50px;
  }
  .w80_Pc {
    width: 80px;
  }
  .w100_Pc {
    width: 100px;
  }
  .w120_Pc {
    width: 120px;
  }
  .w150_Pc {
    width: 150px;
  }
  .w160_Pc {
    width: 160px;
  }
  .w180_Pc {
    width: 180px;
  }
  .w200_Pc {
    width: 200px;
  }
  .w220_Pc {
    width: 220px;
  }
  .w250_Pc {
    width: 250px;
  }
  .w300_Pc {
    width: 300px;
  }
  .w350_Pc {
    width: 350px;
  }
  .w400_Pc {
    width: 400px;
  }
  .w430_Pc {
    width: 430px;
  }
  .w450_Pc {
    width: 450px;
  }
  .w500_Pc {
    width: 500px;
  }
  .w850_Pc {
    width: 850px;
  }
  .w900_Pc {
    width: 900px;
  }
  .w30per_Pc {
    width: 30%;
  }
  .w50per_Pc {
    width: 50%;
  }
  .w60per_Pc {
    width: 60%;
  }
  .w70per_Pc {
    width: 70%;
  }
  .w80per_Pc {
    width: 80%;
  }
  .w100per_Pc {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .w50_Sp {
    width: 50px;
  }
  .w80_Sp {
    width: 80px;
  }
  .w100_Sp {
    width: 100px;
  }
  .w120_Sp {
    width: 120px;
  }
  .w150_Sp {
    width: 150px;
  }
  .w160_Sp {
    width: 160px;
  }
  .w180_Sp {
    width: 180px;
  }
  .w200_Sp {
    width: 200px;
  }
  .w220_Sp {
    width: 220px;
  }
  .w250_Sp {
    width: 250px;
  }
  .w300_Sp {
    width: 300px;
  }
  .w350_Sp {
    width: 350px;
  }
  .w400_Sp {
    width: 400px;
  }
  .w450_Sp {
    width: 450px;
  }
  .w500_Sp {
    width: 500px;
  }
  .w30per_Sp {
    width: 30%;
  }
  .w50per_Sp {
    width: 50%;
  }
  .w60per_Sp {
    width: 60%;
  }
  .w70per_Sp {
    width: 70%;
  }
  .w80per_Sp {
    width: 80%;
  }
  .w100per_Sp {
    width: 100%;
  }
}
.color_red_default {
  color: var(--default-red);
}

.color_brown_default {
  color: var(--default-brown);
}

.foS10 {
  font-size: 0.625rem;
  line-height: 1.4;
}

.foS11 {
  font-size: 0.6875rem;
  line-height: 1.4;
}

.foS12 {
  font-size: 0.75rem;
  line-height: 1.4;
}

.foS13 {
  font-size: 0.8125rem;
  line-height: 1.6;
}

.foS14 {
  font-size: 0.875rem;
  line-height: 1.6;
}

.foS15 {
  font-size: 0.9375rem;
}

.foM16 {
  font-size: 1rem;
}

.foL17 {
  font-size: 1.0625rem;
}

.foL18 {
  font-size: 1.125rem;
}

.foL19 {
  font-size: 1.1875rem;
  line-height: 1.6;
}

.foL20 {
  font-size: 1.25rem;
  line-height: 1.6;
}

.foL21 {
  font-size: 1.3125rem;
  line-height: 1.6;
}

.foL22 {
  font-size: 1.375rem;
  line-height: 1.5;
}

.foL24 {
  font-size: 1.5rem;
  line-height: 1.5;
}

.foL26 {
  font-size: 1.625rem;
  line-height: 1.5;
}

.foL28 {
  font-size: 1.75rem;
  line-height: 1.5;
}

.foL30 {
  font-size: 1.875rem;
  line-height: 1.5;
}

.foL32 {
  font-size: 2rem;
  line-height: 1.4;
}

.foL34 {
  font-size: 2.125rem;
  line-height: 1.4;
}

.foL36 {
  font-size: 2.25rem;
  line-height: 1.4;
}

.foL38 {
  font-size: 2.375rem;
  line-height: 1.4;
}

.foL40 {
  font-size: 2.5rem;
  line-height: 1.4;
}

.foL44 {
  font-size: 2.75rem;
  line-height: 1.4;
}

.foL48 {
  font-size: 3rem;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .foS10_Sp {
    font-size: 0.625rem;
    line-height: 1.4;
  }
  .foS11_Sp {
    font-size: 0.6875rem;
    line-height: 1.4;
  }
  .foS12_Sp {
    font-size: 0.75rem;
    line-height: 1.4;
  }
  .foS13_Sp {
    font-size: 0.8125rem;
    line-height: 1.4;
  }
  .foS14_Sp {
    font-size: 0.875rem;
    line-height: 1.6;
  }
  .foS15_Sp {
    font-size: 0.9375rem;
  }
  .foM16_Sp {
    font-size: 1rem;
  }
  .foL17_Sp {
    font-size: 1.0625rem;
  }
  .foL18_Sp {
    font-size: 1.125rem;
  }
  .foL19_Sp {
    font-size: 1.1875rem;
    line-height: 1.6;
  }
  .foL20_Sp {
    font-size: 1.25rem;
    line-height: 1.6;
  }
  .foL21_Sp {
    font-size: 1.3125rem;
    line-height: 1.6;
  }
  .foL22_Sp {
    font-size: 1.375rem;
    line-height: 1.5;
  }
  .foL24_Sp {
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .foL26_Sp {
    font-size: 1.625rem;
    line-height: 1.5;
  }
  .foL28_Sp {
    font-size: 1.75rem;
    line-height: 1.5;
  }
  .foL30_Sp {
    font-size: 1.875rem;
    line-height: 1.5;
  }
  .foL32_Sp {
    font-size: 2rem;
    line-height: 1.4;
  }
  .foL34_Sp {
    font-size: 2.125rem;
    line-height: 1.4;
  }
  .foL36_Sp {
    font-size: 2.25rem;
    line-height: 1.4;
  }
  .foL38_Sp {
    font-size: 2.375rem;
    line-height: 1.4;
  }
  .foL40_Sp {
    font-size: 2.5rem;
    line-height: 1.4;
  }
  .foL44_Sp {
    font-size: 2.75rem;
    line-height: 1.4;
  }
  .foL48_Sp {
    font-size: 3rem;
    line-height: 1.4;
  }
}
@media all and (min-width: 768px) {
  .foS10_Pc {
    font-size: 0.625rem;
    line-height: 1.4;
  }
  .foS11_Pc {
    font-size: 0.6875rem;
    line-height: 1.4;
  }
  .foS12_Pc {
    font-size: 0.75rem;
    line-height: 1.4;
  }
  .foS13_Pc {
    font-size: 0.8125rem;
    line-height: 1.4;
  }
  .foS14_Pc {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .foS15_Pc {
    font-size: 0.9375rem;
  }
  .foM16_Pc {
    font-size: 1rem;
  }
  .foL17_Pc {
    font-size: 1.0625rem;
  }
  .foL18_Pc {
    font-size: 1.125rem;
  }
  .foL19_Pc {
    font-size: 1.1875rem;
    line-height: 1.6;
  }
  .foL20_Pc {
    font-size: 1.25rem;
    line-height: 1.6;
  }
  .foL21_Pc {
    font-size: 1.3125rem;
    line-height: 1.6;
  }
  .foL22_Pc {
    font-size: 1.375rem;
    line-height: 1.5;
  }
  .foL24_Pc {
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .foL26_Pc {
    font-size: 1.625rem;
    line-height: 1.5;
  }
  .foL28_Pc {
    font-size: 1.75rem;
    line-height: 1.5;
  }
  .foL30_Pc {
    font-size: 1.875rem;
    line-height: 1.5;
  }
  .foL32_Pc {
    font-size: 2rem;
    line-height: 1.4;
  }
  .foL34_Pc {
    font-size: 2.125rem;
    line-height: 1.4;
  }
  .foL36_Pc {
    font-size: 2.25rem;
    line-height: 1.4;
  }
  .foL38_Pc {
    font-size: 2.375rem;
    line-height: 1.4;
  }
  .foL40_Pc {
    font-size: 2.5rem;
    line-height: 1.4;
  }
  .foL44_Pc {
    font-size: 2.75rem;
    line-height: 1.4;
  }
  .foL48_Pc {
    font-size: 3rem;
    line-height: 1.4;
  }
}
.asterisk-16 {
  padding-left: 1rem;
}

.asterisk-16::before {
  content: "※";
  margin-left: -1rem;
}

.asterisk-15 {
  padding-left: 0.9375rem;
}

.asterisk-15::before {
  content: "※";
  margin-left: -0.9375rem;
}

.asterisk-14 {
  padding-left: 0.875rem;
}

.asterisk-14::before {
  content: "※";
  margin-left: -0.875rem;
}

/*---------------------------------
メインビジュアル
---------------------------------*/
#mainVisual {
  height: 450px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #mainVisual {
    height: 200px;
  }
}
#mainVisual .c-title {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
}
#mainVisual .c-title_sub {
  display: block;
  font-size: 1.625rem;
  color: var(--default-navy);
  background: var(--default-white);
  padding: 10px 20px;
  display: inline-block;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #mainVisual .c-title_sub {
    font-size: 1rem;
    padding: 5px 20px;
  }
}
#mainVisual .c-title_main {
  display: inline-block;
  font-size: 2.875rem;
  color: var(--default-white);
  background: var(--default-gradient02);
  padding: 0px 20px;
  margin-top: 10px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #mainVisual .c-title_main {
    font-size: 1.625rem;
  }
}
#mainVisual .carousel-container {
  width: 100%;
  overflow: hidden;
}
#mainVisual .carousel-container .image-wrapper {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 15s linear infinite; /* アニメーション適用 */
}
#mainVisual .carousel-container .image-wrapper img {
  width: auto;
  height: 450px; /* 画像の高さをコンテナに合わせる */
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  #mainVisual .carousel-container .image-wrapper img {
    height: 200px;
  }
}

@keyframes scroll-left {
  from {
    transform: translateX(0); /* 開始位置 */
  }
  to {
    transform: translateX(-50%); /* 終了位置: ラッパーの幅の半分だけ左に移動 */
  }
}
/*---------------------------------
セクション全体の設定
---------------------------------*/
.l-section_inner {
  width: 1060px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-section_inner {
    width: 90%;
  }
}
@media all and (min-width: 768px) {
  .l-section_title01 {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .l-section_title01 {
    text-align: center;
  }
}
.l-section_title01 .c-title {
  line-height: 1.3;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .l-section_title01 .c-title {
    text-align: center;
  }
}
.l-section_title01 .c-title_sub {
  color: var(--default-black);
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-section_title01 .c-title_sub {
    font-size: 1.25rem;
  }
}
.l-section_title01 .c-title_main {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .l-section_title01 .c-title_main {
    font-size: 1.875rem;
  }
}
.l-section_title01 .c-title_desc {
  font-size: 1rem;
  color: var(--default-black);
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-section_title01 .c-title_desc {
    width: var(--layout-width-inner_sp);
    padding-top: 25px;
    text-align: left;
  }
}
.l-section_title01 .c-title_desc::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50px;
  width: 22px;
  height: 85px;
  background: url(../common_2025/img_title_arrow.png) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .l-section_title01 .c-title_desc::before {
    left: 50%;
    transform: rotate(90deg) translateX(-50%);
    top: -20px;
  }
}
.l-section_title02 {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .l-section_title02 {
    margin-bottom: 30px;
  }
}
.l-section_title02 .c-title {
  line-height: 1.3;
  flex: 1;
  font-size: 2.5rem;
  text-align: center;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .l-section_title02 .c-title {
    font-size: 1.75rem;
  }
}
.l-section_title02 .c-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80px;
  width: 40px;
  height: 40px;
  background: url(../common_2025/img_title_line.png) no-repeat center center;
}
.l-section_title02 .c-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -80px;
  width: 40px;
  height: 40px;
  background: url(../common_2025/img_title_line.png) no-repeat center center;
  transform: rotate(180deg);
}

/*---------------------------------
5つの特徴
---------------------------------*/
.l-section.feature {
  padding: 100px 0;
  background: var(--default-gradient03);
}
@media screen and (max-width: 767px) {
  .l-section.feature {
    padding: 50px 0;
  }
}
@media all and (min-width: 768px) {
  .l-section.feature .l-section_title01 .c-title {
    width: 400px;
  }
}
.l-section.feature .l-section_title01 .c-title_main strong {
  color: var(--default-blue);
  font-size: 3.125rem;
}
@media screen and (max-width: 767px) {
  .l-section.feature .l-section_title01 .c-title_main strong {
    font-size: 2.25rem;
  }
}
.l-section.feature .l-section_title01 .c-title_desc {
  width: 1060px;
}
@media screen and (max-width: 767px) {
  .l-section.feature .l-section_title01 .c-title_desc {
    width: var(--layout-width-inner_sp);
  }
}
.l-section.feature .l-section_content {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .l-section.feature .l-section_content {
    margin-top: 30px;
  }
}
.l-section.feature .l-section_content ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  counter-reset: item;
}
.l-section.feature .l-section_content ul li {
  width: 19.2%;
  font-size: 1rem;
  font-weight: 500;
  color: var(--default-black);
  text-align: center;
  padding: 10px 10px 10px 10px;
  background: var(--default-white);
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px solid var(--default-blue);
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-section.feature .l-section_content ul li {
    width: 100%;
    font-size: 1rem;
    text-align: left;
    margin-bottom: 10px;
  }
}
.l-section.feature .l-section_content ul li span {
  padding-top: 140px;
  display: block;
}
@media screen and (max-width: 767px) {
  .l-section.feature .l-section_content ul li span {
    padding: 10px 10px 10px 120px;
  }
}
.l-section.feature .l-section_content ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: var(--default-blue);
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.l-section.feature .l-section_content ul li::after {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  top: 0px;
  left: 12px;
  color: var(--default-white);
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  line-height: 40px;
}
.l-section.feature .l-section_content ul li:nth-of-type(1) {
  background: var(--default-gradient04);
  border-color: var(--default-green);
}
.l-section.feature .l-section_content ul li:nth-of-type(1) span {
  background: url(../common_2025/ico_feature01.png);
  background-repeat: no-repeat;
  background-position: top 50px center;
  background-size: 100px auto;
}
@media screen and (max-width: 767px) {
  .l-section.feature .l-section_content ul li:nth-of-type(1) span {
    background-position: center left 40px;
    background-size: 60px auto;
  }
}
.l-section.feature .l-section_content ul li:nth-of-type(1)::before {
  background: var(--default-green);
}
.l-section.feature .l-section_content ul li:nth-of-type(2) span {
  background: url(../common_2025/ico_feature02.png);
  background-repeat: no-repeat;
  background-position: top 40px center;
  background-size: 80px auto;
}
@media screen and (max-width: 767px) {
  .l-section.feature .l-section_content ul li:nth-of-type(2) span {
    background-position: center left 40px;
    background-size: 55px auto;
  }
}
.l-section.feature .l-section_content ul li:nth-of-type(3) span {
  background: url(../common_2025/ico_feature03.png);
  background-repeat: no-repeat;
  background-position: top 50px center;
  background-size: 120px auto;
}
@media screen and (max-width: 767px) {
  .l-section.feature .l-section_content ul li:nth-of-type(3) span {
    background-position: center left 40px;
    background-size: 70px auto;
  }
}
.l-section.feature .l-section_content ul li:nth-of-type(4) span {
  background: url(../common_2025/ico_feature04.png);
  background-repeat: no-repeat;
  background-position: top 50px center;
  background-size: 100px auto;
}
@media screen and (max-width: 767px) {
  .l-section.feature .l-section_content ul li:nth-of-type(4) span {
    background-position: center left 40px;
    background-size: 60px auto;
  }
}
.l-section.feature .l-section_content ul li:nth-of-type(5) span {
  background: url(../common_2025/ico_feature05.png);
  background-repeat: no-repeat;
  background-position: top 40px center;
  background-size: 80px auto;
}
@media screen and (max-width: 767px) {
  .l-section.feature .l-section_content ul li:nth-of-type(5) span {
    background-position: center left 40px;
    background-size: 55px auto;
  }
}

/*---------------------------------
制作実績
---------------------------------*/
.l-section.work .l-section_inner {
  padding-top: 50px;
  position: relative;
}
.l-section.work .l-section_inner .l-section_title02 {
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-section.work .l-section_inner .l-section_title02 {
    top: -20px;
  }
}
.l-section.work .l-section_inner .l-section_title02 .c-title {
  margin-bottom: 30px;
}
.l-section.work .l-section_inner .l-section_title02 .c-title_desc {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .l-section.work .l-section_inner .l-section_title02 .c-title_desc {
    text-align: left;
  }
}
.l-section.work .l-section_content {
  height: 620px;
  margin-top: 100px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .l-section.work .l-section_content {
    margin-top: 130px;
    margin-bottom: 40px;
  }
}
.l-section.work .l-section_content iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .l-section.work .l-section_content iframe {
    max-width: 100%;
    display: block;
  }
}
.l-section.work .clientList {
  margin-top: 70px;
  margin-bottom: 100px;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--default-blue);
  background: var(--base-blue-pale);
}
@media screen and (max-width: 767px) {
  .l-section.work .clientList {
    margin: 50px 0;
  }
}
.l-section.work .clientList .clientList__title {
  margin-bottom: 20px;
  font-size: 1.625rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-section.work .clientList .clientList__title {
    font-size: 1.375rem;
  }
}
.l-section.work .clientList .clientList__title span {
  font-size: 1rem;
}
.l-section.work .clientList .clientList__desc dt {
  padding-left: 16px;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--default-blue);
  position: relative;
}
.l-section.work .clientList .clientList__desc dt::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: var(--default-blue);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  left: 0;
}
.l-section.work .clientList .clientList__desc dd {
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: normal;
}

/*---------------------------------
ご予算感
---------------------------------*/
.l-section.price {
  background: var(--default-gradient05);
  padding: 100px 0 0;
}
@media screen and (max-width: 767px) {
  .l-section.price {
    padding: 50px 0 0;
  }
}
@media all and (min-width: 768px) {
  .l-section.price .l-section_title01 .c-title {
    width: 400px;
  }
}
.l-section.price .l-section_title01 .c-title_main {
  color: var(--default-blue);
}
.l-section.price .l-section_title01 .c-title_main strong {
  color: var(--default-blue);
}
@media all and (min-width: 768px) {
  .l-section.price .l-section_title01 .c-title_main strong {
    font-size: 3.125rem;
  }
}
@media all and (min-width: 768px) {
  .l-section.price .l-section_title01 .c-title_desc {
    width: 1000px;
  }
}
.l-section.price .l-section_content_price {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin: 50px 0;
}
@media screen and (max-width: 767px) {
  .l-section.price .l-section_content_price {
    margin: 30px 0 0;
  }
}
.l-section.price .l-section_content_price dl {
  width: 31.6666666667%;
  background: var(--default-white);
  border-radius: 0px 20px 20px 20px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .l-section.price .l-section_content_price dl {
    width: 100%;
    display: flex;
    border-radius: 20px;
    margin-bottom: 20px;
  }
}
.l-section.price .l-section_content_price dl dt {
  width: 100%;
  padding: 20px;
  border-radius: 0px 20px 20px 20px;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-section.price .l-section_content_price dl dt {
    padding: 30px 20px;
    width: 50%;
    border-radius: 20px 0px 0px 20px;
  }
}
.l-section.price .l-section_content_price dl dt .c-title_sub {
  font-size: 1rem;
  color: var(--default-black);
  letter-spacing: -0.05em;
}
.l-section.price .l-section_content_price dl dt .c-title_sub span {
  font-size: 0.75rem;
  display: inline-block;
  color: var(--default-white);
  padding: 5px 10px;
  border-radius: 20px;
  margin: 0 5px;
  letter-spacing: 0em;
}
.l-section.price .l-section_content_price dl dt .c-title_main {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--default-navy);
  letter-spacing: 0.08em;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .l-section.price .l-section_content_price dl dt .c-title_main {
    line-height: 1.3;
    font-size: 1.875rem;
    margin-top: 10px;
  }
}
.l-section.price .l-section_content_price dl dt .c-title_main::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 15px;
  z-index: 0;
  opacity: 0.3;
}
@media screen and (max-width: 767px) {
  .l-section.price .l-section_content_price dl dt .c-title_main::after {
    bottom: 0px;
  }
}
@media screen and (max-width: 767px) {
  .l-section.price .l-section_content_price dl dt .c-title_main::before {
    bottom: 0px;
    content: "";
    position: absolute;
    top: 24px;
    left: 0;
    width: 100%;
    height: 15px;
    z-index: 0;
    opacity: 0.3;
  }
}
.l-section.price .l-section_content_price dl dt .c-title_main span {
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .l-section.price .l-section_content_price dl dt .c-title_main span {
    display: block;
    font-size: 1.5rem;
  }
}
.l-section.price .l-section_content_price dl:nth-of-type(1) .c-title_sub span {
  background: var(--default-green-dark);
}
.l-section.price .l-section_content_price dl:nth-of-type(1) .c-title_main::after, .l-section.price .l-section_content_price dl:nth-of-type(1) .c-title_main::before {
  background: var(--default-green-dark);
}
.l-section.price .l-section_content_price dl:nth-of-type(2) .c-title_sub span {
  background: var(--default-pink);
}
.l-section.price .l-section_content_price dl:nth-of-type(2) .c-title_main::after, .l-section.price .l-section_content_price dl:nth-of-type(2) .c-title_main::before {
  background: var(--default-pink);
}
.l-section.price .l-section_content_price dl:nth-of-type(3) .c-title_sub span {
  background: var(--default-blue);
}
.l-section.price .l-section_content_price dl:nth-of-type(3) .c-title_main::after, .l-section.price .l-section_content_price dl:nth-of-type(3) .c-title_main::before {
  background: var(--default-blue);
}
.l-section.price .l-section_content_price dl dd {
  background: var(--default-blue);
  border-radius: 0px 0px 20px 20px;
  padding: 40px 20px 20px 20px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-section.price .l-section_content_price dl dd {
    width: 50%;
    border-radius: 0px 20px 20px 0px;
    padding: 30px 20px;
  }
}
.l-section.price .l-section_content_price dl dd::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid var(--default-white);
}
@media screen and (max-width: 767px) {
  .l-section.price .l-section_content_price dl dd::before {
    left: 0;
    top: 50%;
    transform: translateX(-50%) rotate(-90deg);
  }
}
.l-section.price .l-section_content_price dl dd .language {
  font-size: 0.75rem;
  border: 1px solid var(--default-yellow);
  color: var(--default-yellow);
  padding: 5px 20px;
  display: inline-block;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .l-section.price .l-section_content_price dl dd .language {
    padding: 5px 10px;
    margin-bottom: 10px;
  }
}
.l-section.price .l-section_content_price dl dd p:not(.language) {
  font-size: 1.25rem;
  color: var(--default-white);
}
@media screen and (max-width: 767px) {
  .l-section.price .l-section_content_price dl dd p:not(.language) {
    font-size: 1rem;
  }
}
.l-section.price .l-section_content_question {
  text-align: center;
}
.l-section.price .l-section_content_question > .c-title {
  font-size: 1.25rem;
  color: var(--default-white);
  padding: 10px 40px;
  font-weight: 400;
  background: var(--default-green-dark);
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-section.price .l-section_content_question > .c-title {
    font-size: 1rem;
    top: 30px;
  }
}
.l-section.price .l-section_content_question > .c-title::before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid var(--default-green-dark);
}
.l-section.price .l-section_content_question_inner {
  width: 100%;
  margin-top: 10px;
  background: var(--default-white);
  border-radius: 20px;
  margin-bottom: 100px;
}
@media all and (min-width: 768px) {
  .l-section.price .l-section_content_question_inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 30px 40px 30px 40px;
  }
}
@media screen and (max-width: 767px) {
  .l-section.price .l-section_content_question_inner {
    padding: 60px 20px 30px 20px;
  }
}
.l-section.price .l-section_content_question_inner dl {
  background: var(--default-white);
  text-align: center;
  font-weight: 500;
}
@media all and (min-width: 768px) {
  .l-section.price .l-section_content_question_inner dl {
    width: 30.3333333333%;
  }
}
@media screen and (max-width: 767px) {
  .l-section.price .l-section_content_question_inner dl {
    margin-bottom: 20px;
  }
}
.l-section.price .l-section_content_question_inner dl dt p {
  font-size: 0.875rem;
  color: var(--default-black);
  padding-bottom: 20px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .l-section.price .l-section_content_question_inner dl dt p {
    padding-bottom: 10px;
  }
}
.l-section.price .l-section_content_question_inner dl dt span {
  font-size: 0.75rem;
  display: inline-block;
  color: var(--default-white);
  background: var(--default-blue);
  padding: 5px 40px;
  border-radius: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .l-section.price .l-section_content_question_inner dl dt span {
    margin-bottom: 10px;
  }
}
.l-section.price .l-section_content_question_inner dl dd {
  border-top: 1px solid var(--default-black);
  padding-top: 20px;
  font-size: 0.875rem;
  color: var(--default-navy);
  text-align: left;
}
@media screen and (max-width: 767px) {
  .l-section.price .l-section_content_question_inner dl dd {
    padding-top: 10px;
  }
}
.l-section.price .l-section_application {
  background: var(--default-gradient02);
  padding: 80px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-section.price .l-section_application {
    padding: 40px 5%;
  }
}
.l-section.price .l-section_application::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../common_2025/img_campaign_background.png) no-repeat center center;
  background-size: cover;
}
@media all and (min-width: 768px) {
  .l-section.price .l-section_application_inner {
    width: 750px;
    margin: 0 auto;
  }
}
.l-section.price .l-section_application_title {
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .l-section.price .l-section_application_title {
    margin-bottom: 20px;
  }
}
.l-section.price .l-section_application_title .c-title_sub {
  color: var(--default-white);
  text-align: center;
  font-weight: 500;
}
@media all and (min-width: 768px) {
  .l-section.price .l-section_application_title .c-title_sub {
    position: relative;
    padding-left: 250px;
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 767px) {
  .l-section.price .l-section_application_title .c-title_sub {
    font-size: 1.5rem;
  }
}
.l-section.price .l-section_application_title .c-title_sub span {
  background: var(--default-yellow-pale);
  color: var(--default-black);
  padding: 5px 30px;
  border-radius: 20px;
  margin: 0 5px;
  letter-spacing: 0em;
}
@media all and (min-width: 768px) {
  .l-section.price .l-section_application_title .c-title_sub span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .l-section.price .l-section_application_title .c-title_sub span {
    font-size: 0.875rem;
  }
}
.l-section.price .l-section_application_title .c-title {
  font-size: 2.625rem;
  color: var(--default-white);
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-section.price .l-section_application_title .c-title {
    font-size: 1.5rem;
  }
}
.l-section.price .l-section_application_title .c-title span {
  color: var(--default-yellow);
}
@media screen and (max-width: 767px) {
  .l-section.price .l-section_application_title .c-title span {
    font-size: 1.875rem;
  }
}
.l-section.price .l-section_application_content dl dt {
  font-size: 1.75rem;
  background: var(--default-yellow-dark);
  padding: 20px 40px;
  font-weight: 500;
  text-align: center;
  box-shadow: 0px 5px 0px 0px var(--default-yellow-shadow);
  margin-bottom: 30px;
  position: relative;
  cursor: pointer;
  transition: all 0.5s;
}
.l-section.price .l-section_application_content dl dt:hover {
  background: var(--default-yellow);
  transition: all 0.5s;
}
@media screen and (max-width: 767px) {
  .l-section.price .l-section_application_content dl dt {
    font-size: 1rem;
    padding: 20px 40px 20px 15px;
  }
}
.l-section.price .l-section_application_content dl dt::before {
  content: "";
  position: absolute;
  width: 29px;
  height: 29px;
  background: url(../common_2025/ico_aco_close.png) no-repeat center center;
  background-size: contain;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .l-section.price .l-section_application_content dl dt::before {
    width: 13px;
    height: 13px;
    right: 20px;
  }
}
.l-section.price .l-section_application_content dl dt::after {
  content: "";
  position: absolute;
  width: 52px;
  height: 52px;
  background-color: var(--default-black);
  border-radius: 5px;
  top: 18px;
  right: 30px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-section.price .l-section_application_content dl dt::after {
    width: 34px;
    height: 34px;
    right: 10px;
  }
}
.l-section.price .l-section_application_content dl dt.active::before {
  background: url(../common_2025/ico_aco_open.png) no-repeat center center;
  background-size: contain;
}
.l-section.price .l-section_application_content dl dd {
  background: var(--base-gray-pale);
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .l-section.price .l-section_application_content dl dd {
    padding: 20px;
  }
}
.l-section.price .l-section_application_content dl dd ul.sub_list li {
  font-size: 0.875rem;
}

/*---------------------------------
HP公開までの流れ
---------------------------------*/
.l-section.flow {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .l-section.flow {
    padding: 50px 0;
  }
}
.l-section.flow .l-section_title02 {
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .l-section.flow .l-section_title02 {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-section.flow .l-section_title02 .c-title::before, .l-section.flow .l-section_title02 .c-title::after {
    content: none;
  }
}
.l-section.flow .l-section_content_text {
  background: var(--base-blue-pale);
  padding: 0px 0px;
  box-sizing: border-box;
}
@media all and (min-width: 768px) {
  .l-section.flow .l-section_content_text {
    display: flex;
  }
}
.l-section.flow .l-section_content_text > p {
  font-size: 1.125rem;
  color: var(--default-black);
  font-weight: 500;
  box-sizing: border-box;
  position: relative;
}
.l-section.flow .l-section_content_text > p span.line {
  font-size: 2rem;
  color: var(--default-blue);
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-section.flow .l-section_content_text > p span.line {
    font-size: 1.5rem;
  }
}
.l-section.flow .l-section_content_text > p span.line::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 15px;
  z-index: 0;
  opacity: 0.3;
  background: var(--default-pink);
  z-index: 0;
}
.l-section.flow .l-section_content_text .text01 {
  width: 360px;
  padding: 50px 0 450px 50px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-section.flow .l-section_content_text .text01 {
    width: 100%;
    padding: 30px 0 550px 0;
    text-align: center;
  }
}
.l-section.flow .l-section_content_text .text01::before {
  content: "";
  position: absolute;
  right: -53px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 100px solid transparent;
  border-left: 50px solid var(--default-white);
  border-bottom: 100px solid transparent;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-section.flow .l-section_content_text .text01::before {
    content: none;
  }
}
.l-section.flow .l-section_content_text .text01::after {
  content: "";
  position: absolute;
  right: -50px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 100px solid transparent;
  border-left: 50px solid var(--base-blue-pale);
  border-bottom: 100px solid transparent;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-section.flow .l-section_content_text .text01::after {
    content: none;
  }
}
.l-section.flow .l-section_content_text .text02 {
  width: 120px;
  background: var(--default-green-dark);
  position: relative;
  z-index: 0;
  border-left: 3px solid var(--default-white);
  border-right: 3px solid var(--default-white);
}
.l-section.flow .l-section_content_text .text02 span {
  width: 100px;
  height: 100px;
  background: var(--default-blue);
  color: var(--default-yellow);
  display: inline-block;
  position: relative;
  border-radius: 50%;
  text-align: center;
  line-height: 100px;
  border: 3px solid var(--default-white);
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: 2;
}
.l-section.flow .l-section_content_text .text02::before {
  content: "";
  position: absolute;
  right: -53px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 100px solid transparent;
  border-left: 50px solid var(--default-white);
  border-bottom: 100px solid transparent;
  z-index: 1;
}
.l-section.flow .l-section_content_text .text02::after {
  content: "";
  position: absolute;
  right: -50px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 100px solid transparent;
  border-left: 50px solid var(--default-green-dark);
  border-bottom: 100px solid transparent;
  z-index: 1;
}
.l-section.flow .l-section_content_text .text03 {
  width: 580px;
  padding: 50px 0 450px 120px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-section.flow .l-section_content_text .text03 {
    width: 100%;
  }
}
.l-section.flow .l-section_content_text .text03::before {
  content: "";
  position: absolute;
  right: -53px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 100px solid transparent;
  border-left: 50px solid var(--default-white);
  border-bottom: 100px solid transparent;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-section.flow .l-section_content_text .text03::before {
    content: none;
  }
}
.l-section.flow .l-section_content_text .text03::after {
  content: "";
  position: absolute;
  right: -50px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 100px solid transparent;
  border-left: 50px solid var(--base-blue-pale);
  border-bottom: 100px solid transparent;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-section.flow .l-section_content_text .text03::after {
    content: none;
  }
}
.l-section.flow .l-section_content_text.spOnly {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-section.flow .l-section_content_text.spOnly {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .l-section.flow .l-section_content_text.spOnly .text02 span {
    width: 100px;
    height: 100px;
    background: var(--default-blue);
    color: var(--default-yellow);
    display: inline-block;
    position: relative;
    border-radius: 50%;
    text-align: center;
    line-height: 100px;
    border: 3px solid var(--default-white);
    position: absolute;
    top: -60px;
    left: -80px;
    z-index: 2;
  }
  .l-section.flow .l-section_content_text.spOnly .text02::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -10px;
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-top: 50px solid var(--default-green-dark);
    border-right: 100px solid transparent;
    z-index: 1;
  }
  .l-section.flow .l-section_content_text.spOnly .text02::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 0;
    height: 0;
    border-right: 100px solid transparent;
    border-top: 50px solid var(--default-white);
    border-left: 100px solid transparent;
    z-index: 1;
  }
  .l-section.flow .l-section_content_text.spOnly .text03 {
    padding: 60px 10px 700px 10px;
    text-align: center;
  }
}
@media all and (min-width: 768px) {
  .l-section.flow .l-section_content_flow {
    margin-top: -400px;
  }
}
.l-section.flow .l-section_content_flow .flow_list {
  width: 320px;
  background: var(--default-white);
  padding: 25px 20px;
  border-radius: 20px;
  display: inline-block;
  vertical-align: top;
  box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.1);
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-section.flow .l-section_content_flow .flow_list {
    margin: 0 auto;
  }
}
.l-section.flow .l-section_content_flow .flow_list > ul li {
  background: var(--default-navy);
  padding: 15px 25px 15px 70px;
  color: var(--default-white);
  margin-bottom: 15px;
  font-size: 1rem;
  position: relative;
  letter-spacing: -0.05em;
}
.l-section.flow .l-section_content_flow .flow_list > ul li::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
}
.l-section.flow .l-section_content_flow .flow_list dl dt {
  color: var(--default-navy);
  font-size: 1.125rem;
  margin-bottom: 10px;
}
.l-section.flow .l-section_content_flow .flow_list dl dd ul li {
  font-size: 0.875rem;
  position: relative;
  padding-left: 15px;
}
.l-section.flow .l-section_content_flow .flow_list dl dd ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--default-navy);
}
.l-section.flow .l-section_content_flow .list01 {
  position: relative;
  padding-top: 100px;
}
@media all and (min-width: 768px) {
  .l-section.flow .l-section_content_flow .list01 {
    margin-right: 50px;
    margin-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .l-section.flow .l-section_content_flow .list01 {
    margin-top: -530px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.l-section.flow .l-section_content_flow .list01 p {
  font-size: 0.875rem;
  padding: 10px 20px;
  background: var(--default-yellow);
  font-weight: 500;
  width: 270px;
  margin-bottom: 20px;
  position: absolute;
  top: 15px;
  z-index: 2;
}
@media all and (min-width: 768px) {
  .l-section.flow .l-section_content_flow .list01 p {
    right: -20px;
  }
}
.l-section.flow .l-section_content_flow .list01 p::before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid var(--default-yellow);
}
.l-section.flow .l-section_content_flow .list01 ul li:nth-of-type(1)::before {
  background: url(../common_2025/ico_flow01.png) no-repeat center center;
}
.l-section.flow .l-section_content_flow .list01 ul li:nth-of-type(2)::before {
  background: url(../common_2025/ico_flow02.png) no-repeat center center;
}
.l-section.flow .l-section_content_flow .list01 ul li:nth-of-type(3)::before {
  background: url(../common_2025/ico_flow03.png) no-repeat center center;
}
.l-section.flow .l-section_content_flow .list01 ul li a {
  font-size: 1rem;
}
.l-section.flow .l-section_content_flow .list02 {
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .l-section.flow .l-section_content_flow .list02 {
    margin-top: -680px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.l-section.flow .l-section_content_flow .list02 ul li:nth-of-type(1)::before {
  background: url(../common_2025/ico_flow04.png) no-repeat center center;
}
.l-section.flow .l-section_content_flow .list02 ul li:nth-of-type(2)::before {
  background: url(../common_2025/ico_flow05.png) no-repeat center center;
}
.l-section.flow .l-section_content_flow .list02 ul li:nth-of-type(3)::before {
  background: url(../common_2025/ico_flow06.png) no-repeat center center;
}
.l-section.flow .l-section_content_flow .list02 ul li:nth-of-type(4)::before {
  background: url(../common_2025/ico_flow07.png) no-repeat center center;
}
@media screen and (max-width: 767px) {
  .l-section.flow .l-section_content_flow .list03 {
    margin-top: -220px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.l-section.flow .l-section_content_flow .list03 ul li:nth-of-type(1) {
  background: var(--default-green-dark);
}
.l-section.flow .l-section_content_flow .list03 ul li:nth-of-type(1)::before {
  background: url(../common_2025/ico_flow08.png) no-repeat center center;
}
.l-section.flow .l-section_content_flow .list03 ul li:nth-of-type(2)::before {
  background: url(../common_2025/ico_flow09.png) no-repeat center center;
}
.l-section.flow .l-section_content_flow .list03 ul li:nth-of-type(3)::before {
  background: url(../common_2025/ico_flow10.png) no-repeat center center;
}

/*---------------------------------
CMSのご提案
---------------------------------*/
.l-section.cms {
  background: var(--base-gray-pale);
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .l-section.cms {
    padding: 40px 0%;
  }
}
.l-section.cms .l-section_title01 {
  width: 1060px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-section.cms .l-section_title01 {
    width: 90%;
  }
}
@media all and (min-width: 768px) {
  .l-section.cms .l-section_title01 .c-title {
    width: 450px;
  }
}
.l-section.cms .l-section_title01 .c-title_main strong {
  color: var(--default-green-dark);
  font-size: 3.125rem;
}
@media screen and (max-width: 767px) {
  .l-section.cms .l-section_title01 .c-title_main strong {
    font-size: 2.25rem;
  }
}
@media all and (min-width: 768px) {
  .l-section.cms .l-section_title01 .c-title_desc {
    width: 1000px;
  }
}
.l-section.cms .l-section_title01 .c-title_desc::before {
  background: url(../common_2025/img_title_arrow02.png) no-repeat center center;
}
.l-section.cms .l-section_content {
  width: 1060px;
  margin: 50px auto 0;
}
@media screen and (max-width: 767px) {
  .l-section.cms .l-section_content {
    width: 90%;
    margin: 30px auto 0;
  }
}
.l-section.cms .l-section_cms {
  width: 100%;
  background: var(--default-white);
  border-radius: 20px;
  margin-bottom: 40px;
}
@media all and (min-width: 768px) {
  .l-section.cms .l-section_cms {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px;
  }
}
@media screen and (max-width: 767px) {
  .l-section.cms .l-section_cms {
    padding: 20px;
    margin-bottom: 20px;
  }
}
@media all and (min-width: 768px) {
  .l-section.cms .l-section_cms .img_main {
    width: 40%;
  }
}
.l-section.cms .l-section_cms .img_main img {
  width: 100%;
}
@media all and (min-width: 768px) {
  .l-section.cms .l-section_cms .img_sub {
    width: 25%;
    margin-top: 20px;
  }
}
.l-section.cms .l-section_cms .img_sub img {
  width: 100%;
}
@media all and (min-width: 768px) {
  .l-section.cms .l-section_cms .btn_cms {
    width: 30%;
    margin-top: 30px;
  }
}
.l-section.cms .l-section_cms .btn_cms a {
  display: block;
  background: var(--default-white);
  padding: 20px 20px 20px 80px;
  border-radius: 40px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--default-black);
  margin-bottom: 10px;
  position: relative;
  transition: all 0.5s;
}
.l-section.cms .l-section_cms .btn_cms a::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}
.l-section.cms .l-section_cms .btn_cms_manual a::before {
  background: url(../common_2025/ico_logo_youtube.png) no-repeat center center;
  background-size: contain;
}
.l-section.cms .l-section_cms.informaker {
  background: var(--color-im-blue);
}
.l-section.cms .l-section_cms.informaker .btn_cms a {
  border: 3px solid var(--color-im-blue-dark);
}
.l-section.cms .l-section_cms.informaker .btn_cms a:hover {
  background: var(--color-im-blue-pale);
  transition: all 0.5s;
}
.l-section.cms .l-section_cms.informaker .btn_cms_site a::before {
  background: url(../common_2025/ico_logo_im.png) no-repeat center center;
  background-size: contain;
}
.l-section.cms .l-section_cms.transup {
  background: var(--color-tu-orange);
}
.l-section.cms .l-section_cms.transup .btn_cms a {
  border: 3px solid var(--color-tu-orange-dark);
}
.l-section.cms .l-section_cms.transup .btn_cms a:hover {
  background: var(--color-tu-orange-pale);
  transition: all 0.5s;
}
.l-section.cms .l-section_cms.transup .btn_cms_site a::before {
  background: url(../common_2025/ico_logo_tu.png) no-repeat center center;
  background-size: contain;
}
.l-section.cms .l-section_text dl dt {
  font-weight: 500;
  background: var(--default-green-dark);
  margin: 0px auto 0;
  color: var(--default-white);
  padding: 20px 0;
  border-radius: 80px;
  text-align: center;
  border: 5px solid var(--default-green-shadow);
  position: relative;
  cursor: pointer;
  transition: all 0.5s;
}
.l-section.cms .l-section_text dl dt:hover {
  background: var(--default-green-shadow);
  transition: all 0.5s;
}
@media all and (min-width: 768px) {
  .l-section.cms .l-section_text dl dt {
    width: 600px;
    padding: 30px 0;
    font-size: 1.25rem;
  }
}
.l-section.cms .l-section_text dl dt::before {
  content: "";
  position: absolute;
  width: 29px;
  height: 29px;
  background: url(../common_2025/ico_aco_close02.png) no-repeat center center;
  background-size: contain;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .l-section.cms .l-section_text dl dt::before {
    width: 13px;
    height: 13px;
    right: 40px;
  }
}
.l-section.cms .l-section_text dl dt::after {
  content: "";
  position: absolute;
  width: 52px;
  height: 52px;
  background-color: var(--default-white);
  border-radius: 5px;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-section.cms .l-section_text dl dt::after {
    width: 34px;
    height: 34px;
    right: 30px;
    /* right: 3s0px; */
  }
}
.l-section.cms .l-section_text dl dt.active::before {
  background: url(../common_2025/ico_aco_open02.png) no-repeat center center;
  background-size: contain;
}
.l-section.cms .l-section_text dl dd {
  display: none;
}
.l-section.cms .l-section_text dl dd h3 {
  text-align: center;
  margin-top: 50px;
  font-size: 1.875rem;
}
@media screen and (max-width: 767px) {
  .l-section.cms .l-section_text dl dd h3 {
    font-size: 1.5rem;
    margin-top: 30px;
  }
}
.l-section.cms .l-section_text dl dd h3 span {
  color: var(--default-green-dark);
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .l-section.cms .l-section_text dl dd h3 span {
    font-size: 1.875rem;
  }
}
.l-section.cms .l-section_text dl dd .TableWrap {
  width: 1060px;
  margin: 30px auto 0;
}
@media screen and (max-width: 767px) {
  .l-section.cms .l-section_text dl dd .TableWrap {
    width: 100%;
    margin: 15px auto 0;
  }
}
.l-section.cms .l-section_text dl dd .TableWrap > p {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-section.cms .l-section_text dl dd .TableWrap > p {
    display: block;
    text-align: center;
  }
}
.l-section.cms .l-section_text dl dd .TableWrap .ScrollTable {
  border: 10px solid var(--color-table-border);
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .l-section.cms .l-section_text dl dd .TableWrap .ScrollTable {
    width: 95%;
    /* overflow: auto; */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 auto;
  }
}
.l-section.cms .l-section_text dl dd .TableWrap .ScrollTable table {
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
  border: 0;
  background: var(--color-table-border);
  border-collapse: separate;
}
@media screen and (max-width: 767px) {
  .l-section.cms .l-section_text dl dd .TableWrap .ScrollTable table {
    /* width: 840px; */
    overflow: scroll;
    min-width: 600px;
  }
}
.l-section.cms .l-section_text dl dd .TableWrap .ScrollTable table tr th, .l-section.cms .l-section_text dl dd .TableWrap .ScrollTable table tr td {
  border: 1px solid var(--color-table-border);
  box-sizing: border-box;
  padding: 0 10px;
  vertical-align: middle;
  height: 100px;
  background: var(--default-white);
}
.l-section.cms .l-section_text dl dd .TableWrap .ScrollTable table tr:not(.thCMS) th {
  font-weight: normal;
  background: var(--default-white);
  padding: 30px 10px;
  background: var(--base-gray-default);
}
@media screen and (max-width: 767px) {
  .l-section.cms .l-section_text dl dd .TableWrap .ScrollTable table tr:not(.thCMS) th {
    height: 100px;
  }
}
.l-section.cms .l-section_text dl dd .TableWrap .ScrollTable table tr.thCMS th {
  height: 100px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-section.cms .l-section_text dl dd .TableWrap .ScrollTable table tr.thCMS th {
    height: 80px;
  }
}
.l-section.cms .l-section_text dl dd .TableWrap .ScrollTable table tr.thCMS th:nth-of-type(1) {
  width: 16%;
}
.l-section.cms .l-section_text dl dd .TableWrap .ScrollTable table tr.thCMS th:not(:nth-of-type(1)) {
  width: 21%;
}
.l-section.cms .l-section_text dl dd .TableWrap .ScrollTable table tr.thCMS th.im, .l-section.cms .l-section_text dl dd .TableWrap .ScrollTable table tr.thCMS th.tu, .l-section.cms .l-section_text dl dd .TableWrap .ScrollTable table tr.thCMS th.wp {
  font-size: 0;
}
.l-section.cms .l-section_text dl dd .TableWrap .ScrollTable table tr.thCMS th.im {
  background: url(../common_2025/ico_im.svg) no-repeat var(--default-white);
  background-size: 90% auto;
  background-position: center center;
  border: 4px solid var(--color-im-blue);
  border-spacing: 1px 1px;
  border-bottom: 1px solid var(--color-table-border);
}
.l-section.cms .l-section_text dl dd .TableWrap .ScrollTable table tr.thCMS th.tu {
  background: url(../common_2025/ico_tu.svg) no-repeat var(--default-white);
  background-size: 70% auto;
  background-position: center center;
  border: 4px solid var(--color-tu-orange);
  border-spacing: 1px 1px;
  border-bottom: 1px solid var(--color-table-border);
}
.l-section.cms .l-section_text dl dd .TableWrap .ScrollTable table tr.thCMS th.wp {
  background: url(../common_2025/ico_wp.png) no-repeat var(--default-white);
  background-size: 90% auto;
  background-position: center center;
}
.l-section.cms .l-section_text dl dd .TableWrap .ScrollTable table tr td {
  background-color: var(--default-white);
  text-align: center;
}
.l-section.cms .l-section_text dl dd .TableWrap .ScrollTable table tr td span:not(.text) {
  font-size: 50px;
  line-height: 1;
  font-weight: bold;
  color: var(--color-table-blue);
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W6", sans-serif;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .l-section.cms .l-section_text dl dd .TableWrap .ScrollTable table tr td span:not(.text) {
    font-size: 30px;
  }
}
.l-section.cms .l-section_text dl dd .TableWrap .ScrollTable table tr td span:not(.text).wcircle {
  color: var(--color-table-red);
}
.l-section.cms .l-section_text dl dd .TableWrap .ScrollTable table tr td span:not(.text).circle {
  color: var(--color-table-pink);
}
.l-section.cms .l-section_text dl dd .TableWrap .ScrollTable table tr td span.text {
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.3;
  display: block;
}
.l-section.cms .l-section_text dl dd .TableWrap .ScrollTable table tr td.padding {
  padding: 5px 0px;
}
.l-section.cms .l-section_text dl dd .TableWrap .ScrollTable table tr td.padding span.text {
  margin-top: 0;
}
.l-section.cms .l-section_text dl dd .TableWrap .ScrollTable table tr td:nth-of-type(1) {
  border: 4px solid var(--color-im-blue);
  border-spacing: 1px 1px;
  border-top: 1px solid var(--color-table-border);
  border-bottom: 1px solid var(--color-table-border);
}
.l-section.cms .l-section_text dl dd .TableWrap .ScrollTable table tr td:nth-of-type(2) {
  border: 4px solid var(--color-tu-orange);
  border-spacing: 1px 1px;
  border-top: 1px solid var(--color-table-border);
  border-bottom: 1px solid var(--color-table-border);
}
.l-section.cms .l-section_text dl dd .TableWrap .ScrollTable table tr:last-of-type td:nth-of-type(1) {
  border-bottom: 4px solid var(--color-im-blue);
}
.l-section.cms .l-section_text dl dd .TableWrap .ScrollTable table tr:last-of-type td:nth-of-type(2) {
  border-bottom: 4px solid var(--color-tu-orange);
}

/*---------------------------------
サポートプラン
---------------------------------*/
.l-section.support {
  background: url(../common_2025/img_support_background.png) no-repeat center center;
  background-size: cover;
  width: 100%;
  position: relative;
}
.l-section.support::before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% + 200px);
  background: var(--default-gradient04);
  opacity: 0.5;
}
.l-section.support .l-section_inner {
  width: 1060px;
  margin: 0 auto;
  padding: 100px 0;
  position: inherit;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-section.support .l-section_inner {
    width: 90%;
    padding: 40px 0;
  }
}
.l-section.support .l-section_title01 {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .l-section.support .l-section_title01 {
    margin-bottom: 20px;
  }
}
@media all and (min-width: 768px) {
  .l-section.support .l-section_title01 .c-title {
    width: 650px;
  }
}
.l-section.support .l-section_title01 .c-title_main {
  color: var(--default-green-dark);
  font-size: 2.875rem;
}
@media screen and (max-width: 767px) {
  .l-section.support .l-section_title01 .c-title_main {
    font-size: 2.25rem;
  }
}
@media all and (min-width: 768px) {
  .l-section.support .l-section_title01 .c-title_desc {
    width: 1000px;
  }
}
.l-section.support .l-section_title01 .c-title_desc::before {
  background: url(../common_2025/img_title_arrow02.png) no-repeat center center;
}
@media all and (min-width: 768px) {
  .l-section.support .l-section_content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: flex-start;
  }
}
.l-section.support .l-section_content .support_content > p {
  margin-bottom: 10px;
}
.l-section.support .l-section_content .support_content > p span {
  padding: 5px 20px;
  font-size: 0.75rem;
  border: 1px solid var(--default-navy);
  background: var(--base-blue-pale);
  margin-right: 10px;
  color: var(--default-navy);
  margin-bottom: 5px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .l-section.support .l-section_content .support_content > p span {
    padding: 5px 10px;
  }
}
.l-section.support .l-section_content .support_content > ul li {
  position: relative;
  padding-left: 15px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-section.support .l-section_content .support_content > ul li {
    font-size: 0.875rem;
  }
}
.l-section.support .l-section_content .support_content > ul li::before {
  content: "・";
  position: absolute;
  width: 1px;
  height: 1px;
  left: 0;
}
.l-section.support .l-section_support01 {
  padding: 75px 30px 30px 30px;
  border-radius: 0 30px 30px 30px;
  background: var(--default-green-dark);
  margin-bottom: 20px;
  position: relative;
  width: 60%;
  box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .l-section.support .l-section_support01 {
    width: 100%;
    padding: 60px 20px 20px 20px;
    border-radius: 0 20px 20px 20px;
  }
}
.l-section.support .l-section_support01::after {
  content: "年間契約";
  position: absolute;
  width: 138px;
  height: 35px;
  background: var(--default-navy);
  top: 20px;
  right: 30px;
  color: var(--default-white);
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 35px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-section.support .l-section_support01::after {
    width: 80px;
    height: 30px;
    font-size: 0.75rem;
    line-height: 30px;
    right: 10px;
    top: 15px;
  }
}
.l-section.support .l-section_support01 h3 {
  background: var(--default-white);
  padding: 10px 60px 10px 130px;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 30px;
  z-index: 2;
  line-height: 2;
  font-size: 1.875rem;
  color: var(--default-navy);
  font-weight: 500;
  height: 75px;
}
@media screen and (max-width: 767px) {
  .l-section.support .l-section_support01 h3 {
    font-size: 1rem;
    padding: 10px 15px 10px 80px;
    left: 0px;
    height: 60px;
  }
}
.l-section.support .l-section_support01 h3::before {
  content: "おすすめプラン";
  position: absolute;
  width: 120px;
  height: 100%;
  background: var(--default-yellow);
  background-size: contain;
  left: -30px;
  top: 0;
  font-size: 0.875rem;
  color: var(--default-black);
  text-align: center;
  padding-top: 25px;
}
@media screen and (max-width: 767px) {
  .l-section.support .l-section_support01 h3::before {
    padding: 15px 0;
    content: "おすすめ\aプラン";
    white-space: pre;
    line-height: 1.3;
    width: 70px;
    height: auto;
    font-size: 0.75rem;
    left: 0px;
  }
}
.l-section.support .l-section_support01 h3 span {
  font-size: 1rem;
}
.l-section.support .l-section_support01 .support_content {
  background: var(--default-white);
  padding: 30px 30px;
}
@media screen and (max-width: 767px) {
  .l-section.support .l-section_support01 .support_content {
    padding: 20px;
  }
}
@media all and (min-width: 768px) {
  .l-section.support .l-section_support02 {
    display: flex;
    flex-direction: column;
    width: 35%;
  }
}
@media screen and (max-width: 767px) {
  .l-section.support .l-section_support02 {
    width: 100%;
  }
}
.l-section.support .l-section_support02_01, .l-section.support .l-section_support02_02 {
  padding: 80px 30px 30px 30px;
  border-radius: 0 30px 30px 30px;
  background: var(--base-blue-pale);
  margin-bottom: 20px;
  position: relative;
  box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .l-section.support .l-section_support02_01, .l-section.support .l-section_support02_02 {
    padding: 70px 20px 20px 20px;
    border-radius: 0 20px 20px 20px;
  }
}
.l-section.support .l-section_support02_01 h3, .l-section.support .l-section_support02_02 h3 {
  background: var(--default-white);
  padding: 15px 30px;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  color: var(--default-navy);
}
@media screen and (max-width: 767px) {
  .l-section.support .l-section_support02_01 h3, .l-section.support .l-section_support02_02 h3 {
    padding: 10px 20px;
  }
}

/*---------------------------------
よくいただくご質問
---------------------------------*/
.l-section.qa {
  background: var(--default-gradient06);
  padding: 100px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-section.qa {
    padding: 40px 0;
  }
}
.l-section.qa::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../common_2025/img_qa_background.png) no-repeat center center;
  background-size: cover;
  z-index: -1;
}
.l-section.qa .l-section_inner .l-section_title02 .c-title::before, .l-section.qa .l-section_inner .l-section_title02 .c-title::after {
  content: none;
}
.l-section.qa .l-section_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.l-section.qa .l-section_content dl {
  width: 49%;
  border-radius: 5px;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .l-section.qa .l-section_content dl {
    width: 100%;
    margin-bottom: 10px;
  }
}
.l-section.qa .l-section_content dl dt {
  background: var(--base-blue-pale);
  padding: 15px 55px 15px 15px;
  border-radius: 10px;
  font-weight: 500;
  color: var(--default-black);
  position: relative;
  border: 2px solid var(--default-blue);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.5s;
}
.l-section.qa .l-section_content dl dt:hover {
  background: var(--default-light-blue);
  transition: all 0.5s;
}
@media screen and (max-width: 767px) {
  .l-section.qa .l-section_content dl dt {
    padding: 20px 40px 20px 10px;
    cursor: pointer;
  }
}
.l-section.qa .l-section_content dl dt::before {
  content: "";
  position: absolute;
  width: 21px;
  height: 21px;
  background: url(../common_2025/ico_aco_close.png) no-repeat center center;
  background-size: contain;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .l-section.qa .l-section_content dl dt::before {
    width: 13px;
    height: 13px;
    right: 20px;
  }
}
.l-section.qa .l-section_content dl dt::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: var(--default-blue);
  border-radius: 5px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-section.qa .l-section_content dl dt::after {
    width: 34px;
    height: 34px;
    right: 10px;
  }
}
.l-section.qa .l-section_content dl dt.active {
  border-radius: 10px 10px 0 0;
}
.l-section.qa .l-section_content dl dt.active::before {
  background: url(../common_2025/ico_aco_open.png) no-repeat center center;
  background-size: contain;
}
.l-section.qa .l-section_content dl dd {
  padding: 10px 20px 20px 20px;
  border: 2px solid var(--default-blue);
  border-top: 0;
  border-radius: 0 0 10px 10px;
  background: var(--default-white);
}

/*---------------------------------
HP作成サービスをご提供
---------------------------------*/
.l-section.kyogyo {
  background: var(--base-gray-pale);
  padding: 100px 0 130px 0;
}
@media screen and (max-width: 767px) {
  .l-section.kyogyo {
    padding: 40px 0 120px 0;
  }
}
.l-section.kyogyo .l-section_inner .l-section_title02 .c-title {
  font-size: 2.2rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .l-section.kyogyo .l-section_inner .l-section_title02 .c-title {
    font-size: 1.5rem;
  }
}
.l-section.kyogyo .l-section_inner .l-section_title02 .c-title::before, .l-section.kyogyo .l-section_inner .l-section_title02 .c-title::after {
  content: none;
}
.l-section.kyogyo .collab_disc {
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .l-section.kyogyo .collab_disc {
    font-size: 16px;
  }
}
.l-section.kyogyo .collab_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media all and (min-width: 768px) {
  .l-section.kyogyo .collab_flex {
    width: 620px;
    margin: 0 auto;
  }
}
.l-section.kyogyo .collab_flex li {
  margin-top: 10px;
  width: 50%;
  font-size: 18px;
}
.l-section.kyogyo .collab_flex li a {
  font-size: 0.875rem;
  padding: 10px 20px;
  border: 1px solid var(--default-blue);
  display: block;
  text-align: center;
  max-width: 300px;
  border-radius: 5px;
  margin: 0 auto;
  transition: all 0.5s;
}
.l-section.kyogyo .collab_flex li a:hover {
  background: var(--default-light-blue);
  transition: all 0.5s;
}
@media screen and (max-width: 767px) {
  .l-section.kyogyo .collab_flex {
    display: block;
  }
  .l-section.kyogyo .collab_flex li {
    font-size: 16px;
    width: 100%;
  }
}
.l-section.kyogyo .text_right {
  text-align: right;
}

input[type=email],
input[type=tel],
input[type=text],
input[type=url],
dd textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--default-gray);
  background: var(--base-gray-default);
}

::-moz-placeholder {
  color: var(--default-gray);
}

::placeholder {
  color: var(--default-gray);
}

.form .intro {
  letter-spacing: 0.06em;
}

@media all and (min-width: 768px) {
  .form-Item input[type=text].w250_Pc {
    width: 250px;
  }
}

.form-Item label.block,
.form-Item .label_confirm {
  display: block;
  margin-bottom: 5px;
  color: var(--base-gray-dark);
  font-size: 0.875rem;
}

.form_explanation {
  margin-top: 3px;
  font-size: 0.875rem;
  color: var(--default-gray-brown);
}

.privacyArea {
  margin: 25px auto;
  padding: 10px 20px;
  border: solid 4px var(--base-gray-light);
  letter-spacing: 0.04em;
}
@media all and (min-width: 768px) {
  .privacyArea {
    margin: 25px auto;
  }
}

.privacyArea dl {
  padding: 8px 6px;
  text-align: center;
  background: var(--base-gray-default);
}
@media all and (min-width: 768px) {
  .privacyArea dl {
    padding: 15px 10px 5px;
  }
}

.privacyArea a {
  text-decoration: underline;
}

.form-Item {
  padding: 25px 0;
}
@media all and (min-width: 768px) {
  .form-Item {
    display: grid;
    grid-template-columns: 240px 1fr;
    align-items: start;
  }
}

.form-Item + .form-Item {
  border-top: 1px solid var(--default-gray-light);
}

.form-Item dt {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 500;
  color: #000;
  line-height: 1.3;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .form-Item dt {
    font-size: 1.125rem;
    margin-bottom: 15px;
  }
}
@media all and (min-width: 768px) {
  .form-Item dt {
    margin-top: 15px;
    padding-right: 10px;
  }
}

.form-Item dd {
  letter-spacing: 0.04em;
}

.label_checkbox input[type=checkbox] {
  display: none;
}

.label_checkbox label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  cursor: pointer;
}

.label_checkbox label::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: #fff;
  border: 1px solid var(--default-gray);
}

.label_checkbox input[type=checkbox]:checked + label::after {
  position: absolute;
  content: "";
  top: 7px;
  left: 3px;
  width: 20px;
  height: 6px;
  border-left: 3px solid #333;
  border-bottom: 3px solid #333;
  transform: rotate(-45deg);
}

.label_checkbox input[type=checkbox]:checked + label::before {
  background: var(--base-pink-default);
  border: solid 1px #FF2E2E;
}

/* 必須&任意マーク */
.form-Item .ico {
  text-align: center;
  font-size: 0.6875rem;
  display: inline-block;
  color: #fff;
  line-height: 1;
  line-height: 1;
  padding: 6px 6px;
  vertical-align: middle;
  text-decoration: none;
  white-space: nowrap;
}
.form-Item .ico.required {
  background-color: var(--default-red);
}
.form-Item .ico.optional {
  color: #333;
  background-color: var(--default-gray-light);
}

.form-Item ul.radio_area {
  margin-left: -25px;
  margin-top: 10px;
}

li.radio {
  list-style: none;
}

.radio {
  position: relative;
  margin: 0 0 0.7rem;
  padding-left: 18px;
}
@media screen and (max-width: 767px) {
  .radio:last-child {
    margin-bottom: 0;
  }
}

.radio input[type=radio] {
  position: absolute;
  opacity: 0;
}

.radio input[type=radio] + .radio-label:before {
  content: "";
  background: var(--base-gray-default);
  border-radius: 100%;
  border: 1px solid var(--default-gray-light);
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  position: relative;
  top: 0.2em;
  margin-right: 0.5em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}

.radio input[type=radio]:checked + .radio-label:before {
  background-color: var(--default-blue);
  box-shadow: inset 0 0 0 4px var(--base-gray-default);
}

.radio input[type=radio]:focus + .radio-label:before {
  outline: none;
  border-color: var(--default-blue);
}

.radio input[type=radio]:disabled + .radio-label:before {
  box-shadow: inset 0 0 0 4px var(--base-gray-default);
  border-color: var(--default-gray-light);
  background: var(--default-gray-light);
}

.radio input[type=radio] + .radio-label:empty:before {
  margin-right: 0;
}

/* PCのみ横並びの場合 */
@media all and (min-width: 768px) {
  .radio_area_short {
    display: flex;
  }
}

.select_area {
  position: relative;
  display: inline-block;
  border: 1px solid var(--default-gray);
  vertical-align: middle;
  background: var(--base-gray-default);
}
@media screen and (max-width: 767px) {
  .select_area {
    width: 100%;
  }
}
.select_area::before {
  position: absolute;
  display: inline-block;
  content: "";
  top: 20px;
  right: 16px;
  width: 0;
  height: 0;
  border-width: 9px 6px 0 6px;
  border-style: solid;
  border-color: var(--default-gray) transparent transparent transparent;
  pointer-events: none;
}

.select_area select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 11px 15px;
  padding-right: 2.5em;
  border: none;
  outline: 0;
  background: var(--base-gray-default);
  text-indent: 0.01px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .select_area select {
    width: 100%;
  }
}

.ajax_err p {
  position: relative;
  margin-top: 8px;
  padding: 8px 15px 8px;
  display: inline-block;
  color: var(--default-red-dark);
  line-height: 1.6;
  font-size: fo(14);
  border-radius: 5px;
  border: solid 1px var(--default-red-dark);
  background: var(--base-pink-default);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}
@media all and (min-width: 768px) {
  .ajax_err p {
    margin-top: 10px;
    padding: 10px 40px 10px;
    font-size: 0.9375rem;
  }
}

.ajax_err p:before {
  content: "";
  position: absolute;
  top: -11px;
  left: 50px;
  margin-left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid var(--default-red-dark);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}

.ajax_err p:after {
  content: "";
  position: absolute;
  top: -9px;
  left: 50px;
  margin-left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid var(--base-pink-default);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}

.ajax_err p.arw_center:before {
  left: 50%;
  transform: translateX(50%);
}

.ajax_err p.arw_center:after {
  left: 50%;
  transform: translateX(50%);
}

.l-form-btnArea {
  margin: 20px auto 50px;
}

.l-form-actbtn {
  padding: 0;
}
@media all and (min-width: 768px) {
  .l-form-actbtn {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
  }
}
.l-form-actbtn li {
  list-style: none;
}

@media screen and (max-width: 767px) {
  .l-form-actbtn li + li {
    margin-top: 15px;
  }
}
@media all and (min-width: 768px) {
  .l-form-actbtn li + li {
    margin-right: 15px;
  }
}

@media screen and (max-width: 767px) {
  .btn_form {
    width: 100%;
  }
}

.btn_form a {
  display: block;
  padding: 20px;
  text-align: center;
  color: #fff;
  border-radius: 40px;
}
@media all and (min-width: 768px) {
  .btn_form a {
    width: 420px;
  }
}
.btn_form a:hover {
  text-decoration: none;
  background: var(--default-blue);
}

.btn_form.send {
  background: var(--default-black);
  border-radius: 40px;
}
.btn_form.back {
  background: var(--default-gray);
  border-radius: 40px;
}

@media all and (min-width: 768px) {
  .form-address {
    display: flex;
  }
}

#Ready-text {
  margin: 15px auto;
  font-size: 1.25rem;
  text-align: center;
  font-weight: 500;
}

.form-Contents.conlayout {
  margin-top: 20px;
}
@media all and (min-width: 768px) {
  .form-Contents.conlayout .form-Item dt {
    margin-top: 0 !important;
  }
}/*# sourceMappingURL=style.css.map */