@charset "UTF-8";

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  color: #454545;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.6;
  letter-spacing: 0.08em;
  width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
}

img,
video,
object {
  max-width: 100%;
  width: 100%;
  height: auto;
  border: none;
  display: block;
}

a,
button {
  cursor: pointer;
  transition: opacity 0.3s, color 0.3s;
}

a:hover,
button:hover {
  opacity: 0.7;
}

a {
  word-wrap: break-word;
}

a:hover {
  color: #54C3F1;
}

@keyframes left-to-right {
  0% {
    width: 0%;
    opacity: 0;
  }

  100% {
    width: 100%;
    opacity: 1;
  }
}

/* -------
  header
------- */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

header .header_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FFF;
  padding: 2rem 3rem;
  position: relative;
}

header .header_logo {
  max-width: 25rem;
  z-index: 1000;
}

header .header_logo_img {
  max-width: 25rem;
}

header .header_cart {
  background-color: #F18254;
  border-radius: 50%;
}

header .header_cart_img {
  display: none;
}

header .header_nav {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: column;
  gap: 1.5rem;
}

header .header_nav_list {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  gap: 2rem;
  order: 2;
}

header .header_nav_link {
  font-size: 1.5rem;
  font-weight: bold;
}

header .header_nav_extra {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  order: 1;
}

header .header_nav_tel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  line-height: 1.1;
  text-align: center;
}

header .header_nav_tel_num {
  font-family: "Roboto", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0;
  margin-left: 3rem;
  position: relative;
}

header .header_nav_tel_num::before {
  content: "";
  position: absolute;
  top: 0.2rem;
  left: -14%;
  width: 2.3rem;
  height: 2.3rem;
  background: url(../../assets/img/common/icon_tel.svg) no-repeat center/contain;
}

header .header_nav_tel_time {
  font-size: 1.2rem;
}

header .header_nav_order {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}

header .header_btn {
  font-size: 1.6rem;
  padding: 0.4rem 1.6rem;
  width: 15rem;
}

header .header_menubtn {
  display: none;
}

header .header_dropdown {
  width: 100%;
  --dropdown-trigger-height: 0px;
}

html.js_resizing header .header_dropdown,
html.js_resizing header .header_dropdown *,
html.js_resizing header .header_dropdown *::before,
html.js_resizing header .header_dropdown *::after {
  transition: none !important;
  animation: none !important;
}

header .header_dropdown .dropdown_primary {
  background-color: #54C3F1;
}

header .header_dropdown .dropdown_secondary {
  background-color: #F18254;
}

header .header_dropdown_list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  font-weight: 600;
  order: 2;
}

header .header_dropdown_menu {
  color: #FFF;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1.5;
  padding: 1.8rem 2rem;
  position: relative;
  width: 50%;
  transition: 0.3s;
}

html.js_resizing header .header_dropdown_menu {
  transition: none;
}

header .header_dropdown_arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%) rotate(45deg);
  width: 0.9rem;
  height: 0.9rem;
  border-right: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  transition: all 0.3s;
}

html.js_resizing header .header_dropdown_arrow::after {
  transition: none;
}

header .header_dropdown_arrow:hover::after {
  top: 55%;
  transform: translateY(-50%) rotate(-135deg);
}

header .header_dropdown_child {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 1.4rem 4rem;
  padding: 2rem 7rem 4rem;
  font-size: 1.7rem;
  font-feature-settings: "palt";
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1.2rem);
  pointer-events: none;
  transition: max-height 0.3s ease, opacity 0.3s, transform 0.3s, visibility 0.3s;
  width: 100%;
  min-width: 24rem;
  max-height: 0;
  overflow: hidden;
}

html.js_resizing header .header_dropdown_child {
  transition: none;
}

header .header_dropdown_child_menu {
  border-bottom: 1px solid #FFF;
  width: calc((100% - 4rem) / 2);
}

header .header_dropdown_child_link {
  color: #FFF;
  display: block;
  padding: 1rem 2.2rem 1rem 0;
  transition: all 0.3s;
  position: relative;
}

header .header_dropdown_child_link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: #FFF;
  border-radius: 50%;
  width: 2.2rem;
  height: 2.2rem;
}

header .header_dropdown_child_link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.6rem;
  transform: translateY(-50%);
  background: no-repeat center/contain;
  width: 0.9rem;
  height: 0.7rem;
}

header .header_dropdown_child_primary::after {
  background-image: url(../../assets/img/common/icon_btn_arrow_primary.svg);
}

header .header_dropdown_child_secondary::after {
  background-image: url(../../assets/img/common/icon_btn_arrow_secondary.svg);
}

/* -------
  layout
------- */

/* layout (contents section) */

.section {
  margin-bottom: 12rem;
}

/* layout (inner) */

.inner {
  max-width: 120rem;
  margin: 0 auto;
  position: relative;
}

/* -------
  components
------- */

/* component (breadcrumb) */

.breadcrumb {
  font-size: 1.4rem;
  margin: 5rem 0 12rem;
}

.breadcrumb_list {
  display: inline-block;
}

.breadcrumb_list_item {
  display: inline;
  position: relative;
}

.breadcrumb_list_item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.7rem;
  transform: translateY(-50%) rotate(-45deg);
  width: 0.8rem;
  height: 0.8rem;
  border-right: 1px solid #454545;
  border-bottom: 1px solid #454545;
}

.breadcrumb_list_item:last-child::after {
  content: none;
}

.breadcrumb_list_item:not(:last-child) {
  padding-right: 2rem;
}

.breadcrumb_list_item a {
  transition: color 0.3s;
}

.breadcrumb_list_item a:hover {
  color: #54C3F1;
}

/* components (heading) */

.heading_ttl_en {
  color: #54C3F1;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  letter-spacing: 0.2em;
}

.heading_ttl_jp {
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 1.5;
}

.heading_sub {
  margin-bottom: 10rem;
}

.heading_sub_h2 {
  font-size: 3.6rem;
  font-weight: 600;
  margin-bottom: 1em;
}

.heading_sub_txt {
  font-size: 1.6rem;
  line-height: 1.7;
}

.heading_sub_txt:not(:last-child) {
  margin-bottom: 1.5em;
}

.heading_2 {
  font-size: 3.6rem;
}

.heading_2 {
  font-weight: 600;
  margin-bottom: 1.5em;
  padding-left: 1.2em;
  position: relative;
}

.heading_2::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  display: inline-block;
  border-radius: 0.7rem;
  width: 2.8rem;
  height: 2.8rem;
}

.heading_2.heading_primary::before {
  background-color: #54C3F1;
}

.heading_2.heading_secondary::before {
  background-color: #F18254;
}

.heading_2.ta_center {
  padding-bottom: 1em;
  padding-left: 0;
}

.heading_2.ta_center::before {
  content: none;
}

.heading_2.ta_center::after {
  content: "";
  position: absolute;
  top: auto;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 1rem;
  width: 10rem;
  height: 0.6rem;
}

.heading_3 {
  font-size: 2.8rem;
}

.heading_3 {
  font-weight: 600;
  margin-bottom: 1em;
  padding-left: 1em;
  position: relative;
}

.heading_3::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  display: inline-block;
  border-radius: 0.5rem;
  width: 2rem;
  height: 2rem;
}

.heading_3.heading_primary::before {
  background-color: #54C3F1;
}

.heading_3.heading_secondary::before {
  background-color: #F18254;
}

.heading_3.ta_center {
  color: #F18254;
  padding-bottom: 1em;
  padding-left: 0;
}

.heading_3.ta_center::before {
  background-color: transparent;
}

.heading_3.heading_primary::before {
  border-color: #54C3F1;
}

.heading_3.heading_secondary::before {
  border-color: #F18254;
}

.heading_4 {
  font-size: 2.5rem;
}

.heading_4 {
  font-weight: 600;
  margin-bottom: 1em;
  padding-left: 1em;
  position: relative;
}

.heading_4::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  display: inline-block;
  background-color: #54C3F1;
  vertical-align: 0.1em;
  border-radius: 0.3rem;
  width: 1rem;
  height: 1rem;
}

.heading_4.ta_center {
  padding-bottom: 1em;
  padding-left: 0;
}

.heading_4.ta_center::before {
  content: none;
}

.heading_primary.ta_center::after {
  background-color: #54C3F1;
}

.heading_secondary.ta_center::after {
  background-color: #F18254;
}

/* components (entrance) */

.entrance_menu {
  display: flex;
  justify-content: center;
  align-items: stretch;
  z-index: 10;
  gap: 3rem;
  padding: 0 3.5rem;
  width: 100%;
}

.entrance_menu_box {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 3rem;
  box-shadow: 0 0.4rem 1.5rem rgba(0, 0, 0, 0.15);
  padding: 6rem 5rem;
  width: 55rem;
}

.entrance_menu_primary {
  background-color: #ECF8FD;
}

.entrance_menu_secondary {
  background-color: #FFF3EE;
}

.entrance_menu_ttl {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2.6rem;
  text-align: center;
}

.entrance_menu_ttl.color_primary {
  color: #54C3F1;
}

.entrance_menu_ttl.color_secondary {
  color: #F18254;
}

.entrance_menu_txt {
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 3rem;
  text-align: center;
}

.entrance_menu_btn {
  width: 100% !important;
}

/* component (reason) */

.reason_list {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 3rem;
  margin-top: 5rem;
  max-width: 101rem;
}

.reason_list_center {
  margin: 0 auto;
}

.reason_list_box {
  width: 25%;
}

.reason_list_img {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.4rem;
  background-color: #FFF;
  border-radius: 50%;
  aspect-ratio: 1/1;
  box-shadow: 0 0.4rem 1.5rem rgba(0, 0, 0, 0.15);
  margin-bottom: 4rem;
  padding: 1rem;
}

.reason_list_img .label {
  color: #FFF;
  background-color: #F18254;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  padding: 0.3rem 0.5rem 0.3rem 1rem;
  position: relative;
}

.reason_list_img .label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #F18254;
  margin-left: -0.4rem;
  width: 2px;
  height: 4rem;
}

.reason_list_img .img {
  width: 10rem;
}

.reason_list_txt {
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  position: relative;
}

.reason_list_txt::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: 0;
  border-top: 1px solid #F18254;
  border-left: 1px solid #F18254;
  width: 2.4rem;
  height: 2.4rem;
}

.reason_list_txt::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1rem;
  border-right: 1px solid #F18254;
  border-bottom: 1px solid #F18254;
  width: 2.4rem;
  height: 2.4rem;
}

/* components (table) */

.table_box .list_disc_item {
  font-size: inherit;
}

.table_column {
  width: 100%;
}

.table_tr {
  border: 0.1rem solid #54C3F1;
}

.table_tr:last-child .table_th {
  border-bottom: 0.1rem solid #54C3F1;
}

.table_th {
  color: #FFF;
  background-color: #54C3F1;
  border-right: 0.1rem solid #54C3F1;
  border-bottom: 0.1rem solid #FFF;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 3rem;
  vertical-align: middle;
}

.table_th.w20per {
  width: 20%;
}

.table_td {
  font-size: 1.6rem;
  padding: 3rem;
  vertical-align: middle;
}

.table_td:not(:last-child) {
  border-right: 0.1rem solid #54C3F1;
}

.table_txt {
  font-size: 1.6rem;
}

.table_txt + .table_txt {
  margin-top: 1em;
}

.table_comparison {
  border-collapse: separate;
  width: 100%;
}

.table_comparison_head_tr {
  font-size: 1.6rem;
}

.table_comparison_head_th {
  background-color: #F6F6F6;
  border-top-right-radius: 2rem;
  border-top-left-radius: 2rem;
  font-size: 1.6rem;
  line-height: 1.4;
  padding: 2rem;
  text-align: center;
  vertical-align: middle;
  width: 33.3333333333%;
}

.table_comparison_head_th:nth-child(2) {
  color: #FFF;
  background-color: #54C3F1;
}

.table_comparison_head_td {
  line-height: 1.4;
  padding: 2rem;
  text-align: center;
  vertical-align: middle;
  width: 33.3333333333%;
}

.table_comparison_body_tr {
  font-size: 1.6rem;
}

.table_comparison_body_tr:last-child .table_comparison_body_td:nth-child(2) {
  border-bottom: 4px solid #54C3F1;
}

.table_comparison_body_th {
  background-color: #ECF8FD;
  border-bottom: 2px solid #FFF;
  line-height: 1.4;
  padding: 2rem;
  text-align: center;
  vertical-align: middle;
}

.table_comparison_body_td {
  border-right: 2px solid #EEE;
  border-bottom: 2px solid #EEE;
  font-size: 1.6rem;
  line-height: 1.4;
  padding: 2rem;
  text-align: center;
  vertical-align: middle;
}

.table_comparison_body_td:nth-child(2) {
  border: 2px solid #54C3F1;
  border-right-width: 4px;
  border-left-width: 4px;
  border-top: none;
  font-weight: 600;
}

.table_product {
  margin: 0 auto;
  min-width: 50%;
  max-width: 100rem;
}

.table_product.w_100per {
  min-width: 100%;
}

.table_product .tr {
  border: 2px solid #54C3F1;
}

.table_product .th {
  color: #FFF;
  background-color: #54C3F1;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  padding: 1.5rem;
  vertical-align: middle;
}

.table_product .th:not(:last-child) {
  border-right: 2px solid #FFF;
}

.table_product .th.w_column2 {
  width: 50%;
}

.table_product .th.w_column3 {
  width: 33.3333333333%;
}

.table_product .th.w_column5 {
  width: 20%;
}

.table_product .th.w_label {
  width: 25rem;
}

.table_product .td {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  padding: 1.5rem;
  vertical-align: middle;
  white-space: nowrap;
}

.table_product .td:not(:first-child) {
  border-left: 2px solid #54C3F1;
}

.table_product .td.add_label {
  table-layout: fixed;
  width: 0;
}

.table_product .td.add_label:nth-child(1) {
  padding-right: 0;
  padding-left: 3rem;
}

.table_product .td.add_label:nth-child(2) {
  border-left: none;
}

.table_product .td.add_label:nth-child(3) {
  border-left: none;
  width: 7rem;
}

.table_product .td.add_label:nth-child(5) {
  border-left: inherit;
  padding-right: 0;
  padding-left: 3rem;
}

.table_product .td.add_label:nth-child(6) {
  border-left: none;
}

.table_product .td.add_label:nth-child(7) {
  border-left: none;
  width: 7rem;
}

.table_product .td.bg_gray {
  background-color: #F6F6F6;
}

.table_product .label_delivery {
  display: inline-block;
  color: #FFF;
  background-color: #F18254;
  border-radius: 1rem;
  font-size: 1.4rem;
}

.table_product .label_delivery {
  /*margin: 0 1rem;*/
  padding: 0.4rem 0.8rem;
  width: fit-content;
}

.table_stripe .table_th {
  color: #454545;
  background-color: #FFF;
  border: 0.1rem solid #54C3F1;
}

.table_stripe .table_tr:nth-child(even) .table_th {
  background-color: #ECF8FD;
}

.table_stripe .table_tr:nth-child(even) .table_td {
  background-color: #ECF8FD;
}

/* components (text) */

.txt_box {
  margin-bottom: 4em;
}

.txt_p {
  font-size: 1.6rem;
  line-height: 1.7;
}

.txt_p + .txt_p {
  margin-top: 1em;
}

.txt_p.lg {
  font-size: 2.4rem;
}

.txt_p.sm {
  font-size: 1.4rem;
}

.txt_signature {
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: 600;
}

.txt_pop {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.txt_pop_left {
  display: block;
  background-color: #54C3F1;
  width: 3.3rem;
  height: 0.3rem;
  transform: rotate(50deg);
}

.txt_pop_right {
  display: block;
  background-color: #54C3F1;
  width: 3.3rem;
  height: 0.3rem;
  transform: rotate(-50deg);
}

.notes {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2;
}

.list_disc {
  list-style: disc;
  padding-left: 2em;
}

.list_disc_item {
  font-size: 1.6rem;
}

.list_kome {
  list-style: none;
  padding-left: 1.2em;
}

.list_kome_item {
  position: relative;
  font-size: 1.4rem;
}

.list_kome_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1.2em;
  content: "※";
}

.list_kome.notes .list_kome_item {
  font-size: 1.4rem;
}

.list_num {
  list-style: decimal;
  padding-left: 1.5em;
}

.list_num_item {
  font-size: 1.6rem;
}

.instagram_ttl {
  display: flex;
  justify-content: center;
  align-items: center;
}

.instagram_icon {
  width: 5rem;
}

.demibold {
  font-weight: 600;
}

/* color */

.color_primary {
  color: #54C3F1;
}

.color_secondary {
  color: #F18254;
}

.color_white {
  color: #FFF;
}

.color_black {
  color: #454545;
}

.color_alert {
  color: #F00;
}

/* underline (marker) */

.marker_yellow {
  background: linear-gradient(transparent 60%, #FF0 60%, #FF0 100%);
  padding: 0 0.5rem;
}

/* text align */

.ta_left {
  text-align: left !important;
}

.ta_center {
  text-align: center !important;
}

.ta_right {
  text-align: right !important;
}

.ta_justify {
  text-align: justify !important;
}

/* components (img) */

.img_box {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: column;
  gap: 3rem;
}


.wp-block-image .img_align_right {
  margin-left: auto;
  float: none;
}

.wp-block-image .img_align_left {
  margin-right: auto;
  float: none;
}

/* bg */

.bg_primary {
  padding: 10.5rem 0;
  position: relative;
}

.bg_primary::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-color: #ECF8FD;
  border-top-left-radius: 10rem;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.bg_primary::after {
  content: "";
  position: absolute;
  top: 0;
  right: calc(50% - 50vw);
  background-color: #ECF8FD;
  width: calc(50vw - 50%);
  height: 100%;
}

.bg_color_primary {
  background-color: #ECF8FD;
}

.bg_color_secondary {
  background-color: #FFF3EE;
}

/* box */

.box_base {
  padding: 4rem;
}

.box_border {
  border: 0.2rem solid #54C3F1;
  border-radius: 5rem;
  padding: 5rem;
}

.box_bg_yellow {
  background-color: #E5F1FF;
}

.box_bg_green {
  background-color: #EDFFF4;
}

.box_bg_gray {
  background-color: #CCC;
}

.box_radius {
  border-radius: 3.3rem;
}

.box_img_4 {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 2rem;
}

.box_img_4_item {
  font-size: 1.4rem;
  line-height: 1.2;
  text-align: center;
  width: calc((100% - 2rem) / 2);
}

.box_img_4_txt {
  font-weight: 500;
  margin-top: 1rem;
  padding-top: 1rem;
  position: relative;
}

.box_img_4_txt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  width: 3rem;
  border-top: 0.4rem dotted #F18254;
}

.box_img_4 .img {
  border-radius: 5rem;
  margin-bottom: 1rem;
}

.box_arrow {
  position: relative;
}

.box_arrow::after {
  position: absolute;
  bottom: -8rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5rem 7rem 0 7rem;
  border-color: #EEE transparent transparent transparent;
}

.box_sample {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 6rem;
}

.box_sample_img {
  width: calc((100% - 12rem) / 4);
}

/* components (parts) */

.column + .link_category {
  margin-top: 2em;
}

.column .parts {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 6rem;
}

.column .parts:not(:last-child) {
  margin-bottom: 12rem;
}

.column_2 .box {
  width: calc((100% - 6rem) / 2);
}

.column_3 {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 6rem;
  margin-bottom: 6rem;
}

.column_3 .parts {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 1rem !important;
  width: calc((100% - 6rem) / 3);
}

.column_3 .parts:not(:last-child) {
  margin-bottom: 0 !important;
}

.column_3 .txt_p {
  line-height: 1.4;
}

.column_4 {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 3rem;
}

.column_4 .parts {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 3rem;
  width: calc((100% - 4rem) / 4);
}

.column_ttl {
  margin-bottom: 0.5em;
}

.column_ttl.heading_2::before {
  content: none;
}

.column_ttl.heading_3::before {
  content: none;
}

.column_ttl.heading_4::before {
  content: none;
}

/* column layout */

.layout_reverse .reverse:nth-child(odd) .box:nth-child(odd) {
  order: 2;
}

.layout_reverse .reverse:nth-child(odd) .img {
  border-radius: 7rem;
  border-bottom-left-radius: unset;
}

.layout_reverse .reverse:nth-child(even) .img {
  border-radius: 7rem;
  border-bottom-right-radius: unset;
}

/* step */

.step {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: column;
  gap: 12rem;
}

.step_box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  background-color: #ECF8FD;
  position: relative;
}

.step_box:nth-child(odd) {
  border-top-left-radius: 10rem;
}

.step_box:nth-child(odd)::before {
  content: "";
  position: absolute;
  top: 0;
  right: calc(50% - 50vw);
  background-color: #ECF8FD;
  width: calc(50vw - 50%);
  height: 100%;
}

.step_box:nth-child(odd) .step_inner {
  padding-left: 7rem;
}

.step_box:nth-child(even) {
  border-top-right-radius: 10rem;
}

.step_box:nth-child(even)::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  background-color: #ECF8FD;
  width: calc(50vw - 50%);
  height: 100%;
}

.step_box:nth-child(even) .step_inner {
  padding-right: 7rem;
}

.step_box:nth-child(even) .step_content {
  order: 2;
}

.step_box:nth-child(even) .step_img {
  order: 1;
}

.step_box:not(:last-child)::after {
  position: absolute;
  bottom: -8rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3.4rem 4rem 0 4rem;
  border-color: #54C3F1 transparent transparent transparent;
}

.step_inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 5rem;
  margin-top: 4rem;
  padding-bottom: 7rem;
  width: 100%;
}

.step_content {
  width: calc(100% - 38rem - 5rem);
}

.step_ttl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 2.8rem;
}

.step_ttl {
  font-weight: 600;
  margin-bottom: 0.5em;
  padding-left: 0;
}

.step_num {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #54C3F1;
  background-color: #FFF;
  border: 0.3rem solid #54C3F1;
  border-radius: 50%;
  aspect-ratio: 1/1;
  font-family: "Roboto", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0;
  margin-right: 1rem;
  height: 4rem;
  width: 4rem;
}

.step_img {
  width: 38rem;
}

/* point item */

.point {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 5rem 10rem;
}

.point_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.5rem;
  width: calc((100% - 20rem) / 5);
}

.point_img_circle {
  border-radius: 50%;
}

.point_desc {
  text-align: center;
}

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

/* modal */

.modal {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
}

.modal_box {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: column;
  cursor: pointer;
  width: calc((100% - 12rem) / 3);
}

.modal_box_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  border: 0.2rem solid #54C3F1;
  border-top-left-radius: 3.5rem;
  width: 100%;
  height: 100%;
  position: relative;
}

.modal_box_inner::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #54C3F1;
  width: 5rem;
  height: 5rem;
  border-top-left-radius: 3rem;
}

.modal_box_inner::after {
  content: "";
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  background: url("../../assets/img/common/icon_zoom.svg") no-repeat center/contain;
  width: 2.8rem;
  height: 2.8rem;
}

.modal_box_txt {
  color: #54C3F1;
  background-color: #ECF8FD;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  padding: 1.6rem 0;
}

.modal_img {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem;
  min-height: 33rem;
}

.modal_img .img {
  margin: 0 auto;
  width: auto;
  max-height: 30rem;
}

.modal_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal_wrap.is_open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal_wrap.is_open .modal_overlay {
  opacity: 1;
}

.modal_wrap.is_open .modal_inner {
  opacity: 1;
  transform: translateY(0);
}

.modal_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal_inner {
  background: #FFF;
  border-radius: 3rem;
  padding: 4rem;
  width: min(90%, 60rem);
  max-height: 90vh;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  transform: translateY(1.2rem);
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.modal_content {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}

.modal_content_img {
  padding: 0;
}

.modal_content_img .img {
  margin: 0 auto;
  width: auto;
}

.modal_close {
  font-size: 2.4rem;
}

.modal_close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  line-height: 1;
  cursor: pointer;
  background: none;
  border: none;
}

/* component (button) */

.video {
  margin: 0 auto;
  max-width: 72rem;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.video.is_playing::before,
.video.is_playing::after {
  opacity: 0;
}

.video::before,
.video::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.2s ease;
}

.video::before {
  background-color: rgba(69, 69, 69, 0.65);
  border-radius: 50%;
  width: 8rem;
  height: 8rem;
  box-shadow: 0 0.8rem 2rem rgba(69, 69, 69, 0.18);
}

.video::after {
  border-top: 1.4rem solid transparent;
  border-bottom: 1.4rem solid transparent;
  border-left: 2.2rem solid #FFF;
  margin-left: 0.5rem;
}

.video_player {
  aspect-ratio: 16/9;
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* components (shop) */

.shop_column {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 4rem 2rem;
}

.shop_parts {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: column;
  gap: 2rem;
  background-color: #FFF;
  border: 2px solid #EEE;
  border-radius: 2rem;
  font-weight: 600;
  padding: 3rem 2rem;
  width: 25%;
}

.shop_parts .column_txt {
  line-height: 1.4;
}

.shop_parts .column_txt .txt_p {
  font-size: 1.5rem;
}

.shop_parts .column_img {
  flex-grow: 1;
}

.shop_parts .column_img .img {
  margin: 0 auto;
  width: fit-content;
  height: 20rem;
}

.shop_parts .btn_center {
  margin-top: 2rem;
}

.shop_price {
  font-size: 1.8rem;
  margin-top: 0.5em;
}

/* components (link) */

.link_category {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-bottom: 8rem;
}

.link_category_link {
  display: block;
  border-bottom: 2px solid transparent;
  font-size: 1.6rem;
  font-weight: 600;
  padding-bottom: 1rem;
  transition: color 0.3s;
}

.link_category_link:hover {
  color: #54C3F1;
  border-bottom: 2px solid #54C3F1;
}

.link_category_link.active {
  color: #54C3F1;
  border-bottom: 2px solid #54C3F1;
}

.link_page {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 2rem;
}

.link_page_item {
  width: calc((100% - 8rem) / 5);
}

.link_page_link {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #54C3F1;
  background-color: #EDFFF4;
  font-weight: 600;
  line-height: 1.3;
  padding: 1rem 3.5rem 1rem 2rem;
  text-align: center;
  height: 100%;
  position: relative;
  transition: color 0.4s, background-color 0.4s;
}

.link_page_link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%) rotate(45deg);
  width: 0.8rem;
  height: 0.8rem;
  border-right: 2px solid #54C3F1;
  border-bottom: 2px solid #54C3F1;
}

.link_page_link:hover {
  color: #FFF;
  background-color: #54C3F1;
}

.link_page_link:hover::after {
  border-right-color: #FFF;
  border-bottom-color: #FFF;
}

.link_txt {
  text-decoration: underline;
}

.link_txt:hover {
  color: #54C3F1;
}

.link_underline {
  color: #54C3F1;
  text-decoration: underline;
}

.link_underline:hover {
  opacity: 0.7;
}

/* component (button) */

.btn_center {
  /*display: block;*/
  margin: 0 auto;
  width: fit-content;
}

.btn_center + .link_category {
  margin-top: 2em;
}

.btn_right {
  margin-right: 0;
  margin-left: auto;
  width: fit-content;
}

.btn_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.btn_base {
  display: block;
  color: #FFF;
  border-radius: 5.2rem;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.3;
  padding: 2.1rem 3.2rem;
  width: fit-content;
  position: relative;
}

.btn_base:hover {
  color: #FFF;
}

.btn_base.arrow {
  padding-right: 7rem !important;
}

.btn_base.arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  background-color: #FFF;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
}

.btn_base.arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.8rem;
  transform: translateY(-50%);
  background: no-repeat center/contain;
  width: 1.2rem;
  height: 0.9rem;
}

.btn_base.arrow_reverse {
  padding-right: 3rem !important;
  padding-left: 6.4rem;
}

.btn_base.arrow_reverse::before {
  right: auto;
  left: 1.5rem;
}

.btn_base.arrow_reverse::after {
  right: 0;
  left: 2.8rem;
  transform: translateY(-50%) rotate(180deg);
}

.btn_base.arrow_min {
  padding-right: 4rem !important;
}

.btn_base.arrow_min::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%) rotate(-45deg);
  width: 0.9rem;
  height: 0.9rem;
  border-right: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  transition: all 0.3s;
}

.btn_base.cart {
  padding-right: 6.4rem;
}

.btn_base.cart::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  background: url(../../assets/img/common/icon_cart.svg) no-repeat center/contain;
  width: 3.2rem;
  height: 3.2rem;
}

.btn_base.font_s {
  font-size: 1.5rem;
}

.btn_base.w_350 {
  width: 35rem;
}

.btn_base.color_primary {
  background: #54C3F1;
}

.btn_base.color_primary.arrow::after {
  background-image: url(../../assets/img/common/icon_btn_arrow_primary.svg);
}

.btn_base.color_primary_line {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: #ECF8FD;
  border: 1px solid #54C3F1;
  color: #54C3F1;
  padding-right: 6rem !important;
  height: 100%;
}

.btn_base.color_primary_line.arrow::before {
  background-color: #54C3F1;
}

.btn_base.color_primary_line.arrow::after {
  background-image: url(../../assets/img/common/icon_btn_arrow_white.svg);
}

.btn_base.color_secondary {
  background: #F18254;
}

.btn_base.color_secondary.arrow::after {
  background-image: url(../../assets/img/common/icon_btn_arrow_secondary.svg);
}

.btn_base.color_secondary_line {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: #FFF3EE;
  border: 1px solid #F18254;
  color: #F18254;
  padding-right: 6rem !important;
  height: 100%;
}

.btn_base.color_secondary_line.arrow::before {
  background-color: #F18254;
}

.btn_base.color_secondary_line.arrow::after {
  background-image: url(../../assets/img/common/icon_btn_arrow_white.svg);
}

.btn_base.color_white_primary {
  background: #FFF;
}

.btn_base.color_white_primary.arrow::before {
  background-color: #54C3F1;
}

.btn_base.color_white_primary.arrow::after {
  background-image: url(../../assets/img/common/icon_btn_arrow_white.svg);
}

.btn_base.color_white_primary.color_primary {
  color: #54C3F1;
}

.btn_base.color_white_secondary {
  background: #FFF;
}

.btn_base.color_white_secondary.arrow::before {
  background-color: #F18254;
}

.btn_base.color_white_secondary.arrow::after {
  background-image: url(../../assets/img/common/icon_btn_arrow_white.svg);
}

.btn_base.color_white_secondary.color_secondary {
  color: #F18254;
}

.btn_base.color_white_secondary.color_black {
  color: #454545;
}

.btn_base {
  /*&[target="_blank"] {
  	padding-right: 6.5rem;

  	@include breakpoint(sp) {
  		padding-right: 3.3rem;
  	}

  	@include breakpoint(tablet) {
  		padding-right: 4.5rem;
  	}

  	&::after {
  		@include position-absolute-pseudo(50%, 2.7rem, null, null, translateY(-50%));
  		width: 1.1rem;
  		height: 1.1rem;
  		background: url(../../assets/img/common/btn_blank.svg) no-repeat center/ contain;

  		@include breakpoint(sp) {
  			right: 1.4rem;
  		}

  		@include breakpoint(tablet) {
  			right: 2rem;
  		}
  	}
  }*/
}

.btn_gradient {
  color: #FFF;
  background: linear-gradient(90deg, #00C8C8 0%, #69F6A1 50%, #00C8C8 100%);
  background-size: 200% 100%;
  transition: 0.3s;
}

.btn_gradient:hover {
  background-position: 100% 0;
}

.btn_circle {
  flex-grow: 1;
  display: block;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 3.7rem 1.8rem 0;
  padding-right: 5rem;
  position: relative;
}

.btn_circle::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: #F18254;
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
}

.btn_circle::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.2rem;
  transform: translateY(-50%) rotate(-45deg);
  width: 0.9rem;
  height: 0.9rem;
  border-right: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
}

.btn_circle:hover::before {
  transform: translateY(-50%) scale(1.24);
}

.btn_border {
  border: 1px solid #54C3F1;
}

.btn_white_list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 1.5rem 7.5rem;
}

.btn_white_menu {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  background-color: #FFF;
  border-radius: 2.4rem;
  position: relative;
}

.btn_white_menu::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #E5F1FF;
  border-top-left-radius: 50%;
  width: 8.8rem;
  height: 8.8rem;
}

.btn_white_link {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 2rem;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.5;
  padding: 5rem 3.6rem 6rem;
  width: 100%;
  position: relative;
  z-index: 1;
}

.btn_white_link:hover {
  color: inherit;
}

.btn_white_link::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #54C3F1;
  border-radius: 50%;
  width: 7.6rem;
  height: 7.6rem;
  transition: transform 0.3s, scale 0.3s;
}

.btn_white_link::after {
  content: "";
  position: absolute;
  right: 2.8rem;
  bottom: 3rem;
  background: url(../../assets/img/common/icon_btn_arrow_white.svg) no-repeat center/contain;
  width: 1.8rem;
  height: 1.4rem;
}

.btn_white_en {
  color: #54C3F1;
  font-size: 1.6rem;
  font-weight: 400;
}

.btn_white_jp {
  font-size: 4.5rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.btn_white .column_2 .btn_white_menu {
  width: calc((100% - 7.5rem) / 2);
}

.btn_white .column_3 {
  flex-wrap: nowrap;
}

.btn_white .column_3 .btn_white_menu {
  width: calc((100% - 2rem) / 3);
}

.btn_white .column_3 .btn_white_link {
  padding: 3rem 3.5rem 3rem 2.5rem;
}

.btn_page_list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.btn_page_menu {
  display: flex;
  justify-content: center;
  align-items: stretch;
  color: #54C3F1;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  width: calc((100% - 7.5rem) / 4);
}

.btn_page_link {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ECF8FD;
  border: 0.2rem solid #54C3F1;
  font-size: 1.6rem;
  padding: 1.5rem 3.5rem 1.5rem 1.5rem;
  width: 100%;
  position: relative;
}

.btn_page_link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.2rem;
  transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid #54C3F1;
  border-bottom: 2px solid #54C3F1;
  transition: all 0.1s;
  width: 0.9rem;
  height: 0.9rem;
}

.btn_page_link:hover::after {
  top: calc(50% + 0.2rem);
}

.btn_page2_list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 5rem;
}

.btn_page2_menu {
  font-size: 2rem;
}

.btn_page2_menu {
  font-weight: 600;
  line-height: 1.3;
  padding-left: 2em;
  position: relative;
}

.btn_page2_menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #F18254;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
}

.btn_page2_menu::after {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 0.8rem;
  transform: rotate(45deg);
  border-right: 0.2rem solid #FFF;
  border-bottom: 0.2rem solid #FFF;
  transition: all 0.3s;
  width: 0.9rem;
  height: 0.9rem;
}

.btn_bottom_menu {
  width: 100%;
}

.btn_bottom_link {
  border-radius: 3rem;
  padding: 2.4rem 1.8rem;
  width: 100%;
}

.icon_login {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.icon_login_img {
  width: 1.4rem;
  height: 1.5rem;
}

.icon_cart {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.icon_cart_img {
  width: 2rem;
  height: 2rem;
}

.icon_mail {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  padding: 2rem 3rem;
}

.icon_mail_img {
  width: 2.5rem;
  height: 2.5rem;
}

.icon_nobori {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.icon_nobori_img {
  width: 1.4rem;
  height: 4rem;
}

.icon_pipe {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.icon_pipe_img {
  width: 1.4rem;
  height: 3.6rem;
}

/* components (accordion) */

/* accordion (js_accordion) */

.js_accordion {
  cursor: pointer;
}

.js_accordion_head {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.js_accordion_open {
  max-height: 100rem;
}

/* component (form) */

.form_radio {
  display: flex;
  flex-direction: column;
  width: fit-content;
}

.form_radio_label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
  width: fit-content;
}

.form_radio input[type=radio] {
  appearance: none;
  border: 2px solid #EEE;
  border-radius: 50%;
  margin-right: 1.0rem;
  padding: 0;
  width: 2rem;
  height: 2rem;
  outline: none;
  position: relative;
}

.form_radio input[type=radio]:checked {
  border-color: #54C3F1;
}

.form_radio input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #54C3F1;
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
}

.form_check[type=checkbox] {
  appearance: none;
  border: 2px solid #EEE;
  margin-right: 0.8rem;
  padding: 0;
  width: 2rem;
  height: 2rem;
  outline: none;
  cursor: pointer;
  position: relative;
}

.form_check[type=checkbox]:checked {
  border-color: #54C3F1;
}

.form_check[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.2rem);
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  border-right: 3px solid #54C3F1;
  border-bottom: 3px solid #54C3F1;
  width: 0.7rem;
  height: 1.3rem;
}

.form_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #EEE;
  gap: 2rem;
  padding: 2rem 0;
}

.form_list:last-child {
  border-bottom: 1px solid #EEE;
}

.form_list_ttl {
  width: 35rem;
}

.form_list_content {
  width: calc(100% - 35rem - 2rem);
}

.form_list.required .form_list_ttl::after {
  content: "必須";
  color: #FFF;
  background-color: #F18254;
  border-radius: 0.5rem;
  font-size: 1.2rem;
  line-height: 1;
  margin-left: 1rem;
  padding: 0.3rem 0.6rem 0.4rem;
}

.form_input {
  border: 1px solid #999;
  border-radius: 1rem;
  padding: 1.5rem;
  width: 100%;
  resize: vertical;
}

.form_input::placeholder {
  color: #999;
}

.form_agree {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.submit_btn p {
  display: block;
    color: #FFF;
    border-radius: 5.2rem;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.3;
    width: fit-content;
    position: relative;
    background: #54C3F1;
}

.submit_btn p::before {
      content: "";
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    background-color: #FFF;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
}
.submit_btn p::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 2.8rem;
    transform: translateY(-50%);
    background: no-repeat center / contain;
    width: 1.2rem;
    height: 0.9rem;
    background-image: url(../img/common/icon_btn_arrow_primary.svg);
}

.submit_btn p:hover {
  opacity: .7;
}

.submit_btn input {
  background-color: transparent;
  color: #fff;
}

.submit_btn input:hover {
  background-color: transparent;
}

/* -------
  contents
------- */

/* ----------
  contents (index)
---------- */

/* .heading (common index) */

.index .heading_ttl_jp {
  font-weight: 400;
}

/* .fv (common index) */

.index .fv_width {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: column;
  position: relative;
}

.fv_block .text_area {
  position: absolute;
  left: 5%;
  top: 25%;
  z-index: 10;
}

.fv_block .text_area p {
  display: block;
  font-size: clamp(2.5rem,3.8vw,6.2rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.08em;
}

.fv_block .text_area .sp_only {
  display: none !important;
}

.fv_block .text_area .color-primary {
  padding: 0 1.5rem;
  line-height: 1;
  position: relative;
}

.fv_block .text_area .color-primary::before {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  width: 95%;
  height: 90%;
  background-color: #54C3F1;
  transform: translate(-50%, -50%);
  z-index: -1;
}

@media screen and (max-width:1024px) {
  .fv_block .text_area {
    top: 18%;
  }


}
@media screen and (max-width:768px) {
  .fv_block .text_area .sp_only {
    display: block !important;
  }

  .fv_block .text_area p {
    font-size: clamp(2.1rem,5vw,3.5rem);
  }
}
@media screen and (max-width:520px) {
  .fv_block .text_area  {
    top: 14%;
  }
}



.index .fv_slider {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.index .fv_slider::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(69, 69, 69, 0.4);
  z-index: 2;
}

.index .fv_slider .swiper-wrapper {
  transition-timing-function: linear;
}

.index .fv_menu {
  margin-top: -11.3rem;
}

/* .intro (common index) */

.index .intro_block {
  background: linear-gradient(180deg, #FFF 0%, #ECF8FD 100%);
  padding: 16rem 0 12rem;
}

.index .intro_width {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.5rem;
}

.index .intro_width .left {
  width: 58.5rem;
}

.index .intro_width .right {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 3.6rem;
  width: calc(100% - 58.5rem);
  position: relative;
  z-index: 2;
}

.index .intro_ttl {
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 1.66;
  margin-bottom: 4rem;
}

.index .intro_txt {
  font-size: 1.6rem;
  line-height: 2.2;
}

.index .intro_txt:not(:last-child) {
  margin-bottom: 2em;
}

.index .intro_img_sub {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  gap: 3.6rem;
  width: 100%;
}

.index .intro_img_01 {
  width: 100%;
}

.index .intro_img_01 .img {
  border-radius: 7rem;
  border-bottom-left-radius: 0;
  width: 61.5rem;
}

.index .intro_img_02 .img {
  border-radius: 5rem;
  border-bottom-right-radius: 0;
  margin-top: 6.5rem;
  width: 21.9rem;
}

.index .intro_img_03 .img {
  border-radius: 5rem;
  border-bottom-left-radius: 0;
  width: 32.8rem;
}

/* .reason (common index) */

.index .reason_block {
  background-color: #54C3F1;
  position: relative;
}

.index .reason_block::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background: url(../../assets/img/index/reason_wrap_bg.webp) no-repeat bottom right/contain;
  width: 63.6rem;
  height: 77.9rem;
}

.index .reason_wrap {
  padding-bottom: 11rem;
}

.index .reason_ttl {
  position: relative;
  z-index: 1;
}

.index .reason_ttl::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  background-color: #ECF8FD;
  width: calc(50vw - 50%);
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.index .reason_ttl::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ECF8FD;
  border-bottom-right-radius: 10rem;
  width: 50rem;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.index .reason_ttl_inner {
  padding-bottom: 3rem;
}

.index .reason_box {
  margin-top: 6.5rem;
  position: relative;
  z-index: 10;
}

.index .reason_list {
  gap: 2rem;
}

.index .reason_list_txt {
  color: #FFF;
}

.index .reason_list_txt::before {
  content: none;
}

.index .reason_list_txt::after {
  content: none;
}

.index .reason_txt {
  color: #FFF;
  font-size: 1.6rem;
  line-height: 2.2;
}

.index .reason_btnarea {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 6rem;
}

/* .visual (common index) */

.index .visual_width {
  min-height: 20rem;
  position: relative;
}

.index .visual_wrap_img .img {
  border-radius: 5rem;
}

.index .visual_wrap_img .img_01 {
  right: 26.9rem;
  bottom: -6.6rem;
  z-index: 2;
}

.index .visual_wrap_img .img_01 .img {
  width: 37.9rem;
  height: 23.5rem;
  border-bottom-right-radius: 0;
}

.index .visual_wrap_img .img_02 {
  right: 0;
  top: -15.4rem;
}

.index .visual_wrap_img .img_02 .img {
  width: 37.9rem;
  height: 23.5rem;
  border-top-right-radius: 0;
}

.index .visual_wrap_illust {
  mix-blend-mode: multiply;
}

.index .visual_wrap_illust .img_01 {
  left: 0;
  bottom: -8rem;
}

.index .visual_wrap_illust .img_01 .img {
  width: 18.9rem;
  height: 26.3rem;
}

.index .visual_wrap_illust .img_02 {
  left: 15rem;
  bottom: -5rem;
}

.index .visual_wrap_illust .img_02 .img {
  width: 22.3rem;
  height: 12.7rem;
}

.index .visual_wrap_illust .img_03 {
  right: 12.8rem;
  bottom: -8rem;
}

.index .visual_wrap_illust .img_03 .img {
  width: 11.2rem;
  height: 11.2rem;
}

.index .visual_wrap_illust .img_04 {
  right: 4.3rem;
  bottom: -8rem;
}

.index .visual_wrap_illust .img_04 .img {
  width: 8.5rem;
  height: 13.9rem;
}

.index .visual_wrap_item {
  position: absolute;
  display: block;
}

/* .company (common index) */

.index .company_width {
  padding: 10.5rem 0 25rem;
}

.index .company_width::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-color: #E5F1FF;
  border-top-left-radius: 10rem;
  width: calc(100% - 2rem);
  height: 100%;
  z-index: -1;
}

.index .company_width::after {
  content: "";
  position: absolute;
  top: 0;
  right: calc(50% - 50vw);
  background-color: #E5F1FF;
  width: calc(50vw - 50%);
  height: 100%;
}

.index .company_btnarea {
  margin: 0 auto;
  max-width: 104rem;
}

/* .works (common index) */

.index .works_block {
  margin-top: -10.5rem;
  overflow: hidden;
}

.index .works_width {
  padding-top: 10rem;
  padding-bottom: 45rem;
}

.index .works_width::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #FFF3EE;
  border-top-right-radius: 10rem;
  width: calc(100% - 2rem);
  height: 100%;
}

.index .works_width::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  background-color: #FFF3EE;
  width: calc(50vw - 50%);
  height: 100%;
}

.index .works_slider {
  margin-top: 6.6rem;
  width: 100%;
  position: relative;
}

.index .works_slider_odd {
  top: 10rem;
}

.index .works_slider_img {
  padding: 0 1.5rem;
  width: 45rem;
}

.index .works_slider_img .img {
  border-radius: 10rem;
}

.index .works_slider .swiper-wrapper {
  transition-timing-function: linear;
}

.index .works_btn {
  position: absolute;
  left: 50%;
  bottom: 20rem;
  transform: translateX(-50%);
}

.instagram_btn {
  text-align: center;
  position: absolute;
  left: 50%;
  bottom: 8rem;
  width: 100%;
  transform: translateX(-50%);
}

.instagram_btn p {
  position: relative;
  display: inline-block;
  padding: 0 2.5rem;
}
.instagram_btn p::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "／";
  transform: rotate(90deg);
}
.instagram_btn p::after {
  position: absolute;
  right: 0;
  top: 0;
  content: "／";
}


.instagram_btn_link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border-radius: 99px;
}

.instagram_btn_inner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-radius: 99px;
  padding: 9px 20px;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 700;
}

/* .news (common index) */

.index .news_block {
  padding: 10.3rem 0 9.5rem;
}

.index .news_width {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.index .news_width .left {
  width: calc(100% - 86rem);
}

.index .news_width .right {
  width: 86rem;
}

.index .news_btnarea {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: 4rem;
}

.index .news_list {
  gap: 1.4rem;
}

.index .news_list_day {
  font-size: 1.4rem;
}

.index .news_list_category {
  font-size: 1.4rem;
  margin-left: 0;
}

.index .news_list_ttl {
  font-size: 1.6rem;
  margin: 1em 0 1em 1em;
}

/* ----------
  category_index (/odanmaku/index.html)
  category_index (/pipe/index.html)
---------- */

/* .fv */

.category_index .fv_width {
  position: relative;
}

.category_index .fv_width::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../../assets/img/common/bg_wave_white.svg) no-repeat center/cover;
  width: 100%;
  height: 4.4rem;
  z-index: 1;
}

.category_index .fv_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.category_index .fv_slider {
  order: 2;
  width: 50%;
  overflow: hidden;
}

.category_index .fv_slider .swiper-wrapper {
  transition-timing-function: linear;
}

.category_index .fv_slider_img {
  display: flex;
  align-items: center;
  height: 72.3rem;
}

.category_index .fv_slider_img .img {
  object-fit: cover;
  height: 100%;
}

.category_index .fv_content {
  order: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 5rem;
  color: #FFF;
  padding: 0 2rem 0 6rem;
  width: 50%;
  z-index: 5;
  position: relative;
}

.category_index .fv_ttl_main {
  font-size: clamp(2.8rem, 3vw, 5rem);
  font-weight: 600;
  margin-bottom: 2.2rem;
}

.category_index .fv_ttl_sub {
  color: #454545;
  font-size: clamp(1.4rem, 1.4vw, 2rem);
  font-weight: 500;
}

.category_index .fv_point {
  width: 100%;
}

.category_index .fv_point_list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 3rem;
}

.category_index .fv_point_menu {
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1.3;
  text-align: center;
  text-shadow: 0 1px 0 #454545;
  width: 14rem;
  height: 14rem;
  aspect-ratio: 1/1;
  position: relative;
}

.category_index .fv_point_menu::before {
  content: "";
  position: absolute;
  top: -1.4rem;
  right: -1.4rem;
  background: url(../../assets/img/common/icon_fv_hirameki.svg) no-repeat center/contain;
  width: 4rem;
  height: 4rem;
}

.category_index .fv_point_menu_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
}

.category_index .fv_point_bg::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.2;
}

.category_index .fv_point_bg_deadline::after {
  background: url(../../assets/img/common/icon_fv_deadline.svg) no-repeat center/contain;
  width: 11rem;
  height: 11rem;
}

.category_index .fv_point_bg_design::after {
  background: url(../../assets/img/common/icon_fv_design.svg) no-repeat center/contain;
  width: 9rem;
  height: 9rem;
}

.category_index .fv_point_bg_set::after {
  background: url(../../assets/img/common/icon_fv_set.svg) no-repeat center/contain;
  width: 10rem;
  height: 10rem;
}

.category_index .fv_point_bg_order::after {
  background: url(../../assets/img/common/icon_fv_order.svg) no-repeat center/contain;
  width: 9rem;
  height: 9rem;
}

.category_index .fv_point_bg_purchase::after {
  background: url(../../assets/img/common/icon_fv_purchase.svg) no-repeat center/contain;
  width: 9rem;
  height: 9rem;
}

.category_index .fv_point_bg_delivery::after {
  background: url(../../assets/img/common/icon_fv_delivery.svg) no-repeat center/contain;
  width: 9rem;
  height: 9rem;
}

.category_index .fv_point_lg {
  font-size: 2.2rem;
  font-weight: 600;
}

.category_index .fv_btn {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 2rem;
}

.category_index .works_block {
  overflow: hidden;
}

.category_index .works_slider {
  margin-bottom: 8rem;
  position: relative;
  height: auto;
}

.category_index .works_slider .works_slider_img {
  height: auto;
}

.category_index .works_slider_img .img {
  border-radius: 10rem;
  display: block;
  height: 100%;
  object-fit: cover;
}

.category_index .works_slider .swiper-button-prev {
  left: -3rem;
  width: 2.4rem;
  height: 2.4rem;
  border-right: 0.5rem solid #F18254;
  border-bottom: 0.5rem solid #F18254;
  transform: rotate(135deg);
}

.category_index .works_slider .swiper-button-next {
  right: -3rem;
  width: 2.4rem;
  height: 2.4rem;
  border-right: 0.5rem solid #F18254;
  border-bottom: 0.5rem solid #F18254;
  transform: rotate(-45deg);
}

.category_index .works_slider .swiper-navigation-icon {
  display: none;
}

.category_index .flow_step {
  margin: 0 auto 8rem;
}

.category_index .flow_step_list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 5rem;
}

.category_index .flow_step_menu {
  text-align: center;
}

.category_index .flow_step_img {
  border-radius: 50%;
  margin: 0 auto;
  max-width: 20rem;
  max-height: 20rem;
  position: relative;
}

.category_index .flow_step_img .img {
  border-radius: 50%;
  aspect-ratio: 1/1;
}

.category_index .flow_step .flow_step_menu:not(:last-child) .flow_step_img::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -3.4rem;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.2rem 0 1.2rem 2rem;
  border-color: transparent transparent transparent #F18254;
}

.category_index .flow_step_txt {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 500;
  margin-top: 1rem;
}

.category_index .support_question {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  color: #808080;
  margin-bottom: 2rem;
  position: relative;
}

.category_index .support_question_fukidashi {
  display: inline-block;
  background-color: #FFF;
  border-radius: 5rem;
  box-shadow: 0 0.4rem 1.5rem rgba(0, 0, 0, 0.15);
  font-size: 1.8rem;
  font-weight: 700;
  padding: 1rem 3rem;
  position: relative;
}

.category_index .support_question_fukidashi::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 3rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1rem 0.6rem 0 0.6rem;
  border-color: #FFF transparent transparent transparent;
}

.category_index .support_question_01 {
  margin-left: 10rem;
}

.category_index .support_question_02 {
  margin-right: 10rem;
}

.category_index .support_question_03 {
  margin-left: 15rem;
}

.category_index .needs_list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 3rem;
  margin: 0 auto 4rem;
  max-width: 95rem;
}

.category_index .needs_list_menu {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  border: 0.2rem solid #F18254;
  line-height: 1.4;
  width: 100%;
}

.category_index .needs_list_ttl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #FFF;
  background-color: #F18254;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 2rem;
  width: 45%;
  position: relative;
}

.category_index .needs_list_ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1rem 0 1rem 1rem;
  border-color: transparent transparent transparent #F18254;
}

.category_index .needs_list_txt {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 2rem 2rem 2rem 3rem;
  width: 55%;
}

.odanmaku .fv_bg {
  background-color: #FFF3EE;
}

.odanmaku .fv_ttl_main {
  color: #54C3F1;
}

.odanmaku .fv_point_menu {
  background-color: #54C3F1;
}

.pipe .fv_bg {
  background-color: #ECF8FD;
}

.pipe .fv_ttl_main {
  color: #F18254;
}

.pipe .fv_point_menu {
  background-color: #F18254;
}

/* ----------
  contents (/odanmaku/配下)
---------- */

/* . */

/* contents (fv) */

.contents .fv {
  color: #FFF;
  background-color: #ECF8FD;
  padding: 6rem 0;
  position: relative;
}

.contents .fv::after {
  content: "";
  position: absolute;
  bottom: -4.4rem;
  left: 0;
  transform: rotate(180deg) scale(-1, 1);
  background: url(../../assets/img/common/bg_wave.svg) no-repeat center/cover;
  width: 100%;
  height: 4.4rem;
}

.contents .fv .heading_ttl_en {
  margin-bottom: 1rem;
  color: #54C3F1;
}

.contents .fv .heading_ttl_jp {
  color: #54C3F1;
  font-weight: 400;
}

.contents.odanmaku .fv {
  background-color: #ECF8FD;
}

.contents.odanmaku .fv::after {
  background: url(../../assets/img/common/bg_wave.svg) no-repeat center/cover;
}

.contents.odanmaku .fv .heading_ttl_en {
  color: #54C3F1;
}

.contents.odanmaku .fv .heading_ttl_jp {
  color: #54C3F1;
}

.contents.pipe .fv {
  background-color: #FFF3EE;
}

.contents.pipe .fv::after {
  background: url(../../assets/img/common/bg_wave_secondary.svg) no-repeat center/cover;
}

.contents.pipe .fv .heading_ttl_en {
  color: #F18254;
}

.contents.pipe .fv .heading_ttl_jp {
  color: #F18254;
}

/* contents (difference) */

.contents .difference_diff2 {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 4rem;
}

.contents .difference_diff2_box {
  border: 0.4rem solid #808080;
  border-radius: 5rem;
  width: calc((100% - 4rem) / 2);
}

.contents .difference_diff2_box.primary {
  border-color: #54C3F1;
}

.contents .difference_diff2_ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.4rem;
  background-color: #F6F6F6;
  border-top-right-radius: 4.4rem;
  border-top-left-radius: 4.4rem;
  font-size: 2.2rem;
  font-weight: 600;
  padding: 2rem 0;
  text-align: center;
}

.contents .difference_diff2_ttl_img {
  width: 4rem;
  height: 4rem;
}

.contents .difference_diff2_ttl.primary {
  color: #FFF;
  background-color: #54C3F1;
}

.contents .difference_diff2_desc {
  padding: 3rem;
  padding-bottom: 4rem;
}

.contents .difference_diff2_list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 2rem;
}

.contents .difference_diff2_menu {
  font-size: 1.8rem;
  font-weight: 500;
  padding-left: 4rem;
  position: relative;
}

.contents .difference_diff2_menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #808080;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
}

.contents .difference_diff2_menu::after {
  content: "";
  position: absolute;
  top: 1rem;
  left: 0.7rem;
  background: url(../../assets/img/odanmaku/difference/check.svg) no-repeat center/contain;
  width: 1.6rem;
  height: 1.1rem;
  z-index: 2;
}

.contents .difference_diff2_menu.primary::before {
  background-color: #54C3F1;
}

.contents .difference_important {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 1em;
}

.contents .difference_important .lg {
  font-size: 3.2rem;
}

/* contents (product) */

.contents .product_material {
  margin: 0 auto 4rem;
  max-width: 60rem;
}

.contents .product_price {
  font-size: 1.6rem;
  width: 100%;
}

.contents .product_price .tr {
  display: flex;
  border-bottom: 1px dashed #54C3F1;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}

.contents .product_price_name {
  width: 18%;
}

.contents .product_price_feature {
  width: 40%;
}

.contents .product_price_quantity {
  width: 14%;
}

.contents .product_price_total {
  width: 14%;
}

.contents .product_price_unit {
  text-align: right;
  width: 14%;
}

/* contents (fabric) */

.contents .fabric_feature_list:not(:last-child) {
  margin-bottom: 2em;
}

.contents .fabric_feature_ttl {
  font-size: 1.8rem;
  background-color: #54C3F1;
  border-radius: 0 3rem 3rem 0;
  color: #FFF;
  display: inline-block;
  margin-left: 2.8rem;
  margin-bottom: 2rem;
  padding: 0.6rem 4rem;
  position: relative;
}

.contents .fabric_feature_ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #ECF8FD;
  border: 0.3rem solid #54C3F1;
  border-radius: 50%;
  margin-left: -2.8rem;
  width: 5rem;
  height: 5rem;
}

.contents .fabric_feature_ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.8rem;
  transform: translateY(-50%);
  background: url(../../assets/img/odanmaku/fabric/check.svg) no-repeat center/contain;
  margin-left: -3.6rem;
  width: 2.8rem;
  height: 1.7rem;
}

.contents .fabric_feature_txt {
  font-size: 1.6rem;
}

/* contents (sample) */

.contents .sample_font {
  margin: 0 auto;
  max-width: 69.9rem;
}

/* contents (store) */

.store_pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 10rem;
}

.store_pager_item .dots {
  color: #EEE;
  font-weight: 900;
}

.store_pager_item {
  /*
  position: relative;

  &:nth-child(3):nth-last-child(n+4) {
    &::before {
      @include position-absolute(50%, null, null, -3.4rem, translateY(-50%));
      content: "･･･";
      color: $color-border;
      font-weight: 900;
      z-index: -1;
    }

    @include breakpoint(sp) {
      &::before {
        left: -2.2rem;
        font-size: 1.2rem;
      }
    }
  }

  &:nth-last-child(2):nth-child(n+3) {
    &::before {
      @include position-absolute(50%, null, null, -3.4rem, translateY(-50%));
      content: "･･･";
      color: $color-border;
      font-weight: 900;
      z-index: -1;
    }

    @include breakpoint(sp) {
      &::before {
        left: -2.2rem;
        font-size: 1.2rem;
      }
    }
  }
  */
}

.store_pager_link {
  display: block;
  color: #54C3F1;
  border: 2px solid #54C3F1;
  background-color: #ECF8FD;
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  padding: 0.8rem 1rem;
}

.store_pager_link:hover {
  background-color: #54C3F1;
  color: #FFF;
}

.store_pager_link.active {
  background-color: #54C3F1;
  color: #FFF;
  cursor: unset;
}

.store_pager_arrow {
  background-color: transparent;
  border: none;
}

.store_pager_arrow:hover {
  background-color: transparent;
  color: #54C3F1;
}

.store_pager_prev:hover {
  color: #ECF8FD;
}

.store_pager_prev .prev {
  font-size: 2rem;
  font-style: normal;
}

.store_pager_next:hover {
  color: #ECF8FD;
}

.store_pager_next .next {
  font-size: 2rem;
  font-style: normal;
}

.store_slider {
  position: relative;
  margin-bottom: 8rem;
}

.store_slider_width {
  padding: 0 4rem;
  max-width: 128rem;
  overflow: hidden;
}

.store_slider_img .img {
  border-radius: 10rem;
  margin-bottom: 1rem;
}

.store_slider .swiper-button-prev {
  left: -2.8rem;
  width: 2.4rem;
  height: 2.4rem;
  border-right: 0.5rem solid #CCC;
  border-bottom: 0.5rem solid #CCC;
  transform: rotate(135deg);
}

.store_slider .swiper-button-next {
  right: -2.8rem;
  width: 2.4rem;
  height: 2.4rem;
  border-right: 0.5rem solid #CCC;
  border-bottom: 0.5rem solid #CCC;
  transform: rotate(-45deg);
}

.store_slider .swiper-navigation-icon {
  display: none;
}

.store .item_wrap {
  background-color: #ECF8FD;
  border-radius: 7rem;
  padding: 8rem 5rem;
}

.store .item_list {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 4rem;
}

.store .item_list_menu {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: column;
  gap: 2rem;
  background-color: #FFF;
  border-radius: 3rem;
  padding: 3.5rem 2rem;
  width: calc((100% - 8rem) / 3);
}

.store .item_list_img {
  position: relative;
}

.store .item_list_img .img {
  margin: 0 auto;
  width: auto;
  height: 20rem;
}

.store .item_list_hot {
  position: absolute;
  top: 1rem;
  left: -3rem;
  color: #FFF;
  background-color: #F00;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 0.8rem 1.2rem;
  z-index: 10;
}

.store .item_list_hot::before {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1rem 0 0 1rem;
  border-color: #808080 transparent transparent transparent;
}

.store .item_list_name {
  font-weight: 600;
}

.store .item_list_price {
  font-weight: 600;
}

.store .item_list_num {
  font-size: 2.4rem;
}

.store .item_list_yen {
  font-size: 1.6rem;
}

.store .item_list_btn {
  margin: 2rem auto 0;
  padding: 1rem 3.2rem;
}

.store .detail .heading_3 {
  font-size: 2rem;
}

.store .detail .heading_3::before {
  border-radius: 0.3rem;
  width: 1.4rem;
  height: 1.4rem;
}

.store .detail_wrap {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 6rem;
}

.store .detail_wrap:not(:last-child) {
  margin-bottom: 10rem;
}

.store .detail_slider {
  width: calc((100% - 6rem) / 2);
}

.store .detail_slider_main {
  margin-bottom: 0.5rem;
  position: relative;
  overflow: hidden;
}

.store .detail_slider_thumbnail {
  position: relative;
  overflow: hidden;
}

.store .detail_slider .swiper-button-prev {
  left: 3%;
  width: 2.4rem;
  height: 2.4rem;
  border-right: 0.5rem solid #FFF;
  border-bottom: 0.5rem solid #FFF;
  transform: rotate(135deg);
}

.store .detail_slider .swiper-button-next {
  right: 3%;
  width: 2.4rem;
  height: 2.4rem;
  border-right: 0.5rem solid #FFF;
  border-bottom: 0.5rem solid #FFF;
  transform: rotate(-45deg);
}

.store .detail_slider .swiper-navigation-icon {
  display: none;
}

.store .detail_box {
  width: calc((100% - 6rem) / 2);
}

.store .detail_item_content {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: column;
  gap: 2rem;
}

.store .detail_item_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.store .detail_item_list.sum {
  border-top: 2px solid #454545;
  padding-top: 0.4rem;
}

.store .detail_item_list.sum .detail_item_txt {
  font-weight: 500;
}

.store .detail_item_list.sum .detail_item_txt .price {
  font-size: 3.6rem;
}

.store .detail_item_txt .price {
  font-size: 3rem;
}

.store .detail_item_input {
  border: 2px solid #808080;
  border-radius: 1rem;
  margin-right: 0.8rem;
  padding: 0.5rem 1rem;
  text-align: center;
  max-width: 8rem;
}

.store .detail_order {
  border: 1px solid #54C3F1;
  border-radius: 3rem;
  margin-top: 5rem;
  padding: 3rem 2rem;
}

.store .detail_order_list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 1rem;
  margin: 2rem 0;
}

.store .detail_order_list_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  width: 50%;
}

.store .detail_order_list_icon {
  font-family: "Roboto", sans-serif;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
  position: relative;
}

.store .detail_order_list_tel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}

.store .detail_order_list_tel_img {
  width: 2.6rem;
  height: 2.6rem;
}

.store .detail_order_list_fax {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.store .detail_order_list_fax_img {
  width: 2.7rem;
  height: 2.6rem;
}

.store .detail_order_list_sm {
  font-size: 1.5rem;
  font-weight: 500;
}

.store .detail_order_list .btn_base {
  justify-content: flex-start;
  margin-top: 1rem;
}

.store .detail_description {
  width: calc((100% - 6rem) / 2);
}

.store .detail_notes {
  width: calc((100% - 6rem) / 2);
}

.store .detail_feature {
  width: calc((100% - 6rem) / 2);
}

.store .detail_feature_table {
  border-collapse: collapse;
  width: 100%;
}

.store .detail_feature_table .th,
.store .detail_feature_table .td {
  border: 1px solid #808080;
  padding: 1rem;
  text-align: center;
}

.store .detail_feature_table .th {
  background-color: #ECF8FD;
}

.store .detail_about {
  width: 100%;
}

.store .detail_about_table {
  border-collapse: collapse;
  width: 100%;
}

.store .detail_about_table .th,
.store .detail_about_table .td {
  padding: 2rem 1rem;
  text-align: left;
  vertical-align: middle;
}

.store .detail_about_table .th {
  border-bottom: 0.3rem solid #54C3F1;
  font-size: 1.6rem;
  width: 20%;
}

.store .detail_about_table .td {
  padding-left: 2rem;
  width: 80%;
}

/* contents (works) */

.contents .works .heading_2 {
  margin-top: 1em;
  padding-left: 0;
}

.contents .works .heading_3 {
  margin-top: 1em;
}

.contents .works .heading_4 {
  margin-top: 1em;
}

.contents .works_block {
  overflow: hidden;
}

.contents .works_slider {
  margin-bottom: 8rem;
  position: relative;
}
.contents .works_slider .works_slider_img {
  height: auto;
}

.contents .works_slider_img .img {
  display: block;
  height: 100%;
  border-radius: 10rem;
  object-fit: cover;
}

.contents .works_slider .swiper-button-prev {
  left: -3rem;
  top: 57%;
  width: 2.4rem;
  height: 2.4rem;
  border-right: 0.5rem solid #CCC;
  border-bottom: 0.5rem solid #CCC;
  transform: rotate(135deg);
}

.contents .works_slider .swiper-button-next {
  right: -3rem;
  top: 57%;
  width: 2.4rem;
  height: 2.4rem;
  border-right: 0.5rem solid #CCC;
  border-bottom: 0.5rem solid #CCC;
  transform: rotate(-45deg);
}

.contents .works_slider .swiper-navigation-icon {
  display: none;
}

.contents .works_list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: column;
  gap: 1.4rem;
}

.contents .works_list_link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid #EEE;
  padding-bottom: 1.4rem;
}

.contents .works_list_link:hover .news_list_ttl {
  color: #54C3F1;
}

.contents .works_list_day {
  font-style: normal;
  min-width: 10rem;
}

.contents .works_list_category {
  border: 0.2rem solid #EEE;
  border-radius: 2.8rem;
  text-align: center;
  margin-left: 0.5rem;
  padding: 0 2rem;
  min-width: 13rem;
}

.contents .works_list_ttl {
  font-size: 1.8rem;
  line-height: 1.4;
  margin: 1em 0;
  transition: color 0.3s;
  width: 100%;
}

.contents .works_list_ttl.heading_2 {
  font-size: 2.4rem;
  line-height: 1.6;
  margin-bottom: 4rem;
}

.contents .works_list_txt {
  font-weight: 500;
}

.contents .works_column_img {
  width: 30rem;
  overflow: hidden;
  aspect-ratio: 3/2;
}

.contents .works_column_txt {
  width: calc(100% - 30rem - 2rem);
}

.contents .works_feature {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.contents .works_feature:not(:last-child) {
  margin-bottom: 1em;
}

.contents .works_feature_ttl {
  font-weight: 400;
}

.contents .works_pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 10rem;
}

.contents .works_pager_item .dots {
  color: #EEE;
  font-weight: 900;
}

.contents .works_pager_item {
  /*
  position: relative;

  &:nth-child(3):nth-last-child(n+4) {
    &::before {
      @include position-absolute(50%, null, null, -3.4rem, translateY(-50%));
      content: "･･･";
      color: $color-border;
      font-weight: 900;
      z-index: -1;
    }

    @include breakpoint(sp) {
      &::before {
        left: -2.2rem;
        font-size: 1.2rem;
      }
    }
  }

  &:nth-last-child(2):nth-child(n+3) {
    &::before {
      @include position-absolute(50%, null, null, -3.4rem, translateY(-50%));
      content: "･･･";
      color: $color-border;
      font-weight: 900;
      z-index: -1;
    }

    @include breakpoint(sp) {
      &::before {
        left: -2.2rem;
        font-size: 1.2rem;
      }
    }
  }
  */
}

.contents .works_pager_link {
  display: block;
  color: #54C3F1;
  border: 2px solid #54C3F1;
  background-color: #ECF8FD;
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  padding: 0.8rem 1rem;
}

.contents .works_pager_link:hover {
  background-color: #54C3F1;
  color: #FFF;
}

.contents .works_pager_link.active {
  background-color: #54C3F1;
  color: #FFF;
  cursor: unset;
}

.contents .works_pager_arrow {
  background-color: transparent;
  border: none;
}

.contents .works_pager_arrow:hover {
  background-color: transparent;
  color: #54C3F1;
}

.contents .works_pager_prev:hover {
  color: #ECF8FD;
}

.contents .works_pager_prev .prev {
  font-size: 2rem;
  font-style: normal;
}

.contents .works_pager_next:hover {
  color: #ECF8FD;
}

.contents .works_pager_next .next {
  font-size: 2rem;
  font-style: normal;
}

.contents .works_btn {
  margin-top: 5rem;
}

.contents .works_btn_side {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

/* common (news) */




.news .heading_2 {
  margin-top: 1em;
  padding-left: 0;
}

.news .heading_3 {
  margin-top: 1em;
}

.news .heading_4 {
  margin-top: 1em;
}

.news_list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: column;
  gap: 1.4rem;
}

.news_list_link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid #EEE;
  padding-bottom: 1.4rem;
}

.news_list_link:hover .news_list_ttl {
  color: #54C3F1;
}

.news_list_day {
  font-style: normal;
  min-width: 10rem;
}

.news_list_category {
  border: 0.2rem solid #EEE;
  border-radius: 2.8rem;
  text-align: center;
  margin-left: 0.5rem;
  padding: 0 2rem;
  min-width: 13rem;
}

.news_list_ttl {
  font-size: 1.8rem;
  line-height: 1.4;
  margin: 1em 0;
  transition: color 0.3s;
  width: 100%;
}

.news_list_ttl.heading_2 {
  font-size: 2.4rem;
  line-height: 1.6;
  margin-bottom: 4rem;
}

.news_list_txt {
  font-weight: 500;
}

.news_column_txt {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}

.news_pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 10rem;
}

.news_pager_item .dots {
  color: #EEE;
  font-weight: 900;
}

.news_pager_item {
  /*
  position: relative;

  &:nth-child(3):nth-last-child(n+4) {
    &::before {
      @include position-absolute(50%, null, null, -3.4rem, translateY(-50%));
      content: "･･･";
      color: $color-border;
      font-weight: 900;
      z-index: -1;
    }

    @include breakpoint(sp) {
      &::before {
        left: -2.2rem;
        font-size: 1.2rem;
      }
    }
  }

  &:nth-last-child(2):nth-child(n+3) {
    &::before {
      @include position-absolute(50%, null, null, -3.4rem, translateY(-50%));
      content: "･･･";
      color: $color-border;
      font-weight: 900;
      z-index: -1;
    }

    @include breakpoint(sp) {
      &::before {
        left: -2.2rem;
        font-size: 1.2rem;
      }
    }
  }
  */
}

.news_pager_link {
  display: block;
  color: #54C3F1;
  border: 2px solid #54C3F1;
  background-color: #ECF8FD;
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  padding: 0.8rem 1rem;
}

.news_pager_link:hover {
  background-color: #54C3F1;
  color: #FFF;
}

.news_pager_link.active {
  background-color: #54C3F1;
  color: #FFF;
  cursor: unset;
}

.news_pager_arrow {
  background-color: transparent;
  border: none;
}

.news_pager_arrow:hover {
  background-color: transparent;
  color: #54C3F1;
}

.news_pager_prev:hover {
  color: #ECF8FD;
}

.news_pager_prev .prev {
  font-size: 2rem;
  font-style: normal;
}

.news_pager_next:hover {
  color: #ECF8FD;
}

.news_pager_next .next {
  font-size: 2rem;
  font-style: normal;
}

.news_btn {
  margin-top: 5rem;
}

.news_btn_side {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

/* common (contact) */

.contact_block {
  background-color: #ECF8FD;
  margin-top: 16rem;
  padding: 6rem 0;
  position: relative;
}

.contact_block::before {
  content: "";
  position: absolute;
  top: -4.4rem;
  left: 0;
  background: url(../../assets/img/common/bg_wave.svg) no-repeat center/cover;
  width: 100%;
  height: 4.4rem;
}

.contact_block::after {
  content: "";
  position: absolute;
  bottom: -4.4rem;
  left: 0;
  transform: rotate(180deg);
  background: url(../../assets/img/common/bg_wave.svg) no-repeat center/cover;
  width: 100%;
  height: 4.4rem;
}

.contact_head {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.contact_ttl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.5rem;
  font-weight: 600;
  width: 58rem;
}

.contact_ttl_jp {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.5;
}

.contact_ttl_lg {
  font-size: 3.2rem;
}

.contact_ttl .icon_light_img {
  width: 6.5rem;
  height: 6.5rem;
}

.contact_question {
  color: #808080;
  margin-right: 9.6rem;
  width: calc(100% - 58rem - 9.6rem);
  position: relative;
}

.contact_question_fukidashi {
  display: inline-block;
  background-color: #FFF;
  border-radius: 5rem;
  box-shadow: 0 0.4rem 1.5rem rgba(0, 0, 0, 0.15);
  font-size: 1.8rem;
  font-weight: 700;
  padding: 1rem 3rem;
  position: relative;
}

.contact_question_fukidashi::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 3rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1rem 0.6rem 0 0.6rem;
  border-color: #FFF transparent transparent transparent;
}

.contact_box {
  margin-top: 3rem;
}

.contact_list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 1rem;
}

.contact_list_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  width: 33.3333333333%;
}

.contact_list_menu:not(:last-child) {
  border-right: 1px solid #808080;
  padding-right: 2rem;
}

.contact_list_ttl {
  font-size: 1.8rem;
  font-weight: 600;
}

.contact_list_icon {
  font-family: "Roboto", sans-serif;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
  position: relative;
}

.contact_list_tel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}

.contact_list_tel_img {
  width: 2.6rem;
  height: 2.6rem;
}

.contact_list_fax {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.contact_list_fax_img {
  width: 2.7rem;
  height: 2.6rem;
}

.contact_list_sm {
  font-size: 1.5rem;
  font-weight: 500;
}

.contact_list .btn_base {
  justify-content: flex-start;
  margin-top: 1rem;
}

/* contents (contact) */

.contents .contact_info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.contents .contact_info:not(:last-child) {
  margin-bottom: 6rem;
}

.contents .contact_ttl {
  font-size: 2rem;
}

.contents .contact_ttl {
  justify-content: center;
  margin: 0 auto;
}

.contents .contact_num {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  font-size: 3.6rem;
  font-weight: 700;
  position: relative;
}

.contents .contact_tel_icon {
  display: block;
  width: 3.2rem;
  height: 3.2rem;
  background: url(../../assets/img/common/icon_tel.svg) no-repeat center/contain;
}

.contents .contact_fax_icon {
  display: block;
  width: 3.6rem;
  height: 3.4rem;
  background: url(../../assets/img/common/icon_fax.svg) no-repeat center/contain;
}

/* -------
  utility
------- */

/* utility (display) */

.sp {
  display: none;
}

.tablet {
  display: none;
}

.pc {
  display: none;
}

/* utility (spacing) */

.mb_0 {
  margin-bottom: 0 !important;
}

.mb_1rem {
  margin-bottom: 1rem !important;
}

.mb_2rem {
  margin-bottom: 2rem !important;
}

.mb_3rem {
  margin-bottom: 3rem !important;
}

.mb_5rem {
  margin-bottom: 5rem !important;
}

.mb_10rem {
  margin-bottom: 10rem !important;
}

.mt_0 {
  margin-top: 0 !important;
}

.mt_1rem {
  margin-top: 1rem !important;
}

.mt_2rem {
  margin-top: 2rem !important;
}

.mt_3rem {
  margin-top: 3rem !important;
}

.mt_5rem {
  margin-top: 5rem !important;
}

.mt_10rem {
  margin-top: 10rem !important;
}

.pb_0 {
  padding-bottom: 0 !important;
}

.pb_1rem {
  padding-bottom: 1rem !important;
}

.pb_2rem {
  padding-bottom: 2rem !important;
}

.pb_3rem {
  padding-bottom: 3rem !important;
}

.pb_5rem {
  padding-bottom: 5rem !important;
}

.pb_10rem {
  padding-bottom: 10rem !important;
}

.pt_0 {
  padding-top: 0 !important;
}

.pt_1rem {
  padding-top: 1rem !important;
}

.pt_2rem {
  padding-top: 2rem !important;
}

.pt_3rem {
  padding-top: 3rem !important;
}

.pt_5rem {
  padding-top: 5rem !important;
}

.pt_10rem {
  padding-top: 10rem !important;
}

/* -------
  footer
------- */

footer .footer {
  background-color: #FFF;
}

footer .footer_block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 12.6rem;
  padding-bottom: 3rem;
}

footer .footer_block .left {
  width: 30rem;
}

footer .footer_block .right {
  display: grid;
  gap: 2rem;
  margin-top: 0.8rem;
  padding-left: 10rem;
  width: calc(100% - 30rem);
}

footer .footer_logo {
  margin-bottom: 3rem;
  max-width: 25rem;
}

footer .footer_logo_img {
  max-width: 25rem;
}

footer .footer_info_link {
  margin-bottom: 2rem;
}

footer .footer_info_tel {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 1.2rem 0;
  padding-left: 2.7rem;
  position: relative;
}

footer .footer_info_tel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../../assets/img/common/icon_tel.svg) no-repeat center/contain;
  width: 1.9rem;
  height: 1.9rem;
}

footer .footer_category {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
}

footer .footer_category_box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

footer .footer_category_ttl {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
}

footer .footer_category_ttl.icon_nobori {
  justify-content: flex-start;
  gap: 1rem;
}

footer .footer_category_ttl.icon_nobori .icon_nobori_img {
  width: 1.1rem;
  height: 3.1rem;
}

footer .footer_category_ttl.icon_pipe {
  justify-content: flex-start;
  gap: 1rem;
}

footer .footer_category_ttl.icon_pipe .icon_pipe_img {
  width: 1.1rem;
  height: 2.8rem;
}

footer .footer_nav_menu {
  color: #808080;
  font-size: 1.3rem;
  font-weight: 600;
}

footer .footer_nav_menu:not(:last-child) {
  margin-bottom: 1rem;
}

footer .footer_content_link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.5rem 5.5rem;
  flex-wrap: wrap;
}

footer .footer_content_menu {
  font-size: 1.5rem;
  font-weight: 500;
}

footer .footer_btn {
  font-size: 1.5rem;
}

footer .footer_icon {
  display: inline-block;
}

footer .footer_icon_insta {
  width: 2.4rem;
  height: 2.4rem;
}

footer .footer_link {
  border-top: 1px solid #EEE;
  padding-top: 3.5rem;
}

footer .footer_link_list {
  text-align: center;
}

footer .footer_link_menu {
  display: inline-block;
  font-size: 1.3rem;
  line-height: 1.8;
  position: relative;
}

footer .footer_link_menu:not(:last-child) {
  margin-right: 2em;
}

footer .footer_link_menu:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1em;
  transform: translateY(-50%) rotate(30deg);
  background-color: #54C3F1;
  width: 1px;
  height: 1.3rem;
}

footer .footer_copy {
  padding: 4rem 0 6rem;
  text-align: center;
}

footer .footer_copy small {
  color: #808080;
  font-size: 1.2rem;
}

@media (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
  }

  a[href*="fax:"] {
    pointer-events: none;
  }
}

@media (min-width: 1024px) {
  html.js_hover_enabled header .header_dropdown_menu:hover .header_dropdown_child {
    top: 100%;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    max-height: none;
  }

  .contents .works_column {
    gap: 2rem;
    flex-wrap: unset;
  }

  .news_column {
    gap: 2rem;
    flex-wrap: unset;
  }

  .contact_head {
    height: 19rem;
  }

  .contact_question_01 {
    position: absolute;
    top: 0;
    right: 15rem;
  }

  .contact_question_02 {
    position: absolute;
    top: 6.5rem;
    right: 0;
  }

  .contact_question_03 {
    position: absolute;
    top: 6.5rem;
    right: 26rem;
  }

  .contact_question_04 {
    position: absolute;
    top: 13rem;
    right: 2.5rem;
  }

  .pc {
    display: block;
  }
}

@media (min-width: 1440px) {
  .bg_primary::before {
    width: calc(100% + 5rem);
  }

  .index .intro_block {
    margin-bottom: -7.5rem;
    padding-bottom: 0;
  }

  .index .intro_width .right {
    right: -8rem;
  }

  .index .company_width::before {
    width: calc(100% + 3.5rem);
  }

  .index .works_width::before {
    width: calc(100% + 3.5rem);
  }

  .category_index .works_block {
    overflow: unset;
  }

  .category_index .works_slider {
    position: unset;
    overflow: hidden;
  }

  .contents .works_block {
    overflow: unset;
  }

  .contents .works_slider {
    position: unset;
    overflow: hidden;
  }
}

@media (max-width: 1024px) {
  .inner {
    padding: 0 2rem;
  }

  .index .intro_block {
    margin-bottom: 0;
    padding: 6rem 0;
  }

  .index .intro_img_01 .img {
    width: 100%;
  }

  .index .reason_btnarea {
    margin-top: 3rem;
  }

  .category_index .fv_content {
    gap: 1.5rem;
    padding: 0 2rem;
  }

  .category_index .fv_ttl_main {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
  }


  .category_index .fv_point {
    max-width: 32rem;
  }

  .category_index .fv_point_list {
    gap: 1rem;
  }

  .category_index .fv_point_menu {
    font-size: 1.3rem;
    width: 33.3333333333%;
    height: 100%;
  }

  .category_index .fv_point_bg_deadline::after {
    width: 8rem;
    height: 8rem;
  }

  .category_index .fv_point_bg_design::after {
    width: 7rem;
    height: 7rem;
  }

  .category_index .fv_point_bg_set::after {
    width: 7.5rem;
    height: 7.5rem;
  }

  .category_index .fv_point_bg_order::after {
    width: 6.5rem;
    height: 6.5rem;
  }

  .category_index .fv_point_bg_purchase::after {
    width: 6.5rem;
    height: 6.5rem;
  }

  .category_index .fv_point_bg_delivery::after {
    width: 7rem;
    height: 7rem;
  }

  .category_index .works_slider {
    margin-bottom: 4rem;
  }

  .category_index .works_slider_img .img {
    border-radius: 6rem;
  }

  .store_slider {
    margin-bottom: 4rem;
  }

  .store_slider_img .img {
    border-radius: 6rem;
  }

  .store .detail_order_list_icon {
    font-size: 2.4rem;
  }

  .store .detail_order_list_sm {
    font-size: 1.3rem;
  }

  .contents .works_slider_img .img {
    border-radius: 6rem;
  }

  .contact_question {
    margin: 0 auto;
  }
}

@media (max-width: 1023px) {
  header .header_block {
    padding: 1.4rem 7rem 1.9rem 1.5rem;
  }

  header .header_logo_img {
    max-width: 20rem;
  }

  header .header_cart_link {
    display: block;
    padding: 0.4rem;
  }

  header .header_cart_img {
    display: block;
    margin: 0.3rem;
    width: 2.4rem;
    height: 2.4rem;
  }

  header .header_nav {
    justify-content: flex-start;
    flex-direction: column;
    gap: 5rem;
    position: fixed;
    left: 0;
    top: 0;
    padding: 0 3.8rem;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s;
    z-index: -1;
    overflow-y: hidden;
  }

  html.js_resizing header .header_nav {
    transition: none;
  }

  header .header_nav.js_open {
    background-color: #FFF;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 10;
  }

  header .header_nav_list {
    flex-direction: column;
    margin-top: 10rem;
  }

  header .header_nav_extra {
    flex-direction: column;
    gap: 2.5rem;
    order: 2;
  }

  header .header_nav_tel {
    flex-direction: column;
    gap: 0.5rem;
  }

  header .header_nav_order {
    justify-content: center;
    width: 100%;
  }

  header .header_menubtn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0.7rem;
    position: absolute;
    background-color: #54C3F1;
    border-bottom-left-radius: 2rem;
    top: 0;
    right: 0;
    width: 6rem;
    height: 6rem;
    cursor: pointer;
    z-index: 1000;
  }

  header .header_menubtn i {
    background-color: #FFF;
    display: block;
    right: 1.6rem;
    height: 2px;
    width: 2.6rem;
    transition: all 0.3s;
    position: absolute;
  }

  header .header_menubtn i:nth-child(1) {
    top: 2.3rem;
  }

  header .header_menubtn i:nth-child(2) {
    top: 50%;
  }

  header .header_menubtn i:nth-child(3) {
    top: 3.7rem;
  }

  header .header_menubtn.js_open i:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }

  header .header_menubtn.js_open i:nth-child(2) {
    opacity: 0;
  }

  header .header_menubtn.js_open i:nth-child(3) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }

  header .header_dropdown {
    position: fixed;
    bottom: 0;
    left: 0;
  }

  header .header_dropdown_list {
    order: 1;
  }

  header .header_dropdown_menu {
    font-size: 1.4rem;
    padding: 1.8rem 0 1rem;
    width: 100%;
  }

  header .header_dropdown_arrow::after {
    right: auto;
    left: 50%;
    top: 0.6rem;
    width: 0.7rem;
    height: 0.7rem;
    transition: all 0.3s;
    transform: translate(-50%, 0) rotate(45deg);
  }

  header .header_dropdown_arrow:hover::after {
    top: 0.6rem;
    left: 50%;
    transform: translate(-50%, 0) rotate(45deg);
  }

  header .header_dropdown_arrow.js_open::after {
    top: 0.6rem;
    left: 50%;
    transform: translate(-50%, 0) rotate(-135deg);
  }

  header .header_dropdown_child {
    top: auto;
    left: 0;
    right: 0;
    bottom: var(--dropdown-trigger-height);
    background-color: inherit;
    border-radius: unset;
    font-size: 1.5rem;
    padding: 3rem 5rem;
    min-width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1.2rem);
    pointer-events: none;
    position: fixed;
    z-index: -1;
    overflow-y: hidden;
  }

  header .header_dropdown_child.js_open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  header .header_dropdown_child_menu {
    width: 100%;
  }

  .section {
    margin-bottom: 8rem;
  }

  .heading_ttl_en {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .heading_ttl_jp {
    font-size: 2.3rem;
  }

  .heading_sub {
    margin-bottom: 8rem;
  }

  .heading_sub_h2 {
    font-size: 2.4rem;
  }

  .heading_sub_txt {
    font-size: 1.4rem;
  }

  .heading_2 {
    font-size: 2.34rem;
  }

  .heading_2.ta_center::after {
    width: 5rem;
    height: 0.4rem;
  }

  .heading_3 {
    font-size: 1.82rem;
  }

  .heading_3 {
    padding-left: 1.2em;
  }

  .heading_3::before {
    top: 0.4em;
    width: 1.6rem;
    height: 1.6rem;
  }

  .heading_4 {
    font-size: 1.625rem;
  }

  .entrance_menu {
    gap: 2rem;
    padding: 2rem 1.8rem;
  }

  .entrance_menu_ttl {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
  }

  .entrance_menu_txt {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }

  .reason_list_img .label {
    font-size: 1.1rem;
    padding: 0.2rem 0.4rem 0.2rem 0.8rem;
  }

  .reason_list_img .img {
    width: 6.8rem;
  }

  .reason_list_txt {
    font-size: 1.4rem;
  }

  .reason_list_txt::before {
    width: 1.8rem;
    height: 1.8rem;
  }

  .reason_list_txt::after {
    width: 1.8rem;
    height: 1.8rem;
  }

  .table_th {
    font-size: 1.4rem;
  }

  .table_td {
    font-size: 1.4rem;
  }

  .table_txt {
    font-size: 1.4rem;
  }

  .table_comparison_head_tr {
    font-size: 1.4rem;
  }

  .table_comparison_head_th {
    font-size: 1.4rem;
  }

  .table_comparison_body_tr {
    font-size: 1.4rem;
  }

  .table_comparison_body_td {
    font-size: 1.4rem;
  }

  .table_product {
    min-width: 100%;
  }

  .table_product .th {
    font-size: 1.4rem;
  }

  .table_product .td {
    font-size: 1.4rem;
  }

  .table_product .label_delivery {
    font-size: 0.91rem;
  }

  .txt_p {
    font-size: 1.4rem;
  }

  .txt_p.sm {
    font-size: 1.3rem;
  }

  .txt_signature {
    font-size: 1.6rem;
  }

  .txt_pop {
    margin-bottom: 0.5rem;
  }

  .txt_pop_left {
    width: 1.7rem;
    height: 0.2rem;
  }

  .txt_pop_right {
    width: 1.7rem;
    height: 0.2rem;
  }

  .notes {
    font-size: 1.2rem;
  }

  .list_disc_item {
    font-size: 1.4rem;
  }

  .list_kome_item {
    font-size: 1.2rem;
  }

  .list_kome.notes .list_kome_item {
    font-size: 1.2rem;
  }

  .list_num_item {
    font-size: 1.4rem;
  }

  .img_box {
    gap: 2rem;
  }

  .box_img_4 {
    gap: 1rem;
  }

  .box_img_4_item {
    width: calc((100% - 1rem) / 2);
  }

  .box_img_4 .img {
    border-radius: 2.5rem;
  }

  .column .parts:not(:last-child) {
    margin-bottom: 8rem;
  }

  .column_4 {
    gap: 1rem;
  }

  .step {
    gap: 8rem;
  }

  .step_box:not(:last-child)::after {
    border-width: 1.8rem 2rem 0 2rem;
    bottom: -5rem;
  }

  .step_ttl {
    font-size: 1.82rem;
  }

  .step_num {
    border-width: 0.2rem;
    font-size: 2rem;
    margin-right: 0.5rem;
    height: 3rem;
    width: 3rem;
  }

  .point {
    gap: 2.5rem;
  }

  .point_txt {
    font-size: 1.4rem;
  }

  .modal_box_inner::before {
    width: 3.2rem;
    height: 3.2rem;
    border-top-left-radius: 1.7rem;
  }

  .modal_box_inner::after {
    width: 2rem;
    height: 2rem;
    right: 0.5rem;
    bottom: 0.5rem;
  }

  .modal_box_txt {
    font-size: 1.4rem;
    padding: 1.4rem 0;
  }

  .modal_img {
    padding: 1.5rem;
  }

  .modal_close {
    font-size: 1.56rem;
  }

  .shop_price {
    font-size: 1.6rem;
  }

  .btn_base {
    font-size: 1.6rem;
  }

  .btn_base.arrow {
    padding-right: 5rem !important;
  }

  .btn_base.arrow::before {
    right: 1rem;
    width: 3rem;
    height: 3rem;
  }

  .btn_base.arrow::after {
    right: 2rem;
    width: 1rem;
    height: 0.8rem;
  }

  .btn_base.arrow_reverse::before {
    left: 1rem;
  }

  .btn_base.arrow_reverse::after {
    left: 2rem;
  }

  .btn_base.arrow_min::after {
    width: 0.7rem;
    height: 0.7rem;
  }

  .btn_base.cart::after {
    width: 2.6rem;
    height: 2.6rem;
  }

  .btn_circle {
    font-size: 1.6rem;
    margin: 1.8rem 0.9rem 0;
  }

  .btn_circle::before {
    width: 2.5rem;
    height: 2.5rem;
  }

  .btn_circle::after {
    right: 1.1rem;
    width: 0.6rem;
    height: 0.6rem;
  }

  .btn_white_menu {
    border-radius: 1.8rem;
  }

  .btn_white_menu::after {
    width: 4.4rem;
    height: 4.4rem;
  }

  .btn_white_link {
    gap: 1rem;
    font-size: 1.6rem;
    padding: 2.5rem 1.8rem;
  }

  .btn_white_link::before {
    width: 3.8rem;
    height: 3.8rem;
  }

  .btn_white_link::after {
    right: 1.4rem;
    bottom: 1.4rem;
    width: 1rem;
    height: 0.8rem;
  }

  .btn_white_en {
    font-size: 1.2rem;
  }

  .btn_white_jp {
    font-size: 2.3rem;
  }

  .btn_page_menu {
    font-size: 1.6rem;
  }

  .btn_page_link::after {
    width: 0.9rem;
    height: 0.9rem;
  }

  .btn_page2_list {
    gap: 2.5rem;
  }

  .btn_page2_menu {
    font-size: 1.3rem;
  }

  .btn_page2_menu {
    line-height: 1.4;
  }

  .btn_page2_menu::before {
    width: 1.9rem;
    height: 1.9rem;
  }

  .btn_page2_menu::after {
    top: 0.5rem;
    left: 0.6rem;
    width: 0.7rem;
    height: 0.7rem;
  }

  .index .intro_ttl {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }

  .index .intro_txt {
    font-size: 1.5rem;
  }

  .index .intro_txt:not(:last-child) {
    margin-bottom: 1.5em;
  }

  .index .reason_block::before {
    width: 21.3rem;
    height: 25.9rem;
  }

  .index .reason_ttl::after {
    width: 25rem;
  }

  .index .reason_box {
    margin-top: 3.2rem;
  }

  .index .reason_txt {
    font-size: 1.5rem;
  }

  .index .company_btnarea {
    max-width: 100%;
    padding-left: 2rem;
  }

  .index .works_width {
    padding-top: 2.5rem;
    padding-bottom: 35rem;
  }

  .index .news_btnarea {
    margin-top: 2rem;
    justify-content: center;
  }

  .index .news_list_day {
    font-size: 1.3rem;
  }

  .index .news_list_category {
    font-size: 1.3rem;
  }

  .index .news_list_ttl {
    font-size: 1.4rem;
    margin-left: 0;
  }

  .category_index .flow_step {
    margin-bottom: 4rem;
  }

  .category_index .flow_step_list {
    gap: 3rem;
  }

  .category_index .flow_step .flow_step_menu:not(:last-child) .flow_step_img::after {
    border-width: 1rem 0 1rem 1.6rem;
    right: -2.3rem;
  }

  .category_index .flow_step_txt {
    font-size: 1.4rem;
  }

  .category_index .support_question_02 {
    margin-right: 5rem;
  }

  .category_index .support_question_03 {
    margin-left: 7rem;
  }

  .category_index .needs_list {
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .category_index .needs_list_ttl {
    font-size: 1.4rem;
    padding: 1rem;
  }

  .category_index .needs_list_ttl::after {
    border-width: 0.8rem 0 0.8rem 0.8rem;
  }

  .category_index .needs_list_txt {
    font-size: 1.4rem;
    padding: 1rem 1rem 1rem 1.5rem;
    width: 50%;
  }

  .contents .difference_diff2_box {
    border-radius: 2.5rem;
  }

  .contents .difference_diff2_ttl {
    border-top-right-radius: 2rem;
    border-top-left-radius: 2rem;
    font-size: 1.8rem;
  }

  .contents .difference_diff2_desc {
    padding: 2rem;
  }

  .contents .difference_diff2_menu {
    font-size: 1.5rem;
  }

  .contents .difference_important {
    font-size: 1.8rem;
  }

  .contents .difference_important .lg {
    font-size: 2.4rem;
  }

  .contents .product_price {
    font-size: 1.4rem;
  }

  .contents .fabric_feature_ttl {
    font-size: 1.6rem;
    margin-left: 1.4rem;
    margin-bottom: 1.4rem;
    padding: 0.5rem 2rem 0.5rem 3.6rem;
  }

  .contents .fabric_feature_ttl::before {
    border-width: 0.2rem;
    margin-left: -1.4rem;
    width: 4.1rem;
    height: 4.1rem;
  }

  .contents .fabric_feature_ttl::after {
    margin-left: -2.2rem;
    width: 1.9rem;
    height: 1.4rem;
  }

  .contents .fabric_feature_txt {
    font-size: 1.4rem;
  }

  .store_pager {
    margin-top: 5rem;
  }

  .store .item_list_yen {
    font-size: 1.6rem;
  }

  .store .detail .heading_3 {
    font-size: 1.8rem;
  }

  .store .detail .heading_3::before {
    width: 1.2rem;
    height: 1.2rem;
  }

  .store .detail_wrap {
    gap: 3rem;
  }

  .store .detail_wrap:not(:last-child) {
    margin-bottom: 5rem;
  }

  .store .detail_item_content {
    font-size: 1.4rem;
  }

  .store .detail_item_list.sum .detail_item_txt .price {
    font-size: 2.2rem;
  }

  .store .detail_item_txt .price {
    font-size: 2rem;
  }

  .store .detail_item_input {
    padding: 0.2rem;
    max-width: 7rem;
  }

  .store .detail_order {
    padding: 2.5rem 2rem;
  }

  .store .detail_order_list {
    flex-direction: column;
    gap: 3rem;
  }

  .store .detail_order_list_menu {
    width: 100%;
  }

  .store .detail_feature_table .th,
  .store .detail_feature_table .td {
    font-size: 1.2rem;
    padding: 0.8rem;
  }

  .contents .works_list_link {
    gap: 0 1.2rem;
  }

  .contents .works_list_link {
    padding-bottom: 0;
  }

  .contents .works_list_day {
    font-size: 1.4rem;
    min-width: auto;
  }

  .contents .works_list_category {
    font-size: 1.4rem;
    padding: 0 1rem;
  }

  .contents .works_list_ttl {
    font-size: 1.6rem;
  }

  .contents .works_list_ttl.heading_2 {
    font-size: 2rem;
  }

  .contents .works_list_txt {
    font-size: 1.4rem;
  }

  .contents .works_pager {
    margin-top: 5rem;
  }

  .news_list_link {
    gap: 0 1.2rem;
  }

  .news_list_link {
    padding-bottom: 0;
  }

  .news_list_day {
    font-size: 1.4rem;
    min-width: auto;
  }

  .news_list_category {
    font-size: 1.4rem;
    padding: 0 1rem;
  }

  .news_list_ttl {
    font-size: 1.6rem;
  }

  .news_list_ttl.heading_2 {
    font-size: 2rem;
  }

  .news_list_txt {
    font-size: 1.4rem;
  }

  .news_pager {
    margin-top: 5rem;
  }

  .contact_head {
    flex-direction: column;
    gap: 2rem;
  }

  .contact_ttl {
    justify-content: center;
    margin: 0 auto 2rem;
    width: 100%;
  }

  .contact_question {
    width: 100%;
  }

  .contact_question_01 {
    margin-bottom: 2rem;
    margin-left: 3.2rem;
  }

  .contact_question_02 {
    margin-bottom: 2rem;
  }

  .contact_question_03 {
    float: right;
    margin-bottom: 2rem;
  }

  .contact_question_04 {
    margin-right: 3.2rem;
    float: right;
  }

  .contact_list {
    flex-direction: column;
    gap: 3rem;
  }

  .contact_list_menu {
    width: 100%;
  }

  .contact_list_menu:not(:last-child) {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid #808080;
    padding-bottom: 2rem;
  }

  .contact_list_ttl {
    font-size: 1.6rem;
  }

  .contact_list_icon {
    font-size: 3rem;
  }

  .contact_list_sm {
    font-size: 1.3rem;
  }

  .contents .contact_ttl {
    font-size: 1.3rem;
  }

  .contents .contact_num {
    gap: 0.4rem;
    font-size: 2.8rem;
  }

  footer .footer_block {
    flex-direction: column;
    padding-bottom: 1.5rem;
    gap: 4rem;
  }

  footer .footer_block .right {
    gap: 3rem;
    padding-left: 0;
    width: 100%;
  }

  footer .footer_logo_img {
    margin-bottom: 1.5rem;
    max-width: 20rem;
  }

  footer .footer_info_link {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  footer .footer_info_tel {
    font-size: 1.8rem;
    margin: 0.8rem 0;
    padding-left: 2rem;
  }

  footer .footer_category {
    flex-direction: column;
    gap: 2rem;
  }

  footer .footer_nav_list {
    width: 100%;
  }

  footer .footer_nav_menu:not(:last-child) {
    margin-bottom: 0.5rem;
  }

  footer .footer_btn {
    font-size: 1.2rem;
    margin: 0 auto;
  }

  footer .footer_copy {
    padding-bottom: 12rem;
  }
}

@media (max-width: 767px) {
  .breadcrumb {
    font-size: 1.2rem;
    margin: 4rem 0 7rem;
  }

  .heading_2::before {
    top: 0.45em;
    width: 2.2rem;
    height: 2.2rem;
  }

  .heading_2.ta_center {
    padding-bottom: 0.5em;
  }

  .heading_4::before {
    top: 0.6em;
    width: 0.8rem;
    height: 0.8rem;
  }

  .entrance_menu {
    flex-direction: column;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 3rem;
    box-shadow: 0 0.4rem 1.5rem rgba(0, 0, 0, 0.15);
    margin: 0 auto;
  }

  .entrance_menu_box {
    background: transparent;
    border-radius: unset;
    box-shadow: none;
    padding: 0;
    width: 100%;
  }

  .entrance_menu_box:not(:last-child) {
    border-bottom: 1px solid #EEE;
    padding-bottom: 2.3rem;
  }

  .reason_list {
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    column-gap: 2rem;
  }

  .reason_list_box {
    width: calc((100% - 2rem) / 2);
  }

  .reason_list_img {
    margin-bottom: 1rem;
  }

  .table_tr:last-child .table_th {
    border-bottom: none;
  }

  .table_th {
    display: block;
    border-right: none;
    border-bottom: none;
    padding: 1.5rem;
  }

  .table_th.w20per {
    width: 100%;
  }

  .table_td {
    display: block;
    padding: 1.5rem;
  }

  .table_td:not(:last-child) {
    border-right: none;
    border-bottom: 0.1rem solid #54C3F1;
  }

  .table_comparison {
    width: 150%;
  }

  .table_comparison_body_th {
    padding: 1.5rem 1rem;
  }

  .table_comparison_body_td {
    padding: 1.5rem 1rem;
  }

  .table_product .th {
    padding: 1rem;
  }

  .table_product .td {
    padding: 1rem;
  }

  .table_product .label_delivery {
    border-radius: 0.5rem;
    padding: 0.2rem 0.6rem;
  }

  .table_stripe .table_th {
    border: none;
    border-bottom: 0.1rem solid #54C3F1;
  }

  .txt_p.lg {
    font-size: 2rem;
  }

  .bg_primary {
    padding: 5rem 2rem;
  }

  .bg_primary::before {
    border-top-left-radius: 5rem;
  }

  .box_base {
    padding: 2rem;
  }

  .box_border {
    padding: 4rem 2.5rem;
  }

  .box_radius {
    border-radius: 1.7rem;
  }

  .box_sample {
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .box_sample_img {
    width: calc((100% - 2rem) / 2);
  }

  .column .parts {
    flex-direction: column;
    gap: 1.5rem;
  }

  .column_2 .box {
    width: 100%;
  }

  .column_3 {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .column_3 .parts {
    width: 100%;
  }

  .column_3 .parts:not(:last-child) {
    margin-bottom: 1.5rem !important;
  }

  .column_3 .box {
    width: 100%;
  }

  .column_4 {
    flex-direction: column;
  }

  .column_4 .parts {
    width: 100%;
  }

  .column_4 .box {
    width: 100%;
  }

  .layout_reverse .reverse:nth-child(even) .box:nth-child(odd) {
    order: 1;
  }

  .step_box:nth-child(odd) {
    border-top-left-radius: 5rem;
  }

  .step_box:nth-child(odd) .step_inner {
    padding-left: 2rem;
  }

  .step_box:nth-child(even) {
    border-top-right-radius: 5rem;
  }

  .step_box:nth-child(even) .step_inner {
    padding-right: 2rem;
  }

  .step_inner {
    flex-direction: column;
    gap: 2.5rem;
    padding-bottom: 3rem;
  }

  .step_content {
    width: 100%;
  }

  .step_img {
    width: 100%;
  }

  .point_inner {
    width: calc((100% - 2.5rem) / 2);
  }

  .modal_box {
    width: 100%;
  }

  .modal_box_inner {
    min-height: 30rem;
  }

  .modal_inner {
    border-radius: 1.5rem;
    padding: 2.4rem;
  }

  .modal_close {
    top: 0.6rem;
    right: 0.6rem;
  }

  .video::before {
    width: 5.6rem;
    height: 5.6rem;
  }

  .video::after {
    border-top-width: 1rem;
    border-bottom-width: 1rem;
    border-left-width: 1.6rem;
    margin-left: 0.4rem;
  }

  .shop_column {
    row-gap: 3rem;
  }

  .shop_parts {
    width: 100%;
  }

  .link_category {
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .link_category_link {
    padding-bottom: 0.2rem;
  }

  .link_page {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 1.5rem;
  }

  .link_page_item {
    width: 100%;
  }

  .link_page_link {
    font-size: 1.5rem;
    padding: 1rem 2rem;
  }

  .link_page_link::after {
    right: 1rem;
  }

  .btn_flex {
    flex-direction: column;
  }

  .btn_base {
    padding: 1.2rem 2.5rem;
  }

  .btn_base.arrow_reverse {
    padding-right: 2.5rem !important;
    padding-left: 5rem;
  }

  .btn_base.cart {
    padding-right: 5rem;
  }

  .btn_base.w_350 {
    max-width: 28rem;
  }

  .btn_white .column_2 .btn_white_menu {
    width: 100%;
  }

  .btn_white .column_3 {
    flex-wrap: wrap;
  }

  .btn_white .column_3 .btn_white_menu {
    width: 100%;
  }

  .btn_white .column_3 .btn_white_link {
    padding: 2.5rem 1.8rem;
  }

  .btn_page_list {
    flex-direction: column;
  }

  .btn_page_list {
    gap: 1rem;
  }

  .btn_page_menu {
    width: 100%;
  }

  .btn_page_link {
    font-size: 1.4rem;
    padding: 1.5rem 2.5rem 1.5rem 1.5rem;
  }

  .btn_bottom_link {
    border-radius: 2rem;
    padding: 2rem 1.5rem;
  }

  .form_list {
    flex-direction: column;
    gap: 1rem;
  }

  .form_list_ttl {
    width: 100%;
  }

  .form_list_content {
    width: 100%;
  }

  .index .fv_menu {
    margin-top: 3rem;
    width: calc(100% - 4rem);
  }

  .index .intro_width {
    flex-direction: column;
    gap: 3rem;
  }

  .index .intro_width .left {
    width: 100%;
  }

  .index .intro_width .right {
    gap: 2.4rem;
    width: 100%;
  }

  .index .intro_img_sub {
    gap: 2.4rem;
  }

  .index .intro_img_01 .img {
    border-radius: 3.5rem;
    border-bottom-left-radius: 0;
  }

  .index .intro_img_02 .img {
    border-radius: 2.5rem;
    border-bottom-right-radius: 0;
    margin-top: 3.3rem;
  }

  .index .intro_img_03 .img {
    border-radius: 2.5rem;
    border-bottom-left-radius: 0;
  }

  .index .reason_ttl_inner {
    padding-right: 6rem;
    padding-bottom: 2rem;
  }

  .index .visual_width {
    min-height: 15rem;
  }

  .index .visual_wrap_img .img {
    border-radius: 2.5rem;
  }

  .index .visual_wrap_img .img_01 {
    right: 13.4rem;
    bottom: auto;
    top: 5.8rem;
  }

  .index .visual_wrap_img .img_01 .img {
    width: 19rem;
    height: 11.7rem;
  }

  .index .visual_wrap_img .img_02 {
    right: 2rem;
    top: -3.3rem;
  }

  .index .visual_wrap_img .img_02 .img {
    width: 19rem;
    height: 11.7rem;
  }

  .index .visual_wrap_illust .img_01 {
    bottom: auto;
    top: -6.4rem;
  }

  .index .visual_wrap_illust .img_01 .img {
    width: 9.5rem;
    height: 13.2rem;
  }

  .index .visual_wrap_illust .img_02 {
    left: 7.5rem;
    bottom: auto;
    top: -1rem;
  }

  .index .visual_wrap_illust .img_02 .img {
    width: 11.2rem;
    height: 6.4rem;
  }

  .index .visual_wrap_illust .img_03 {
    right: 6.4rem;
    bottom: -2.8rem;
  }

  .index .visual_wrap_illust .img_03 .img {
    width: 5.6rem;
    height: 5.6rem;
  }

  .index .visual_wrap_illust .img_04 {
    right: 2.1rem;
    bottom: -2rem;
  }

  .index .visual_wrap_illust .img_04 .img {
    width: 4.2rem;
    height: 7rem;
  }

  .index .company_width {
    padding-top: 5.3rem;
    padding-bottom: 12.5rem;
  }

  .index .company_width::before {
    border-top-left-radius: 5rem;
  }

  .index .works_width::before {
    border-top-right-radius: 5rem;
  }

  .index .works_slider {
    margin-top: 3.3rem;
    height: 22rem;
  }

  .index .works_slider_odd {
    top: 5rem;
  }

  .index .works_slider_img {
    width: 22.5rem;
  }

  .index .works_slider_img .img {
    border-radius: 5rem;
  }

  .index .news_block {
    padding-top: 5.1rem;
  }

  .index .news_width {
    flex-direction: column;
  }

  .index .news_width .left {
    margin-bottom: 5.1rem;
    width: 100%;
  }

  .index .news_width .right {
    width: 100%;
  }

  .index .news_list {
    gap: 2rem;
  }

  .category_index .fv_width::after {
    background: url(../../assets/img/common/bg_wave_white_sp.svg) no-repeat center bottom/100% auto;
    bottom: 0;
    height: 9.0666666667vw;
  }

  .category_index .fv_wrap {
    flex-direction: column;
  }

  .category_index .fv_slider {
    order: 1;
    aspect-ratio: 1000/667;
    width: 100%;
  }

  .category_index .fv_slider_img {
    height: 100%;
  }

  .category_index .fv_content {
    order: 1;
    top: auto;
    transform: unset;
    margin: 3rem 0;
    padding-left: 2rem;
    padding-bottom: 4rem;
    width: 100%;
  }

  .category_index .fv_point_menu::before {
    top: -0.5rem;
    right: -0.5rem;
    width: 2rem;
    height: 2rem;
  }

  .category_index .fv_point_lg {
    font-size: 1.4rem;
  }

  .category_index .works_slider .swiper-button-prev {
    left: 5.5%;
    width: 1.6rem;
    height: 1.6rem;
    border-right-width: 0.3rem;
    border-bottom-width: 0.3rem;
  }

  .category_index .works_slider .swiper-button-next {
    right: 5.5%;
    width: 1.6rem;
    height: 1.6rem;
    border-right-width: 0.3rem;
    border-bottom-width: 0.3rem;
  }

  .category_index .flow_step_list {
    flex-wrap: wrap;
  }

  .category_index .flow_step_menu {
    width: 41%;
  }

  .category_index .flow_step_menu:nth-child(even) {
    margin-right: 2rem;
  }

  .category_index .flow_step_img {
    max-width: 100%;
    max-height: 100%;
  }

  .category_index .support_question_fukidashi {
    font-size: 1.2rem;
    padding: 0.8rem 2rem;
  }

  .category_index .needs_list_ttl {
    width: 50%;
  }

  .category_index .needs_list_txt {
    width: 50%;
  }

  .contents .fv::after {
    background: url(../../assets/img/common/bg_wave_sp.svg) no-repeat center bottom/100% auto;
    bottom: -9.0666666667vw;
    height: 9.0666666667vw;
  }

  .contents.odanmaku .fv::after {
    background: url(../../assets/img/common/bg_wave_sp.svg) no-repeat center bottom/100% auto;
  }

  .contents.pipe .fv::after {
    background: url(../../assets/img/common/bg_wave_secondary_sp.svg) no-repeat center bottom/100% auto;
  }

  .contents .difference_diff2 {
    flex-direction: column;
    gap: 2rem;
  }

  .contents .difference_diff2_box {
    width: 100%;
  }

  .contents .difference_diff2_ttl {
    padding: 2rem 0;
  }

  .contents .difference_diff2_ttl_img {
    width: 2.5rem;
    height: 2.5rem;
  }

  .contents .difference_diff2_menu {
    padding-left: 3.2rem;
  }

  .contents .difference_diff2_menu::before {
    width: 2.4rem;
    height: 2.4rem;
  }

  .contents .difference_diff2_menu::after {
    top: 0.8rem;
    width: 1.1rem;
    height: 0.8rem;
  }

  .contents .product_material {
    margin-bottom: 2rem;
  }

  .contents .product_price .tr {
    display: block;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .contents .product_price_name {
    display: block;
    margin-bottom: 1rem;
    width: 100%;
  }

  .contents .product_price_feature {
    display: block;
    width: 100%;
  }

  .contents .product_price_quantity {
    display: block;
    width: 100%;
  }

  .contents .product_price_total {
    display: block;
    width: 100%;
  }

  .contents .product_price_unit {
    display: block;
    width: 100%;
  }

  .store_pager {
    gap: 1rem;
  }

  .store_pager_link {
    font-size: 1.4rem;
    padding: 0.8rem 1.1rem;
  }

  .store_slider .swiper-button-prev {
    left: 6%;
    width: 1.6rem;
    height: 1.6rem;
    border-right-width: 0.3rem;
    border-bottom-width: 0.3rem;
  }

  .store_slider .swiper-button-next {
    right: 6%;
    width: 1.6rem;
    height: 1.6rem;
    border-right-width: 0.3rem;
    border-bottom-width: 0.3rem;
  }

  .store .item_wrap {
    border-radius: 3.5rem;
    padding: 4rem 2.5rem;
  }

  .store .item_list {
    flex-direction: column;
  }

  .store .item_list_menu {
    width: 100%;
  }

  .store .detail_wrap {
    flex-direction: column;
  }

  .store .detail_slider {
    width: 100%;
  }

  .store .detail_slider .swiper-button-prev {
    width: 1.6rem;
    height: 1.6rem;
    border-right-width: 0.3rem;
    border-bottom-width: 0.3rem;
  }

  .store .detail_slider .swiper-button-next {
    width: 1.6rem;
    height: 1.6rem;
    border-right-width: 0.3rem;
    border-bottom-width: 0.3rem;
  }

  .store .detail_box {
    width: 100%;
  }

  .store .detail_order_list .btn_base {
    margin-top: 0;
    padding: 1.8rem 3rem;
  }

  .store .detail_description {
    width: 100%;
  }

  .store .detail_notes {
    width: 100%;
  }

  .store .detail_feature {
    width: 100%;
  }

  .store .detail_about_table .th,
  .store .detail_about_table .td {
    padding: 0.8rem;
  }

  .store .detail_about_table .th {
    display: block;
    border-bottom-width: 0.3rem;
    padding: 1.5rem 1rem;
    width: 100%;
  }

  .store .detail_about_table .td {
    display: block;
    padding: 1.5rem 1rem;
    padding-bottom: 2rem;
    width: 100%;
  }

  .contents .works_slider {
    margin-bottom: 0;
  }

  .contents .works_slider .swiper-button-prev {
    left: 6%;
    width: 1.6rem;
    height: 1.6rem;
    border-right-width: 0.3rem;
    border-bottom-width: 0.3rem;
  }

  .contents .works_slider .swiper-button-next {
    right: 6%;
    width: 1.6rem;
    height: 1.6rem;
    border-right-width: 0.3rem;
    border-bottom-width: 0.3rem;
  }

  .contents .works_list {
    gap: 2rem;
  }

  .contents .works_list_link {
    flex-wrap: wrap;
  }

  .contents .works_column_img {
    margin-bottom: 2rem;
    width: 100%;
  }

  .contents .works_column_txt {
    padding-bottom: 2rem;
    width: 100%;
  }

  .contents .works_pager {
    gap: 1rem;
  }

  .contents .works_pager_link {
    font-size: 1.4rem;
    padding: 0.8rem 1.1rem;
  }

  .contents .works_btn_side {
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
  }

  .contents .works_btn_item:nth-child(2) {
    margin: 1rem auto 0;
    order: 3;
  }

  .news_list {
    gap: 2rem;
  }

  .news_list_link {
    flex-wrap: wrap;
  }

  .news_list_ttl {
    margin: 0;
  }

  .news_column_txt {
    gap: 2.5rem;
    padding-bottom: 2rem;
  }

  .news_pager {
    gap: 1rem;
  }

  .news_pager_link {
    font-size: 1.4rem;
    padding: 0.8rem 1.1rem;
  }

  .news_btn_side {
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
  }

  .news_btn_item:nth-child(2) {
    margin: 1rem auto 0;
    order: 3;
  }

  .contact_block {
    margin-top: 10rem;
  }

  .contact_block::before {
    background: url(../../assets/img/common/bg_wave_sp.svg) no-repeat center bottom/100% auto;
    top: -9.0666666667vw;
    height: 9.0666666667vw;
  }

  .contact_block::after {
    background: url(../../assets/img/common/bg_wave_sp.svg) no-repeat center bottom/100% auto;
    bottom: -9.0666666667vw;
    height: 9.0666666667vw;
  }

  .contact_ttl_jp {
    font-size: 1.7rem;
  }

  .contact_ttl_lg {
    font-size: 2.4rem;
  }

  .contact_question {
    max-width: 34rem;
  }

  .contact_question_fukidashi {
    font-size: 1.2rem;
    padding: 0.8rem 2rem;
  }

  .contact_box {
    margin-top: 6rem;
  }

  .contact_list_menu {
    gap: 1.5rem;
  }

  .contact_list .btn_base {
    margin-top: 0;
    padding: 1.8rem 3rem;
  }

  .contents .contact_info:not(:last-child) {
    margin-bottom: 3rem;
  }

  .contents .contact_tel_icon {
    width: 3rem;
    height: 3rem;
  }

  .contents .contact_fax_icon {
    width: 3.2rem;
    height: 3rem;
  }

  .sp {
    display: block;
  }

  footer .footer_block {
    padding-top: 8rem;
    padding-bottom: 6rem;
  }

  footer .footer_block .left {
    width: 100%;
  }

  footer .footer_category_box {
    flex-direction: column;
    gap: 1rem;
  }

  footer .footer_content_link {
    column-gap: 2rem;
  }

  footer .footer_content_menu {
    font-size: 1.4rem;
  }

  footer .footer_icon_insta {
    width: 1.8rem;
    height: 1.8rem;
  }

  footer .footer_link_menu {
    display: block;
  }

  footer .footer_link_menu:not(:last-child) {
    margin-right: 0;
  }

  footer .footer_link_menu:not(:last-child)::after {
    content: none;
  }
}

@media (max-width: 374px) {
  .category_index .fv_point_list {
    justify-content: center;
    max-width: 28rem;
  }
}

@media (min-width: 1024px) and (max-width: 1439px) {
  header .header_nav_tel_num {
    margin-left: 1.5rem;
  }

  header .header_dropdown_arrow::after {
    right: 4rem;
  }

  header .header_dropdown_child {
    gap: 1.4rem 2rem;
    font-size: 1.5rem;
    padding: 2rem 3rem 4rem;
  }

  header .header_dropdown_child_menu {
    width: calc((100% - 2rem) / 2);
  }

  .bg_primary {
    padding-left: 8rem;
  }

  .bg_primary::before {
    width: calc(100% - 2rem);
  }

  .index .reason_ttl_inner {
    padding-right: 6rem;
    padding-bottom: 2rem;
  }

  .index .company_width {
    padding-left: 8rem;
  }

  .index .news_list_txt {
    width: auto;
  }

  .category_index .fv_slider_img {
    height: 50rem;
  }

  .category_index .flow_step_list {
    gap: 4rem;
  }

  .category_index .flow_step .flow_step_menu:not(:last-child) .flow_step_img::after {
    right: -3rem;
  }

  .contents .difference_diff2 {
    gap: 4rem;
  }

  .contents .difference_diff2_box {
    width: calc((100% - 4rem) / 2);
  }

  .store .detail_order_list {
    gap: 1rem;
  }

  .contact_ttl {
    gap: 1rem;
    width: 48%;
  }

  .contact_question {
    width: 52%;
  }

  .contact_list {
    gap: 1rem;
  }

  .contact_list_menu:not(:last-child) {
    padding-right: 1rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  header .header_btn {
    padding: 1rem;
  }

  .heading_2::before {
    top: 0.35em;
    width: 2.5rem;
    height: 2.5rem;
  }

  .reason_list_img {
    margin-bottom: 2rem;
  }

  .txt_p.lg {
    font-size: 2.2rem;
  }

  .bg_primary {
    padding: 6rem 2rem;
  }

  .box_border {
    padding: 3.5rem;
  }

  .box_sample {
    gap: 2rem;
  }

  .box_sample_img {
    width: calc((100% - 4rem) / 3);
  }

  .column + .link_category {
    margin-top: 1em;
  }

  .column .parts {
    gap: 3rem;
  }

  .column_2 .box {
    width: calc((100% - 3rem) / 2);
  }

  .column_3 {
    gap: 2rem;
    margin-bottom: 4.5rem;
  }

  .column_3 .parts {
    width: calc((100% - 4rem) / 3);
  }

  .column_4 .parts {
    gap: 2rem;
    width: calc((100% - 2rem) / 2);
  }

  .step_box:nth-child(odd) {
    border-top-left-radius: 7.5rem;
  }

  .step_box:nth-child(odd) .step_inner {
    padding-left: 2.5rem;
  }

  .step_box:nth-child(even) {
    border-top-right-radius: 7.5rem;
  }

  .step_box:nth-child(even) .step_inner {
    padding-right: 2.5rem;
  }

  .step_inner {
    flex-wrap: nowrap;
    gap: 2rem;
    padding-bottom: 5rem;
  }

  .step_content {
    width: 50%;
  }

  .step_img {
    width: 50%;
  }

  .point_inner {
    width: calc((100% - 5rem) / 3);
  }

  .modal_box {
    width: calc((100% - 4rem) / 3);
  }

  .shop_parts .column_txt .txt_p {
    font-size: 1.4rem;
  }

  .link_page {
    gap: 1rem;
  }

  .link_page_item {
    width: calc((100% - 2rem) / 3);
  }

  .link_page_link {
    font-size: 1.5rem;
    padding: 1rem 3rem 1rem 1rem;
  }

  .link_page_link::after {
    right: 1.5rem;
  }

  .btn_base {
    padding: 1.4rem 3rem;
  }

  .btn_base.arrow_reverse {
    padding-right: 3rem !important;
    padding-left: 5.4rem;
  }

  .btn_base.cart {
    padding-right: 5.4rem;
  }

  .btn_circle {
    font-size: 1.5rem;
    padding-right: 3.2rem;
  }

  .btn_white_list {
    gap: 2rem;
  }

  .btn_white .column_2 .btn_white_menu {
    width: calc((100% - 2rem) / 2);
  }

  .btn_white .column_3 .btn_white_link {
    padding: 2.5rem 2.5rem 2.5rem 1.2rem;
  }

  .btn_page_list {
    gap: 1.5rem;
  }

  .btn_page_menu {
    width: calc((100% - 3rem) / 3);
  }

  .btn_bottom_link {
    border-radius: 2rem;
    padding: 1.5rem;
  }

  .form_list_ttl {
    width: 30rem;
  }

  .form_list_content {
    width: calc(100% - 30rem - 2rem);
  }

  .index .reason_wrap {
    padding-bottom: 5.5rem;
  }

  .index .reason_ttl_inner {
    padding-right: 6rem;
    padding-bottom: 2rem;
  }

  .index .visual_wrap_img .img {
    border-radius: 3.5rem;
  }

  .index .visual_wrap_img .img_01 .img {
    width: 29.9rem;
    height: 18.5rem;
  }

  .index .visual_wrap_img .img_02 {
    right: 2rem;
    top: -5rem;
  }

  .index .visual_wrap_img .img_02 .img {
    width: 29.9rem;
    height: 18.5rem;
  }

  .index .visual_wrap_illust .img_01 .img {
    width: 14.2rem;
    height: 19.7rem;
  }

  .index .visual_wrap_illust .img_02 {
    left: 10.5rem;
    bottom: auto;
    top: 1rem;
  }

  .index .visual_wrap_illust .img_02 .img {
    width: 16.8rem;
    height: 9.5rem;
  }

  .index .visual_wrap_illust .img_03 {
    bottom: -4rem;
  }

  .index .visual_wrap_illust .img_03 .img {
    width: 8.4rem;
    height: 8.4rem;
  }

  .index .visual_wrap_illust .img_04 {
    bottom: -4rem;
  }

  .index .visual_wrap_illust .img_04 .img {
    width: 6.3rem;
    height: 10.4rem;
  }

  .index .company_width {
    padding-bottom: 12.5rem;
  }

  .index .works_slider_img {
    width: 30rem;
  }

  .index .works_slider_img .img {
    border-radius: 7.5rem;
  }

  .category_index .fv_slider_img {
    height: 40rem;
  }

  .category_index .fv_btn {
    gap: 1rem;
  }

  .category_index .support_question_fukidashi {
    font-size: 1.4rem;
  }

  .category_index .needs_list_ttl {
    width: 40%;
  }

  .category_index .needs_list_txt {
    width: 60%;
  }

  .contents .difference_diff2 {
    gap: 2rem;
  }

  .contents .difference_diff2_box {
    width: calc((100% - 2rem) / 2);
  }

  .contents .difference_diff2_ttl_img {
    width: 3.6rem;
    height: 3.6rem;
  }

  .store .item_wrap {
    border-radius: 5rem;
    padding: 6rem 4rem;
  }

  .store .item_list {
    gap: 2rem;
  }

  .store .item_list_menu {
    width: calc((100% - 2rem) / 2);
  }

  .contents .works_column {
    gap: 2rem;
    flex-wrap: unset;
    padding-bottom: 1.6rem;
  }

  .news_column {
    gap: 2rem;
    flex-wrap: unset;
    padding-bottom: 1.6rem;
  }

  .contact_question {
    max-width: 41rem;
  }

  .contact_question_fukidashi {
    font-size: 1.4rem;
  }

  .contents .contact_info:not(:last-child) {
    margin-bottom: 4.5rem;
  }

  .tablet {
    display: block;
  }

  footer .footer_block .left {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5rem;
    width: 100%;
  }

  footer .footer_category_inner {
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1439px) {
  header .header_dropdown_list {
    font-size: 1.5rem;
  }

  .entrance_menu_box {
    padding: 3rem 1.5rem;
  }

  .reason_list {
    gap: 1rem;
  }

  .modal_img {
    min-height: 20rem;
  }

  .modal_img .img {
    max-height: 20rem;
  }

  .index .intro_width .left {
    width: 50%;
  }

  .index .intro_width .right {
    gap: 2.6rem;
    width: 50%;
  }

  .index .intro_img_sub {
    gap: 2.6rem;
  }

  .index .intro_img_01 .img {
    border-radius: 5rem;
    border-bottom-left-radius: 0;
  }

  .index .intro_img_02 .img {
    border-radius: 3.2rem;
    border-bottom-right-radius: 0;
    margin-top: 4.8rem;
  }

  .index .intro_img_03 .img {
    border-radius: 3.2rem;
    border-bottom-left-radius: 0;
  }

  .index .works_width {
    padding-top: 2.5rem;
    padding-bottom: 40rem;
  }

  .index .works_slider {
    margin-top: 3.3rem;
  }

  .index .news_width .left {
    width: 25%;
  }

  .index .news_width .right {
    width: 75%;
  }

  .category_index .fv_point_menu::before {
    top: -0.5rem;
    right: -0.5rem;
    width: 2rem;
    height: 2rem;
  }

  .category_index .fv_point_lg {
    font-size: 1.6rem;
  }

  .category_index .works_width {
    padding: 0 4rem;
  }

  .category_index .works_slider .swiper-button-prev {
    left: -2rem;
    width: 2rem;
    height: 2rem;
    border-right-width: 0.4rem;
    border-bottom-width: 0.4rem;
  }

  .category_index .works_slider .swiper-button-next {
    right: -2rem;
    width: 2rem;
    height: 2rem;
    border-right-width: 0.4rem;
    border-bottom-width: 0.4rem;
  }

  .store_slider_width {
    margin: 0 2rem;
    padding: 0 3rem;
  }

  .store_slider .swiper-button-prev {
    left: -2rem;
    width: 2rem;
    height: 2rem;
    border-right-width: 0.4rem;
    border-bottom-width: 0.4rem;
  }

  .store_slider .swiper-button-next {
    right: -2rem;
    width: 2rem;
    height: 2rem;
    border-right-width: 0.4rem;
    border-bottom-width: 0.4rem;
  }

  .store .detail_slider .swiper-button-prev {
    width: 2rem;
    height: 2rem;
    border-right-width: 0.4rem;
    border-bottom-width: 0.4rem;
  }

  .store .detail_slider .swiper-button-next {
    width: 2rem;
    height: 2rem;
    border-right-width: 0.4rem;
    border-bottom-width: 0.4rem;
  }

  .contents .works_width {
    padding: 0 4rem;
  }

  .contents .works_slider {
    margin-bottom: 4rem;
  }

  .contents .works_slider .swiper-button-prev {
    left: -2rem;
    width: 2rem;
    height: 2rem;
    border-right-width: 0.4rem;
    border-bottom-width: 0.4rem;
  }

  .contents .works_slider .swiper-button-next {
    right: -2rem;
    width: 2rem;
    height: 2rem;
    border-right-width: 0.4rem;
    border-bottom-width: 0.4rem;
  }
}



.the_content h2 {
  margin-top: 1em;
  padding-left: 0;
  font-weight: 600;
  margin-bottom: 1em;
  padding-left: 1em;
  position: relative;
  font-size: 2.8rem;
}

.the_content h2::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  display: inline-block;
  border-radius: 0.5rem;
  width: 2rem;
  height: 2rem;
  background-color: #54C3F1;
}

.the_content h3 {
  margin-top: 1em;
  padding-left: 0;
  font-weight: 600;
  margin-bottom: 1em;
  padding-left: 1em;
  position: relative;
  font-size: 2.3rem;
}

.the_content h3::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  display: inline-block;
  border-radius: 0.5rem;
  width: 1.7rem;
  height: 1.7rem;
  background-color: #54C3F1;
}

.the_content h4 {
  margin-top: 1em;
  padding-left: 0;
  font-weight: 600;
  margin-bottom: 1em;
  padding-left: 1em;
  position: relative;
  font-size: 1.8rem;
}


.the_content h4::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  display: inline-block;
  border-radius: 0.5rem;
  width: 1.4rem;
  height: 1.4rem;
  background-color: #54C3F1;
}


.the_content h5 {
  margin-top: 1em;
  padding-left: 0;
  font-weight: 600;
  margin-bottom: 1em;
  padding-left: 1em;
  position: relative;
  font-size: 1.6rem;
}

.the_content h5::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  display: inline-block;
  border-radius: 0.5rem;
  width: 1.0rem;
  height: 1.0rem;
  background-color: #54C3F1;
}

.the_content p {
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 10px 0;
}

.the_content p a {
  color: #54C3F1;
}

.the_content p a:hover {
  opacity: .7;
  text-decoration: underline;
}

.the_content .wp-block-list {
  margin-top: 2em;
}

.the_content ul.wp-block-list > li {
  position: relative;
  padding-left: 1.3em;
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.the_content ul.wp-block-list > li::before {
  position: absolute;
  left: 0;
  top: 0.45em;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #54C3F1;
  border-radius: 50%;
}

.the_content ol.wp-block-list {
  counter-reset: num;
}

.the_content ol.wp-block-list > li{
  position: relative;
  padding-left: 1.3em;
  counter-increment: num;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.the_content ol.wp-block-list > li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: counter(num)".";
}

.the_content .wp-block-quote {
  margin: 50px 0;
  padding: 20px;
  background-color: #54c2f13e;
}

.the_content .wp-block-media-text {
  margin: 50px 0;
}

.the_content .wp-block-image {
  margin: 30px 0;
}

.the_content .wp-block-image .alignleft {
  margin-right: auto;
  text-align: left;
  float: none;
}

.the_content .wp-block-image .aligncenter {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  float: none;
}

.the_content .wp-block-image .alignright {
  text-align: right;
  margin-left: auto;
  float: none;
}

.the_content .wp-block-table {
  margin: 30px 0;
}


@media screen and (max-width: 1440px) {
  .category_index .fv_content {
    row-gap: 3rem;
    padding-left: 3rem;
  }
  
}

@media screen and (max-width: 768px) {
  .index .works_btn {
    bottom: 18rem;
  }
  
}

