:root {
  --font_base: "Noto Sans JP", serif;
  --color-white: #ffffff;
  --color-black: #1d1d1d;
  --color-red: #ca0000;
  --color-gray: #1d1d1d0f;
  --color-gray-text: #1d1d1db2;
}
body {
  color: var(--color-black);
}

/***** WP制御 *****/
.post-edit-link {
  display: block;
  margin: var(--pad_xxxs);
  width: 4em;
  text-align: center;
  background-color: var(--color_base);
  box-shadow: 0 0 0 1px #ffffff;
  color: #ffffff;
  padding: var(--pad_xxxs) 0;
  z-index: 10;
}

/***** チャットボット制御 *****/
.sp_menu_op_body #hubspot-messages-iframe-container {
  z-index: 1000 !important;
}

@media screen and (max-width: 659px) {
  #hubspot-messages-iframe-container.widget-align-right {
    right: auto !important;
    left: 0;
  }
}
/*共通*/
/***** font *****/
@font-face {
  font-family: "icon";
  src: url("../fonts/icon.ttf") format("truetype"), url("../fonts/icon.woff") format("woff"), url("../fonts/icon.svg#icon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ranking";
  src: url("../fonts/ranking.ttf") format("truetype"), url("../fonts/ranking.woff") format("woff"), url("../fonts/ranking.svg#icon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/***** ベース *****/
body {
  text-align: justify;
  text-justify: inter-ideograph;
  font-family: var(--font_base);
  color: var(--color_base);
  background-color: var(--color_bg_base);
  font-weight: var(--fweight_base);
  line-height: var(--line_base);
  font-size: var(--fsize_base);
}
@media screen and (min-width: 660px) {
  body {
    font-size: var(--fsize_base_pc);
  }
}

/***** ヘッダー *****/
body > header {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  background-color: var(--color_bl);
  height: var(--header_sp);
  color: var(--color_bg_base);
}
@media screen and (min-width: 1350px) {
  body > header {
    height: var(--header_pc);
  }
}
body > header #site_title {
  padding-left: var(--pad_ss);
  padding-right: var(--pad_ss);
  align-self: center;
}
@media screen and (min-width: 660px) {
  body > header #site_title {
    padding-left: var(--pad_m);
    padding-right: var(--pad_m);
  }
}
body > header #site_title svg {
  fill: currentColor;
}
@media screen and (max-width: 1349px) {
  body > header #site_title .h_logo_pc {
    display: none;
  }
}
body > header #site_title .h_logo_pc > svg {
  width: 160px;
  height: 26px;
}
@media screen and (min-width: 1350px) {
  body > header #site_title .h_logo_sp {
    display: none;
  }
}
body > header #site_title .h_logo_sp > svg {
  width: 36px;
  height: 36px;
}
body > header #site_title .h_logo_full_color,
body > header #site_title .h_logo_short_color {
  display: none;
}
body > header > button {
  transition: all 0.3s ease-in-out;
  display: block;
  opacity: 1;
  position: absolute;
  right: 0;
  background-color: var(--color_bl);
  width: var(--header_sp);
  height: var(--header_sp);
}
@media screen and (min-width: 1350px) {
  body > header > button {
    width: calc(var(--header_pc) + 10px);
    height: var(--header_pc);
  }
}
body > header > button span,
body > header > button::before,
body > header > button::after {
  display: block;
  position: absolute;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.1s ease-in-out;
  left: var(--pad_ss);
}
@media screen and (min-width: 1350px) {
  body > header > button span,
  body > header > button::before,
  body > header > button::after {
    left: var(--pad_m);
  }
}
body > header > button span,
body > header > button::before {
  width: calc(100% - (var(--pad_ss) * 2));
}
@media screen and (min-width: 1350px) {
  body > header > button span,
  body > header > button::before {
    width: calc(100% - (var(--pad_m) * 2));
  }
}
body > header > button span {
  text-indent: -100%;
  overflow: hidden;
  top: 50%;
  margin-top: -1px;
}
body > header > button::before,
body > header > button::after {
  content: "";
}
body > header > button::before {
  top: var(--pad_s);
}
@media screen and (min-width: 1350px) {
  body > header > button::before {
    top: var(--pad_m);
  }
}
body > header > button::after {
  bottom: var(--pad_s);
  width: calc(80% - (var(--pad_ss) * 2));
}
@media screen and (min-width: 1350px) {
  body > header > button::after {
    bottom: var(--pad_m);
    width: calc(80% - (var(--pad_m) * 2));
  }
}
body > header > button.sp_menu_op span {
  display: none;
}
body > header > button.sp_menu_op::before {
  top: 50%;
  transform: rotate(-45deg);
}
body > header > button.sp_menu_op::after {
  top: 50%;
  transform: rotate(45deg);
  width: calc(100% - (var(--pad_ss) * 2));
}
@media screen and (min-width: 1350px) {
  body > header > button.sp_menu_op::after {
    width: calc(100% - (var(--pad_m) * 2));
  }
}
body > header > nav {
  display: none;
  position: absolute;
  width: 100%;
  max-width: 390px;
  background-color: var(--color_bl);
  padding: var(--pad_l);
  box-sizing: border-box;
  text-align: right;
  right: 0;
  top: var(--header_sp);
  overflow-y: auto;
  max-height: calc((var(--vh) * 100) - var(--header_sp));
}
@media screen and (min-width: 1350px) {
  body > header > nav {
    top: var(--header_pc);
    max-height: calc((var(--vh) * 100) - var(--header_pc));
  }
}
body > header > nav .menu {
  font-family: "Lato", var(--font_base);
}
body > header > nav .menu > li a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-items: 1.2;
  height: 45px;
}
@media screen and (min-width: 660px) {
  body > header > nav .menu > li a {
    transition: opacity var(--hover_time);
  }
  body > header > nav .menu > li a:hover {
    opacity: 0.6;
  }
}
@media screen and (min-width: 1350px) {
  body > header > nav .menu > li a {
    height: 50px;
  }
}
body > header > nav .menu > li > a {
  font-weight: 700;
  font-size: 2rem;
}
@media screen and (min-width: 1350px) {
  body > header > nav .menu > li > a {
    font-size: 2.2rem;
  }
}
body > header > nav .menu > li.btn_youtube a::before {
  content: "";
  display: inline-block;
  margin-right: 0.5em;
  width: 25px;
  height: 100%;
  background-image: url("../img/common/youtube_bl.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
body > header > nav .menu > li .sub-menu {
  margin-bottom: var(--pad_ss);
}
body > header > nav .menu > li .sub-menu a {
  height: 30px;
}
@media screen and (min-width: 1350px) {
  body > header > nav .menu > li .sub-menu a {
    height: 35px;
  }
}
body > header .h_btn_contact {
  display: none;
}
body > header.header_floating {
  background-color: transparent;
}
body > header.header_floating #site_title .h_logo_full,
body > header.header_floating #site_title .h_logo_short {
  display: none;
}
body > header.header_floating #site_title .h_logo_full_color,
body > header.header_floating #site_title .h_logo_short_color {
  display: block;
}
body > header.header_floating > nav .menu .menu-item-has-children > a {
  pointer-events: none;
}
@media screen and (min-width: 1350px) {
  body > header:not(.header_floating) > button {
    opacity: 0;
    pointer-events: none;
    overflow: auto;
  }
}
@media screen and (min-width: 1350px) {
  body > header:not(.header_floating) > nav {
    display: block !important;
    position: static;
    width: auto;
    max-width: none;
    background-color: transparent;
    text-align: justify;
    padding: 0;
    overflow-y: visible;
  }
  body > header:not(.header_floating) > nav * {
    height: 100%;
  }
}
@media screen and (min-width: 1350px) {
  body > header:not(.header_floating) > nav .menu {
    display: flex;
  }
}
@media screen and (min-width: 1350px) {
  body > header:not(.header_floating) > nav .menu > li > a {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 600;
    height: 100%;
  }
}
@media screen and (min-width: 1350px) {
  body > header:not(.header_floating) > nav .menu > li:not(:last-child) {
    margin-right: var(--pad_ll);
  }
}
@media screen and (min-width: 1350px) {
  body > header:not(.header_floating) > nav .menu > li:last-child {
    width: 160px;
  }
  body > header:not(.header_floating) > nav .menu > li:last-child > a {
    background-color: var(--color_point_24);
    color: #ffffff;
    justify-content: center;
    text-align: center;
  }
}
@media screen and (min-width: 1350px) {
  body > header:not(.header_floating) > nav .menu > li .sub-menu {
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s;
    background-color: var(--color_bg_base);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
    padding: var(--pad_ss);
    display: flex;
    justify-content: center;
    background-color: var(--color_dark);
    color: #ffffff;
    height: auto;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  body > header:not(.header_floating) > nav .menu > li .sub-menu li:not(:last-child) {
    margin-right: var(--pad_ll);
  }
  body > header:not(.header_floating) > nav .menu > li .sub-menu a {
    white-space: nowrap;
    justify-content: flex-start;
    height: 120px;
  }
  body > header:not(.header_floating) > nav .menu > li:hover .sub-menu {
    pointer-events: auto;
    opacity: 1;
  }
}
@media screen and (min-width: 1350px) {
  body > header:not(.header_floating) > nav .menu > li.btn_youtube {
    margin-right: 0 !important;
  }
}
body > header:not(.header_floating) > nav .menu > li.btn_youtube a::before {
  margin-right: 0.5em;
}
@media screen and (min-width: 1350px) {
  body > header:not(.header_floating) > nav .menu > li.btn_youtube a {
    display: block;
    width: 140px;
    position: relative;
    overflow: hidden;
    text-indent: 110%;
    background-color: var(--color_bg_base);
  }
  body > header:not(.header_floating) > nav .menu > li.btn_youtube a::before,
  body > header:not(.header_floating) > nav .menu > li.btn_youtube a::after {
    display: block;
    text-indent: 0;
    color: #ffffff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  body > header:not(.header_floating) > nav .menu > li.btn_youtube a::before {
    width: 35px;
    left: var(--pad_s);
  }
  body > header:not(.header_floating) > nav .menu > li.btn_youtube a::after {
    content: "";
    display: block;
    background-image: url("../img/common/btn_youtube.svg");
    background-size: cover;
    width: 54px;
    height: 24px;
    right: var(--pad_s);
  }
}
@media screen and (max-width: 1349px) {
  body.home .site_title .h_logo_pc {
    display: block;
  }
}
@media screen and (max-width: 1349px) {
  body.home .site_title .h_logo_sp {
    display: none;
  }
}
@media screen and (max-width: 1349px) {
  body.home .h_btn_contact {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 130px;
    height: 100%;
    margin-right: var(--header_sp);
    background-color: var(--color_point_24);
    color: #ffffff;
    font-size: 1.4rem;
  }
  body.home .h_btn_contact::before {
    font-family: "icon";
    content: "\2709";
    margin-right: 0.5em;
    font-size: 18px;
  }
}

/***** フッター *****/
/* body > footer {
  padding-left: var(--pad_ss);
  padding-right: var(--pad_ss);
  background-color: var(--color_dark);
  color: #ffffff;
  padding-top: var(--pad_m);
  padding-bottom: var(--pad_m);
}
@media screen and (min-width: 660px) {
  body > footer {
    padding-left: var(--pad_m);
    padding-right: var(--pad_m);
  }
}
@media screen and (min-width: 1080px) {
  body > footer {
    padding-left: var(--pad_xxl_sw);
    padding-right: var(--pad_xxl_sw);
  }
}
@media screen and (max-width: 1049px) {
  body > footer {
    text-align: center;
  }
}
@media screen and (min-width: 1050px) {
  body > footer {
    padding-top: var(--pad_ll);
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 1049px) {
  body > footer h2 {
    margin-bottom: var(--pad_m);
  }
}
@media screen and (min-width: 1050px) {
  body > footer h2 {
    margin-right: var(--pad_m);
  }
}
body > footer h2 svg {
  fill: currentColor;
  width: 156px;
  height: 25px;
}
@media screen and (max-width: 659px) {
  body > footer h2 svg {
    margin: 0 auto;
  }
}
@media screen and (min-width: 660px) {
  body > footer h2 svg {
    width: 226px;
    height: 36px;
  }
}
@media screen and (min-width: 1050px) {
  body > footer .footer_main {
    width: 100%;
  }
}
body > footer .footer_main ul {
  display: flex;
}
@media screen and (max-width: 1049px) {
  body > footer .footer_main ul {
    justify-content: center;
  }
}
@media screen and (min-width: 1050px) {
  body > footer .footer_main ul {
    margin-top: var(--pad_ll);
  }
}
body > footer .footer_main ul li {
  width: 45px;
  height: 45px;
  background-color: #ffffff;
  margin-bottom: var(--pad_s);
  overflow: hidden;
}
body > footer .footer_main ul li img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
body > footer .footer_main ul li:not(:last-child) {
  margin-right: var(--pad_s);
}
body > footer .footer_main > a {
  font-size: 1.4rem;
  text-decoration: underline;
}
@media screen and (min-width: 660px) {
  body > footer .footer_main > a:hover {
    text-decoration: none;
  }
}
body > footer .footer_main small {
  display: block;
  margin-top: var(--pad_m);
  font-size: 1.2rem;
}
body > footer div[class*="menu-"] {
  flex: 2 2 auto;
}
@media screen and (max-width: 1049px) {
  body > footer div[class*="menu-"] {
    display: none;
  }
}
body > footer div[class*="menu-"] .menu {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 1199px) {
  body > footer div[class*="menu-"] .menu > li {
    font-size: 1.4rem;
  }
}
body > footer div[class*="menu-"] .menu > li:not(:last-child) {
  margin-right: 5%;
}
@media screen and (min-width: 660px) {
  body > footer div[class*="menu-"] .menu > li a {
    transition: opacity var(--hover_time);
  }
  body > footer div[class*="menu-"] .menu > li a:hover {
    opacity: 0.6;
  }
}
body > footer div[class*="menu-"] .menu > li > a {
  font-weight: 700;
}
body > footer div[class*="menu-"] .menu > li.menu-item-has-children > a {
  pointer-events: none;
} */

/***** フッターお問い合わせ *****/
#footer_contact {
  position: relative;
  background-color: var(--color_base_rgba_7);
  color: #ffffff;
  padding-top: var(--pad_m);
  padding-bottom: var(--pad_m);
  padding-left: var(--pad_ss);
  padding-right: var(--pad_ss);
}
@media screen and (min-width: 660px) {
  #footer_contact {
    padding-left: var(--pad_m);
    padding-right: var(--pad_m);
  }
}
@media screen and (min-width: 1080px) {
  #footer_contact {
    padding-left: var(--pad_xxl_sw);
    padding-right: var(--pad_xxl_sw);
  }
}
@media screen and (max-width: 659px) {
  #footer_contact {
    text-align: center;
  }
}
@media screen and (min-width: 660px) {
  #footer_contact {
    padding-top: var(--pad_ll);
    padding-bottom: var(--pad_ll);
    display: flex;
    align-items: center;
  }
  #footer_contact > * {
    width: 50%;
  }
}
#footer_contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../img/common/bg_f_contact.jpg");
  background-size: cover;
  background-position: center center;
  z-index: -1;
}
#footer_contact > div h2 {
  font-family: "Lato", sans-serif;
  line-height: 1.4;
  margin-bottom: 0.5em;
  font-size: 4rem;
}
@media screen and (min-width: 660px) {
  #footer_contact > div h2 {
    font-size: 7rem;
  }
}
#footer_contact > div p {
  margin-bottom: 0.5em;
  font-weight: 700;
  font-size: 1.6rem;
}
@media screen and (min-width: 660px) {
  #footer_contact > div p {
    font-size: 1.8rem;
  }
}
#footer_contact > div .contact_sub_txt {
  font-weight: 400;
  font-size: 1.4rem;
}
@media screen and (max-width: 659px) {
  #footer_contact > div .contact_sub_txt {
    display: none;
  }
}
#footer_contact > a {
  display: block;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (min-width: 660px) {
  #footer_contact > a {
    transition: opacity var(--hover_time);
  }
  #footer_contact > a:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 659px) {
  #footer_contact > a {
    margin-top: var(--pad_m);
  }
}
#footer_contact > a::after {
  display: block;
  content: "\ff1e";
  font-family: "icon";
  font-size: 70px;
  font-weight: normal;
  line-height: 1;
  margin-top: var(--pad_ss);
}

/***** メイン *****/
body > main {
  position: relative;
  margin-top: var(--header_sp);
}
@media screen and (min-width: 660px) {
  body > main {
    margin-top: var(--header_pc);
  }
}

/***** サイド インフォバー *****/
#side_info {
  position: fixed;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 1.2rem;
  font-family: "Lato", sans-serif;
  display: flex;
  align-items: center;
  z-index: 100;
  top: var(--header_sp);
  left: 0;
}
@media screen and (max-width: 659px) {
  #side_info {
    display: none;
  }
}
@media screen and (min-width: 1380px) {
  #side_info {
    left: var(--pad_xxs);
  }
}
@media screen and (min-width: 1350px) {
  #side_info {
    top: var(--header_pc);
  }
}
#side_info small {
  margin-bottom: var(--pad_m);
}
#side_info > a {
  font-family: "icon";
  -ms-writing-mode: lr-tb;
  writing-mode: horizontal-tb;
  display: block;
  font-size: 16px;
  line-height: 1;
}
@media screen and (min-width: 660px) {
  #side_info > a {
    transition: opacity var(--hover_time);
  }
  #side_info > a:hover {
    opacity: 0.6;
  }
}
#side_info > a:not(:last-child) {
  margin-bottom: var(--pad_ss);
}
#side_info > a img {
  width: 16px;
  height: 16px;
}

/***** TOPへ戻る *****/
#pg_top {
  display: none;
  position: fixed;
  z-index: 9999;
  right: var(--pad_ss);
  bottom: var(--pad_s);
}
@media screen and (min-width: 1380px) {
  #pg_top {
    right: var(--pad_m);
  }
}
@media screen and (min-width: 660px) {
  #pg_top {
    bottom: 240px;
  }
}
@media screen and (min-width: 660px) {
  #pg_top {
    transition: opacity var(--hover_time);
  }
  #pg_top:hover {
    opacity: 0.6;
  }
}
#pg_top svg {
  fill: var(--color_base);
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.3)) drop-shadow(0 0 4px rgba(255, 255, 255, 0.6));
}
#pg_top .pgt_sp {
  width: 36px;
  height: 40px;
}
@media screen and (min-width: 660px) {
  #pg_top .pgt_sp {
    display: none;
  }
}
#pg_top .pgt_pc {
  width: 12px;
  height: 90px;
}
@media screen and (max-width: 659px) {
  #pg_top .pgt_pc {
    display: none;
  }
}

/***** ローディング *****/
#loading {
  z-index: 50000000;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#loading > svg {
  width: 258px;
  height: 41px;
  max-width: 80%;
}
#loading > div {
  background-color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#loading > div svg {
  width: 430px;
  height: 126px;
}
#loading.load_end {
  -webkit-animation: loadinganimation 1500ms ease-out forwards;
  animation: loadinganimation 1500ms ease-out forwards;
}
@keyframes loadinganimation {
  5% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    z-index: -1;
  }
}
#loading.load_end > div {
  -webkit-animation: loadinganimation_inner 1500ms ease-out forwards;
  animation: loadinganimation_inner 1500ms ease-out forwards;
}
@keyframes loadinganimation_inner {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    z-index: -1;
  }
}
/***** 改行 *****/
@media screen and (min-width: 660px) {
  .sp_br {
    display: none;
  }
}
@media screen and (max-width: 659px) {
  .pc_br {
    display: none;
  }
}
/***** ※ *****/
.annotation {
  font-size: 1.2rem;
}
.annotation::before {
  content: "\203b";
}

/***** スクロール効果 *****/
/*下から上にフェードイン*/
.fade {
  opacity: 0;
  transform: translateY(50px);
}

/*フェードイン*/
.fade_op {
  opacity: 0;
}

/*左から右に表示*/
.fade_lr::after {
  width: 100% !important;
}

/*タイプライター*/
.typewriter span {
  opacity: 0;
}

/*背景左から右に表示*/
.bg_stretch_l::before {
  width: 0 !important;
  opacity: 0 !important;
}

/*背景左から右に表示*/
.bg_stretch_r::before {
  width: 0 !important;
  opacity: 0 !important;
}

/***** タイトル装飾 *****/
.typewriter {
  font-family: "Lato", sans-serif;
  font-weight: 100;
}

/***** NO IMAGE *****/
.no_img {
  background-color: var(--color_pale);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.column_right .no_img {
  font-size: 1.2rem;
}

/***** タイトル *****/
#top article h2,
.page-template-page-thanks #ourservice h2 {
  margin-bottom: 2em;
  font-weight: 700;
  font-size: 2.6rem;
}
#top article h2::after,
.page-template-page-thanks #ourservice h2::after {
  content: "";
  display: block;
  background-color: var(--color_point);
  width: 1em;
  height: 5px;
  margin-top: 1.2em;
}
@media screen and (min-width: 660px) {
  #top article h2,
  .page-template-page-thanks #ourservice h2 {
    font-size: 2.6rem;
  }
}
#top article h2 span,
.page-template-page-thanks #ourservice h2 span {
  display: block;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
}
@media screen and (min-width: 660px) {
  #top article h2 span,
  .page-template-page-thanks #ourservice h2 span {
    font-size: 1.6rem;
  }
}

#top_about h2,
#top_Shopify h2,
#top_news h2,
#top_blog h2,
#top_works h2,
.page-template-page-thanks #ourservice h2 {
  text-align: center;
}
#top_about h2::after,
#top_Shopify h2::after,
#top_news h2::after,
#top_blog h2::after,
#top_works h2::after,
.page-template-page-thanks #ourservice h2::after {
  margin-left: auto;
  margin-right: auto;
}
#top_about .typewriter,
#top_Shopify .typewriter,
#top_news .typewriter,
#top_blog .typewriter,
#top_works .typewriter,
.page-template-page-thanks #ourservice .typewriter {
  text-align: center;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(40%);
}

/***** ボタン *****/
/*大*/
#top_about > a,
#top_news > a,
#top_blog > a,
#top_works > a,
#top_company > a,
.posts_list > a,
.posts_list_c2 > a,
.archive_other_list > a,
.related_list > a,
.contents_works > a,
.works_interview > a,
#manag_team > a,
#contact_page form input[type="submit"],
#contact_page form input[type="button"],
#contents_inner_contact form input[type="submit"],
#contents_inner_contact form input[type="button"],
.youtube_list > a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 200px;
  height: 60px;
  background-color: var(--color_dark);
  color: #ffffff;
  font-size: 1.2rem;
  font-family: "Lato", var(--font_base);
  font-weight: 500;
  position: relative;
  z-index: 0;
}
#top_about > a::before,
#top_news > a::before,
#top_blog > a::before,
#top_works > a::before,
#top_company > a::before,
.posts_list > a::before,
.posts_list_c2 > a::before,
.archive_other_list > a::before,
.related_list > a::before,
.contents_works > a::before,
.works_interview > a::before,
#manag_team > a::before,
#contact_page form input[type="submit"]::before,
#contact_page form input[type="button"]::before,
#contents_inner_contact form input[type="submit"]::before,
#contents_inner_contact form input[type="button"]::before,
.youtube_list > a::before {
  transition: all var(--hover_time);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  background-color: var(--color_point);
  z-index: -1;
}
#top_about > a::after,
#top_news > a::after,
#top_blog > a::after,
#top_works > a::after,
#top_company > a::after,
.posts_list > a::after,
.posts_list_c2 > a::after,
.archive_other_list > a::after,
.related_list > a::after,
.contents_works > a::after,
.works_interview > a::after,
#manag_team > a::after,
#contact_page form input[type="submit"]::after,
#contact_page form input[type="button"]::after,
#contents_inner_contact form input[type="submit"]::after,
#contents_inner_contact form input[type="button"]::after,
.youtube_list > a::after {
  margin-left: 0.5em;
  font-family: icon;
  font-size: 25px;
}
@media screen and (min-width: 660px) {
  #top_about > a:hover::before,
  #top_news > a:hover::before,
  #top_blog > a:hover::before,
  #top_works > a:hover::before,
  #top_company > a:hover::before,
  .posts_list > a:hover::before,
  .posts_list_c2 > a:hover::before,
  .archive_other_list > a:hover::before,
  .related_list > a:hover::before,
  .contents_works > a:hover::before,
  .works_interview > a:hover::before,
  #manag_team > a:hover::before,
  #contact_page form input[type="submit"]:hover::before,
  #contact_page form input[type="button"]:hover::before,
  #contents_inner_contact form input[type="submit"]:hover::before,
  #contents_inner_contact form input[type="button"]:hover::before,
  .youtube_list > a:hover::before {
    width: 100%;
  }
}

/*アイコン 三点リーダー*/
#top_about > a::after,
#top_news > a::after,
#top_blog > a::after,
#top_works > a::after,
#top_company > a::after,
.contents_works > a::after {
  content: "\2026";
}

/*アイコン　インデックス*/
.posts_list > a::after,
.posts_list_c2 > a::after,
.archive_other_list > a::after,
.related_list > a::after,
.works_interview > a::after,
.youtube_list > a::after {
  content: "\2261";
}

/* 四角 */
#ourservice > ul > li > a,
#top_Shopify > ul > li > a > div > span,
#fulfil_mylogi > a > div > span,
.plan_addition > dd > a,
#top_youtube > .youtube_txt > a,
#ecsite_plan .plan_agency dd > a,
#ecsite_plan .plan_team dd > a,
#ec_management .plan_team dd > a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  font-family: "Lato", var(--font_base);
  position: relative;
  z-index: 0;
}

#ourservice > ul > li > a::before,
.plan_addition > dd > a::before,
#top_youtube > .youtube_txt > a::before,
#ecsite_plan .plan_agency dd > a::before,
#ecsite_plan .plan_team dd > a::before,
#ec_management .plan_team dd > a::before {
  transition: all var(--hover_time);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  z-index: -1;
}
@media screen and (min-width: 660px) {
  #ourservice > ul > li > a:hover::before,
  .plan_addition > dd > a:hover::before,
  #top_youtube > .youtube_txt > a:hover::before,
  #ecsite_plan .plan_agency dd > a:hover::before,
  #ecsite_plan .plan_team dd > a:hover::before,
  #ec_management .plan_team dd > a:hover::before {
    width: 100%;
  }
}

/*アイコン 別ウィンドウ*/
#top_youtube > .youtube_txt > a::after {
  content: "\21b1";
  font-family: "icon";
  margin-left: 1em;
}

/*グレイ*/
#ourservice > ul > li > a,
#top_Shopify > ul > li > a > div > span,
#fulfil_mylogi > a > div > span,
.plan_addition > dd > a,
#ecsite_plan .plan_agency dd > a {
  background-color: var(--color_dark);
  color: #ffffff;
}

#ourservice > ul > li > a::before,
.plan_addition > dd > a::before,
#ecsite_plan .plan_agency dd > a::before {
  background-color: var(--color_point);
}

/*グラデーション*/
#ecsite_plan .plan_team dd > a,
#ec_management .plan_team dd > a {
  background: #a6c0fe;
  background: linear-gradient(90deg, #a6c0fe 0%, #f68084 100%);
  color: #ffffff;
}
#ecsite_plan .plan_team dd > a::before,
#ec_management .plan_team dd > a::before {
  background-color: #ff6469;
}

/*白*/
#top_youtube > .youtube_txt > a {
  box-sizing: border-box;
  border: 1px solid #ffffff;
  background-color: #ffffff;
  color: var(--color_dark);
}

@media screen and (min-width: 660px) {
  #top_youtube > .youtube_txt > a:hover {
    color: #ffffff;
  }
}
#top_youtube > .youtube_txt > a::before {
  background-color: var(--color_dark);
}

/*中*/
.plan_addition > dd > a,
#ecsite_plan .plan_agency dd > a,
#ecsite_plan .plan_team dd > a,
#ec_management .plan_team dd > a {
  width: 140px;
  height: 35px;
  font-size: 1.2rem;
}

/*小*/
#ourservice > ul > li > a,
#top_Shopify > ul > li > a > div > span,
#fulfil_mylogi > a > div > span,
#top_youtube > .youtube_txt > a {
  width: 122px;
  height: 22px;
  font-size: 1rem;
}

/*角丸*/
.contents_contact > div > a,
#shopify_kv > a,
.shopify_contact > a,
#shopify_plus > a,
#shopify_plan .plan_campaign > div > a,
#ec_site #ec_site_kv > a,
#ec_management #ec_management_kv > a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 1.4rem;
}

@media screen and (min-width: 660px) {
  .contents_contact > div > a,
  #shopify_kv > a,
  .shopify_contact > a,
  #shopify_plus > a,
  #shopify_plan .plan_campaign > div > a {
    transition: opacity var(--hover_time);
  }
  .contents_contact > div > a:hover,
  #shopify_kv > a:hover,
  .shopify_contact > a:hover,
  #shopify_plus > a:hover,
  #shopify_plan .plan_campaign > div > a:hover {
    opacity: 0.6;
  }
}

/*特大*/
#shopify_plan .plan_campaign > div > a {
  color: var(--color_base);
  background-color: var(--color_plan_02);
  border-radius: 35px;
  width: 100%;
  max-width: 360px;
  height: 70px;
}
@media screen and (min-width: 660px) {
  #shopify_plan .plan_campaign > div > a {
    height: 50px;
  }
}

/*特大2*/
#ec_site #ec_site_kv > a,
#ec_management #ec_management_kv > a {
  color: #ffffff;
  border-radius: 35px;
  width: 260px;
  height: 55px;
}
@media screen and (min-width: 660px) {
  #ec_site #ec_site_kv > a,
  #ec_management #ec_management_kv > a {
    width: 280px;
    height: 70px;
    transition: background-color var(--hover_time);
  }
}

#ec_site #ec_site_kv > a {
  background-color: var(--color_point_15);
}
@media screen and (min-width: 660px) {
  #ec_site #ec_site_kv > a:hover {
    background-color: var(--color_point_20);
  }
}

#ec_management #ec_management_kv > a {
  background-color: var(--color_point_07);
}
@media screen and (min-width: 660px) {
  #ec_management #ec_management_kv > a:hover {
    background-color: var(--color_point_19);
  }
}

/*大*/
#shopify_kv > a,
#shopify_plus > a {
  border-radius: 25px;
  width: 240px;
  height: 50px;
}

#shopify_kv > a {
  color: #ffffff;
  background-color: var(--color_point);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

#shopify_plus > a {
  color: var(--color_base);
  background: #ffff55;
  background: -moz-linear-gradient(left, #ffff55 0%, #90ffe1 100%);
  background: -webkit-linear-gradient(left, #ffff55 0%, #90ffe1 100%);
  background: linear-gradient(to right, #ffff55 0%, #90ffe1 100%);
}

/*小*/
.contents_contact > div > a,
.shopify_contact > a {
  border-radius: 20px;
  width: 200px;
  height: 40px;
  color: var(--color_base);
  background-color: var(--color_point_04);
}

/*問い合わせアイコン*/
.contents_contact > div > a::before,
.shopify_contact > a::before,
#ec_site #ec_site_kv > a::before,
#ec_management #ec_management_kv > a::before {
  content: "\2709";
  font-family: "icon";
  font-weight: normal;
  font-size: 20px;
  margin-right: 0.5em;
}

/***** スワイパー *****/
.sw_prev,
.sw_next {
  font-family: "icon";
  cursor: pointer;
  line-height: 1;
  font-size: 40px;
}
@media screen and (min-width: 1200px) {
  .sw_prev,
  .sw_next {
    font-size: 63px;
  }
}

.sw_btn_area {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--pad_s);
}
@media screen and (min-width: 660px) {
  .sw_btn_area {
    justify-content: flex-end;
  }
}
.sw_btn_area > *:not(:last-child) {
  margin-right: var(--pad_ss);
}

/***** ロゴ関連 *****/
.logo_art_s_color {
  width: 30px;
  height: 35px;
}
@media screen and (min-width: 660px) {
  .logo_art_s_color {
    width: 54px;
    height: 64px;
  }
}

@media screen and (min-width: 660px) {
  #ecsite .shopify_makeshop .logo_art_s_color {
    width: 46px;
    height: 55px;
  }
}

.logo_shopify {
  width: 102px;
  height: 29px;
}
@media screen and (min-width: 660px) {
  .logo_shopify {
    width: 180px;
    height: 52px;
  }
}

@media screen and (min-width: 660px) {
  #shopify_success .logo_shopify {
    width: 122px;
    height: 35px;
  }
}

@media screen and (min-width: 660px) {
  #ecsite .shopify_makeshop .logo_shopify {
    width: 127px;
    height: 41px;
  }
}

.logo_mylogi {
  width: 113px;
  height: 24px;
}
@media screen and (min-width: 660px) {
  .logo_mylogi {
    width: 200px;
    height: 44px;
  }
}

.logo_makeshop {
  width: 100px;
  height: auto;
}
@media screen and (min-width: 660px) {
  .logo_makeshop {
    width: 125px;
  }
}

.logo_rakuten {
  width: 83px;
  height: 25px;
}
@media screen and (min-width: 660px) {
  .logo_rakuten {
    width: 114px;
    height: 34px;
  }
}

.logo_amazon {
  height: auto;
}
@media screen and (max-width: 659px) {
  .logo_amazon {
    width: 100px;
  }
}

.logo_yahooshopping {
  width: 149px;
  height: 23px;
}
@media screen and (min-width: 660px) {
  .logo_yahooshopping {
    width: 194px;
    height: 30px;
  }
}

.logo_times_art_color {
  width: 167px;
  height: 26px;
}

#top_about > div,
#about_service .about_service_logo,
#ecsite .shopify_makeshop > div,
#shopify_success > div {
  font-family: "icon";
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--pad_m);
}
@media screen and (min-width: 660px) {
  #top_about > div,
  #about_service .about_service_logo,
  #ecsite .shopify_makeshop > div,
  #shopify_success > div {
    margin-bottom: var(--pad_ll);
  }
}

#ecsite .shopify_makeshop > div,
#shopify_success > div {
  margin-left: auto;
  margin-right: auto;
}

#ecsite .shopify_makeshop > div {
  max-width: 400px;
}

#shopify_success > div {
  max-width: 343px;
}

/***** サービス内容リスト *****/
#ourservice {
  position: relative;
  padding-left: var(--pad_ss);
  padding-right: var(--pad_ss);
  margin-left: auto;
  margin-right: auto;
  max-width: var(--mw_l);
  box-sizing: border-box;
  padding-top: var(--pad_xxl);
  padding-bottom: var(--pad_xxl);
}
@media screen and (min-width: 660px) {
  #ourservice {
    padding-left: var(--pad_m);
    padding-right: var(--pad_m);
  }
}
@media screen and (min-width: 1080px) {
  #ourservice {
    padding-left: var(--pad_xxl_sw);
    padding-right: var(--pad_xxl_sw);
  }
}
@media screen and (min-width: 660px) {
  #ourservice {
    padding-top: var(--pad_xxxl);
    padding-bottom: var(--pad_xxxl);
  }
}
#ourservice > ul {
  counter-reset: ourservice;
}
#ourservice > ul > li {
  counter-increment: ourservice;
}
#ourservice > ul > li > span {
  overflow: hidden;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 55.7%;
  position: relative;
  margin-bottom: var(--pad_xxs);
}
#ourservice > ul > li > span img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#ourservice > ul > li > span img {
  position: absolute;
  top: 0;
  left: 0;
}
#ourservice > ul > li h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 700;
  font-size: 2.2rem;
}
@media screen and (min-width: 660px) {
  #ourservice > ul > li h3 {
    font-size: 2.8rem;
  }
}
#ourservice > ul > li h3::before {
  content: counter(ourservice, decimal-leading-zero) ".";
  font-family: "Lato", sans-serif;
  font-weight: 600;
  margin-right: 0.3em;
  font-size: 1.4rem;
}
@media screen and (min-width: 660px) {
  #ourservice > ul > li h3::before {
    font-size: 1.6rem;
  }
}
#ourservice > ul > li > p {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  margin-bottom: 1em;
}
@media screen and (min-width: 660px) {
  #ourservice > ul > li > p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 659px) {
  #ourservice > ul > li > a {
    margin: 0 auto;
  }
}
@media screen and (min-width: 660px) {
  #ourservice > ul > li > a {
    margin-top: auto;
  }
}

#top #ourservice,
#about #ourservice {
  position: relative;
}
#top #ourservice::before,
#about #ourservice::before {
  content: "";
  z-index: -1;
  background-color: var(--color_bg_gl);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 70%;
  opacity: 1;
  box-shadow: 25vw 0 var(--color_bg_gl), 50vw 0 var(--color_bg_gl);
  transition: width 1s ease-in-out, opacity 0.5s 0.5s;
}
@media screen and (min-width: 660px) {
  #top #ourservice > ul,
  #about #ourservice > ul {
    display: flex;
    flex-wrap: wrap;
    margin: calc(-1 * var(--pad_ss));
  }
}
@media screen and (max-width: 659px) {
  #top #ourservice > ul > li:not(:last-child),
  #about #ourservice > ul > li:not(:last-child) {
    margin-bottom: var(--pad_l);
  }
}
@media screen and (min-width: 660px) {
  #top #ourservice > ul > li,
  #about #ourservice > ul > li {
    width: calc(50% - (var(--pad_ss) * 2));
    margin: var(--pad_ss);
    display: flex;
    flex-direction: column;
  }
}

.page-template-page-thanks #ourservice {
  background-color: var(--color_bg_gl);
  box-shadow: 25vw 0 var(--color_bg_gl), 50vw 0 var(--color_bg_gl), -25vw 0 var(--color_bg_gl), -50vw 0 var(--color_bg_gl);
}
.page-template-page-thanks #ourservice > ul {
  max-width: 630px;
  margin: 0 auto;
}
@media screen and (min-width: 660px) {
  .page-template-page-thanks #ourservice > ul > li {
    text-align: center;
  }
}
.page-template-page-thanks #ourservice > ul > li:not(:last-child) {
  margin-bottom: var(--pad_m);
}
@media screen and (min-width: 660px) {
  .page-template-page-thanks #ourservice > ul > li:not(:last-child) {
    margin-bottom: var(--pad_ll);
  }
}
.page-template-page-thanks #ourservice > ul > li > a {
  margin: var(--pad_s) auto;
}
@media screen and (min-width: 660px) {
  .page-template-page-thanks #ourservice > ul > li > a {
    margin-top: var(--pad_l);
  }
}

/***** TOP Shopify構築・フルフィルメント ECが得意な物流システム mylogi *****/
#top_Shopify > ul > li:nth-child(odd) > a,
#fulfil_mylogi:nth-child(odd) > a {
  background-color: var(--color_bg_gl);
}
#top_Shopify > ul > li:nth-child(even) > a,
#fulfil_mylogi:nth-child(even) > a {
  background-color: var(--color_bg_gl_02);
}
#top_Shopify > ul > li > a,
#fulfil_mylogi > a {
  padding: var(--pad_l) var(--pad_ss);
  display: block;
  transition: all var(--hover_time);
}
@media screen and (min-width: 900px) {
  #top_Shopify > ul > li > a,
  #fulfil_mylogi > a {
    padding: var(--pad_ll) 5%;
    display: flex;
  }
  #top_Shopify > ul > li > a > *,
  #fulfil_mylogi > a > * {
    display: flex;
    padding-top: var(--pad_m);
    padding-bottom: var(--pad_m);
  }
}
#top_Shopify > ul > li > a > span,
#fulfil_mylogi > a > span {
  overflow: hidden;
}
@media screen and (max-width: 899px) {
  #top_Shopify > ul > li > a > span,
  #fulfil_mylogi > a > span {
    display: block;
    border-bottom: 1px solid currentColor;
    margin-bottom: var(--pad_s);
    padding-bottom: var(--pad_s);
  }
}
@media screen and (min-width: 900px) {
  #top_Shopify > ul > li > a > span,
  #fulfil_mylogi > a > span {
    width: 40%;
    border-right: 1px solid currentColor;
    margin-right: 5%;
    align-items: center;
  }
}
#top_Shopify > ul > li > a > span svg,
#fulfil_mylogi > a > span svg {
  width: 100%;
  height: 45px;
  fill: currentColor;
}
@media screen and (min-width: 900px) {
  #top_Shopify > ul > li > a > span svg,
  #fulfil_mylogi > a > span svg {
    height: 77px;
    box-sizing: border-box;
    padding: 0 10%;
  }
}
@media screen and (min-width: 900px) {
  #top_Shopify > ul > li > a > div,
  #fulfil_mylogi > a > div {
    width: 55%;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: center;
  }
}
#top_Shopify > ul > li > a > div h2,
#top_Shopify > ul > li > a > div h4,
#fulfil_mylogi > a > div h2,
#fulfil_mylogi > a > div h4 {
  font-weight: 700;
  margin-bottom: 0.3em;
  font-size: 2.2rem;
}
@media screen and (max-width: 899px) {
  #top_Shopify > ul > li > a > div h2,
  #top_Shopify > ul > li > a > div h4,
  #fulfil_mylogi > a > div h2,
  #fulfil_mylogi > a > div h4 {
    text-align: center;
  }
}
@media screen and (min-width: 900px) {
  #top_Shopify > ul > li > a > div h2,
  #top_Shopify > ul > li > a > div h4,
  #fulfil_mylogi > a > div h2,
  #fulfil_mylogi > a > div h4 {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 660px) {
  #top_Shopify > ul > li > a > div p,
  #fulfil_mylogi > a > div p {
    font-size: 1.4rem;
  }
}
#top_Shopify > ul > li > a > div > span,
#fulfil_mylogi > a > div > span {
  margin-top: var(--pad_m);
  transition: all var(--hover_time);
}
@media screen and (max-width: 899px) {
  #top_Shopify > ul > li > a > div > span,
  #fulfil_mylogi > a > div > span {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 660px) {
  #top_Shopify > ul > li > a:hover,
  #fulfil_mylogi > a:hover {
    background-color: var(--color_dark);
    color: #ffffff;
  }
  #top_Shopify > ul > li > a:hover > div > span,
  #fulfil_mylogi > a:hover > div > span {
    background-color: #ffffff;
    color: var(--color_dark);
  }
}

/***** LINEポップアップ表示機能用(門野追加) *****/
.line_icon {
  width: 18px;
}

.line_pc_popup {
  cursor: pointer;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
}

.overlay-open {
  overflow: hidden;
}

.line_popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}

.line_popup_img {
  width: 330px;
  height: auto;
}

.popup_PC img {
  width: 100%;
  height: auto;
}

/***** 問い合わせフォーム用(門野追加) *****/
#official_contact_form .error-message {
  color: red;
  text-align: center;
  order: 45;
}

/***** 20241103リニューアル後ヘッダー(門野追加) *****/
body > header {
  color: #333333;
  background: #ffffff;
  border-bottom: 1px solid #707070;
}
body > header #site_title .h_logo_full_color {
  display: block;
  width: 160px;
  height: 26px;
}
body > header.header_floating {
  background-color: #ffffff;
}
body > header > nav .menu li {
  color: #ffffff;
}
body > header > nav .menu > li a {
  justify-content: flex-start !important;
}
body > header:not(.header_floating) > nav .menu > li > .sub-menu > li .sub-menu {
  position: relative;
  transform: translate(0);
  padding: 0;
  justify-content: flex-end;
  gap: 20px;
}
body > header:not(.header_floating) > nav .menu > li > .sub-menu > li .sub-menu > li a {
  padding: 5px 0;
}
body > header > nav .menu > li > .sub-menu > li .sub-menu > li a:before,
body > footer div[class*="menu-"] .menu > li > .sub-menu > li .sub-menu > li a:before {
  content: "";
  background: url("https://art-trading.co.jp/manage/wp-content/uploads/2024/11/arrow_circle_right_white.svg");
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
}
body > header > nav .menu > li.menu-dot > a,
body > header > nav .menu > li.menu_ecblog_last > a,
body > header > nav .menu > li.menu_contact > a {
  display: none;
}
body > header > nav .menu > li.menu-dot a {
  font-size: 2rem;
  font-weight: 700;
  height: 45px;
}
.no-link-menu > a {
  pointer-events: none;
}
#side_info,
.h_btn_contact {
  display: none !important;
}
@media screen and (min-width: 1350px) {
  body > header > nav {
    width: 100% !important;
  }
  body > header:not(.header_floating) > nav .menu > li {
    position: relative;
    margin-right: 3.2rem !important;
    color: #333333;
  }
  body > header:not(.header_floating) > nav .menu > li > .sub-menu {
    flex-direction: column;
    margin-right: 0;
    min-width: 240px;
    width: max-content;
    padding: 15px 30px;
  }
  body > header:not(.header_floating) > nav .menu > li.menu_ecblog_last {
    color: #ffffff;
    background: #333333;
    width: 160px;
    margin-left: auto;
  }
  body > header:not(.header_floating) > nav .menu > li.menu_ecblog_last,
  body > header:not(.header_floating) > nav .menu > li:last-child,
  .sub-menu > li {
    margin-right: 0 !important;
  }
  body > header:not(.header_floating) > nav .menu > li > .sub-menu > li a {
    font-size: 14px !important;
    height: auto !important;
  }

  body > header:not(.header_floating) > nav .menu > li > .sub-menu > li > a {
    display: flex;
    padding: 15px 0;
  }
  body > header:not(.header_floating) > nav .menu > li.menu-dot > a {
    display: flex;
  }
  body > header > nav .menu > li.menu-dot > a,
  body > header > nav .menu > li.menu_ecblog_last > a,
  body > header > nav .menu > li.menu_contact > a {
    display: flex;
    height: 100%;
  }
  body > header.header_floating > nav .menu > li.menu-dot > a,
  body > header.header_floating > nav .menu > li.menu_ecblog_last > a,
  body > header.header_floating > nav .menu > li.menu_contact > a {
    display: none;
  }
  body > header:not(.header_floating) > nav .menu > li > .sub-menu > li .sub-menu {
    justify-content: flex-start;
  }
  body > header:not(.header_floating) > nav .menu > li > .sub-menu > li .sub-menu > li a {
    margin-bottom: 10px;
  }
  body > header:not(.header_floating) > nav .menu > li > a {
    justify-content: center !important;
    flex-direction: column;
    font-size: 14px !important;
    letter-spacing: 0.05em;
    line-height: 1;
    gap: 10px;
  }
  .menu_ecblog_last a:before,
  body > header:not(.header_floating) > nav .menu > li:last-child > a:before {
    font-size: 12px;
    letter-spacing: -0.04em;
  }
  .menu_ecblog_last a:before {
    content: "ECについて学べる";
  }
  body > header:not(.header_floating) > nav .menu > li:last-child > a:before {
    content: "ディレクター無料相談付き";
  }
}
@media screen and (max-width: 979px) {
  body > header #site_title .h_logo_full_color {
    width: 141px;
    height: 17px;
  }
}

/***** 20251002追加 *****/
:where(.rn) h2,
:where(.rn) h3,
:where(.rn) h4,
:where(.rn) h5 {
  font-weight: 700;
}
:where(.rn) h2 {
  font-size: 48px;
  line-height: 1.6;
}
:where(.rn) h3 {
  font-size: 42px;
  line-height: 1;
}
:where(.rn) h4 {
  font-size: 32px;
  line-height: 1;
}
:where(.rn) h5 {
  font-size: 20px;
  line-height: 1.6;
}
:where(.rn) p {
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 768px) {
  :where(.rn) p {
    font-size: 13px;
  }
}
:where(.rn) img {
  width: 100%;
  height: auto;
}

.section_white {
  color: var(--color-black);
  background: var(--color-white);
}
.section_black {
  color: var(--color-white);
  background: var(--color-black);
}
.section_red {
  color: var(--color-white);
  background: var(--color-red);
}
.section_gray {
  color: var(--color-black);
  background: var(--color-gray);
}

.link__button {
  color: var(--color-white);
  background: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 240px;
  height: 48px;
  padding: 4px 4px 4px 24px;
  border-radius: 24px;
}
.link__button_black {
  color: var(--color-black);
  background: var(--color-white);
}
.link__button_red {
  color: var(--color-red);
  background: var(--color-white);
}
.link__button_red-bg {
  color: var(--color-white);
  background: var(--color-red);
}
.link__button img {
  width: 40px;
  border-radius: 50%;
}
.link__button-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
}
.link__button-icon svg {
  width: 16px;
  height: 16px;
}
.link__button-icon svg path {
  stroke: var(--color-black);
}
.link__button-icon.red svg path {
  stroke: var(--color-red);
}

.fan_inner {
  display: flex;
}
.fan_left {
  flex: 1;
  position: relative;
  z-index: 1;
  height: 528px;
}
.fan_slide {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url("../img/common/top2025/fan_slide.jpg");
  background-repeat: repeat-x;
  background-size: 1584px 528px;
  animation-name: fan_slide;
  animation-duration: 15s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes fan_slide {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -1584px 0;
  }
}

.fan_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  width: 100%;
  height: 100%;
  background: #1d1d1d99;
  padding-left: calc(120 / 900 * 100%);
}
.fan_right {
  width: calc(54000vw / 1440);
  padding: 100px 48px 40px;
  display: flex;
  flex-direction: column;
}
.fan_right h4 {
  line-height: 1.5;
}
.fan_right p {
  color: #ffffffcc;
  margin-top: 20px;
}
.fan_right .link__button {
  margin-top: auto;
  margin-left: auto;
}
@media screen and (max-width: 1049px) {
  .fan_inner {
    flex-direction: column;
  }
  .fan_left {
    width: 100%;
    height: 292px;
  }
  .fan_slide {
    animation-duration: 15s;
  }
  .fan_content {
    gap: 30px;
    padding: 80px 20px;
  }
  .fan_right {
    width: 100%;
    padding: 80px 10px;
  }
  .fan_right h4 {
    font-size: 34px;
  }
  .fan_right h4,
  .fan_right p {
    padding: 0 10px;
  }
  .fan_right .link__button {
    margin-top: 60px;
  }
}

/* 20250914追加 */
/* 表示(メディアクエリによる分岐) */
@media (min-width: 768px) {
  .display_pc {
    display: block !important;
  }
  .display_sp {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .display_pc {
    display: none !important;
  }
  .display_sp {
    display: block !important;
  }
}

body.is-gnavi-opened {
  overflow: hidden;
}

.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.font-bold {
  font-weight: bold;
}

.com-inner {
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 1350px) {
  .com-inner {
    max-width: 1344px;
    padding: 0 72px;
  }
}
.com-inner-contents {
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .com-inner-contents {
    max-width: 1440px;
    padding: 0 48px;
  }
}

.com-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  background-color: var(--color-white);
  padding: 19px 24px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: bold;
}
@media (max-width: 1349px) {
  .com-btn {
    width: 100%;
  }
}
@media (min-width: 1350px) {
  .com-btn {
    min-width: 240px;
  }
}

.com-btn-red {
  background-color: var(--color-red);
  color: var(--color-white);
}
.com-btn::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: currentColor;
  border-radius: 50%;
}

.com-snslist {
  display: flex;
  align-items: center;
  gap: 22px;
}
.com-snslist li a {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
.com-snslist li a > img {
  width: auto;
}

@media (min-width: 1350px) {
  .menu-item-has-children > a {
    pointer-events: none;
  }
}
.com-accordion-always > a {
  display: flex;
  align-items: center;
  gap: 1em;
}
.com-accordion-always > a::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 1px var(--color-white);
  border-right: solid 1px var(--color-white);
  transform: rotate(135deg);
}
.com-accordion-always > a.is-opened::after {
  transform: rotate(-45deg);
}
.com-accordion-always .sub-menu {
  display: none;
}
@media (max-width: 1349px) {
  .com-accordion-always > a {
    justify-content: space-between;
  }
  .com-accordion > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .com-accordion > a::after {
    content: "";
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 1px var(--color-white);
    border-right: solid 1px var(--color-white);
    transform: rotate(135deg);
  }
  .com-accordion > a.is-opened::after {
    transform: rotate(-45deg);
  }
  .com-accordion .sub-menu {
    display: none;
  }
}

@media screen and (min-width: 1350px) {
  .menu_ecblog_last a:before {
    content: "";
    display: none;
  }
}
@media screen and (min-width: 1350px) {
  body > header:not(.header_floating) > nav .menu > li:last-child > a:before {
    content: "";
    display: none;
  }
}
@media screen and (min-width: 1350px) {
  body > header:not(.header_floating) > nav {
    flex: 1;
    position: relative;
    top: auto;
    width: auto !important;
  }
}
body > header > button {
  position: relative;
  right: auto;
}
@media screen and (min-width: 1350px) {
  body > header:not(.header_floating) > button {
    opacity: 1;
    pointer-events: all;
  }
}
body > header {
  border-bottom: none;
}
@media screen and (min-width: 1350px) {
  body > header > button {
    width: 132px;
    height: 100%;
  }
  body > header > button::before,
  body > header > button::after,
  body > header > button span {
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
  }
}

.gnavi {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  display: none;
  pointer-events: none;
  opacity: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-black);
  overflow-y: auto;
}
.gnavi.is-gnavi-opened {
  display: block;
  pointer-events: all;
  opacity: 1;
  animation: fadeIn 0.25s ease-out forwards;
}

.gnavi__inner {
}
@media (max-width: 1349px) {
  .gnavi__inner {
    padding: 70px 20px 50px;
  }
}
@media (min-width: 1350px) {
  .gnavi__inner {
    display: flex;
    width: 100%;
    height: 100vh;
  }
}

.gnavi__btn-close {
  position: absolute;
  top: 22px;
  right: 20px;
  width: 24px;
  height: 23px;
}
@media (min-width: 1350px) {
  .gnavi__btn-close {
    position: absolute;
    top: 22px;
    right: 54px;
    width: 24px;
    height: 23px;
  }
}

.gnavi__imgs {
}
@media (max-width: 1349px) {
  .gnavi__imgs {
    display: none;
  }
}
@media (min-width: 1350px) {
  .gnavi__imgs {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: calc(440 / 1440 * 100vw);
    height: 100%;
  }
}
.gnavi__img {
  flex: 1;
  width: 100%;
  height: calc(100% / 4);
}
.gnavi__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gnavi__logo {
  position: absolute;
  top: 32px;
  left: 48px;
  width: 200px;
  fill: var(--color-white);
}

.gnavi__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 1349px) {
}
@media (min-width: 1350px) {
  .gnavi__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 80px;
    padding: 108px 48px 48px 80px;
  }
}

.gnavi__body-head {
  color: var(--color-white);
}
@media (max-width: 1349px) {
  .gnavi__body-head {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}
@media (min-width: 1350px) {
  .gnavi__body-head {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 80px;
  }
  .gnavi__body-head .col-left {
    grid-area: 1 / 1 / 2 / 2;
  }
  .gnavi__body-head .col-right {
    grid-area: 1 / 2 / 2 / 3;
  }
}

.gnavi__body-head .menu {
  display: flex;
}
@media (max-width: 1349px) {
  .gnavi__body-head .menu {
    flex-direction: column;
  }
}
@media (min-width: 1350px) {
  .gnavi__body-head .menu {
    flex-wrap: wrap;
    gap: 80px;
  }
}

.gnavi__body-head .menu > .menu-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 1349px) {
  .gnavi__body-head .menu > .menu-item:not(:first-child) {
    margin-top: 24px;
  }
  .gnavi__body-head .menu > .menu-item > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }
}
@media (min-width: 1350px) {
  .gnavi__body-head .menu > .menu-item {
    gap: 48px;
    width: calc(calc(100% - 80px) / 2);
  }
}

.gnavi__body-head .menu .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 1349px) {
  .gnavi__body-head .menu .sub-menu {
    margin-top: 24px;
  }
}
@media (min-width: 1350px) {
  .gnavi__body-head .menu .sub-menu {
    gap: 27px;
  }
}
@media (min-width: 1350px) {
  .gnavi__body-head .col-right .menu {
    gap: 30px;
  }
}
.gnavi__body-head .col-right .menu-item {
  width: 100%;
}
.gnavi__body-head .menu .sub-menu .sub-menu {
  gap: 20px;
  margin-top: 20px;
  margin-left: 0.5em;
}
.gnavi__body-head .menu .sub-menu .sub-menu > li a {
  display: flex;
  align-items: center;
  line-height: 1.2;
}
.gnavi__body-head .menu .sub-menu .sub-menu > li a:before {
  content: "";
  background: url(https://art-trading.co.jp/manage/wp-content/uploads/2024/11/arrow_circle_right_white.svg) no-repeat center;
  background-size: contain;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

.gnavi__body-bottom {
  display: flex;
  gap: 40px;
}
@media (max-width: 1349px) {
  .gnavi__body-bottom {
    flex-direction: column;
    gap: 40px;
  }
}
@media (min-width: 1350px) {
  .gnavi__body-bottom {
    display: flex;
    justify-content: space-between;
    gap: 40px;
  }
}

.gnavi__sns {
  display: flex;
  align-items: center;
  gap: 22px;
}
.gnavi__btns {
  display: flex;
  gap: 20px;
}
@media (max-width: 1349px) {
  .gnavi__btns {
    flex-direction: column;
  }
}
@media (min-width: 1350px) {
  .gnavi__btns {
    align-items: center;
    gap: 20px;
  }
}

.footer {
  position: relative;
  z-index: 1;
  background-color: var(--color-black);
  color: #ffffff;
  padding-top: 120px;
  padding-bottom: 180px;
}
@media (min-width: 1350px) {
  .footer {
    padding-top: 150px;
    padding-bottom: 19px;
  }
}
@media (max-width: 1349px) {
  .footer__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}
@media (min-width: 1350px) {
  .footer__inner {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(2, auto);
    grid-column-gap: 80px;
    grid-row-gap: 375px;
  }
}
.footer__catch {
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 950px;
  max-height: 100%;
}
.footer__catch > svg {
  width: 100%;
  height: auto;
}
@media (max-width: 1349px) {
  .footer__catch {
    width: 100%;
  }
}

.footer__head {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1350px) {
  .footer__head {
    grid-area: 1 / 1 / 3 / 2;
  }
}
.footer__body {
  display: flex;
  gap: 30px;
  line-height: 1;
}
@media (max-width: 1349px) {
  .footer__body {
    flex-direction: column;
  }
}
@media (min-width: 1350px) {
  .footer__body {
    grid-area: 1 / 2 / 2 / 3;
    gap: 80px;
  }
}
@media (min-width: 1350px) {
  .footer__bottom {
    grid-area: 2 / 2 / 3 / 3;
  }
}

.footer__logo svg {
  width: 200px;
  height: 24px;
}
.footer__branch {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-transform: uppercase;
}
.footer__branch .title {
  font-size: 16px;
  font-weight: 700;
}
.footer__branch .address {
  margin-top: 1em;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.footer__body .menu > .menu-item {
  display: flex;
  flex-direction: column;
  /* gap: 30px; */
}
@media (min-width: 1350px) {
  .footer__body .menu > .menu-item {
    gap: 56px;
  }
}

.footer__body .menu > .menu-item > a {
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 1349px) {
  .footer__body .menu > .menu-item > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }
}

@media (max-width: 1349px) {
  .footer__body .sub-menu {
    margin-top: 30px;
  }
}

.footer__body .sub-menu > li:not(:first-child) {
  margin-top: 15px;
}
@media (min-width: 1350px) {
  .footer__body .sub-menu > li:not(:first-child) {
    margin-top: 27px;
  }
}

.footer__body .sub-menu > .menu-item > a {
  font-size: 14px;
  font-weight: 500;
}
.footer__body .sub-menu > .menu-item .sub-menu {
  margin-top: 27px;
  margin-left: 0.5em;
}
.footer__body .sub-menu .sub-menu > li a {
  display: flex;
  align-items: center;
  line-height: 1.2;
}
.footer__body .sub-menu .sub-menu > li a:before {
  content: "";
  background: url(https://art-trading.co.jp/manage/wp-content/uploads/2024/11/arrow_circle_right_white.svg) no-repeat center;
  background-size: contain;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

.footer__body .col-left .menu {
  display: flex;
  gap: 30px;
}
@media (max-width: 1349px) {
  .footer__body .col-left .menu {
    flex-direction: column;
  }
}
@media (min-width: 1350px) {
  .footer__body .col-left .menu {
    gap: 80px;
  }
}

.footer__body .col-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1350px) {
  .footer__body .col-right {
    gap: 56px;
  }
}

.footer__body .col-right .menu {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 1350px) {
  .footer__body .col-right .menu {
    gap: 36px;
  }
}
.footer__body .col-right .menu-sub {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.footer__body .col-right .menu-sub > a {
  font-size: 14px;
  font-weight: 500;
}

.footer__bottom {
  place-items: flex-end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}
@media (max-width: 1349px) {
  .footer__bottom {
    padding-top: 20px;
  }
}

.footer__bottom .footer__marklist {
  display: flex;
  gap: 10px;
}
.footer__bottom .footer__marklist > li {
  width: 45px;
}
.footer__bottom .footer__marklist > li > img {
  width: 100%;
}
.footer__bottom > small {
  font-size: 12px;
  font-weight: 500;
  text-align: right;
}

/* contents__header */
.contents__header {
  margin-top: 150px;
}
.contents__header .com-inner {
  position: relative;
}
.contents__header-title-jp {
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-red);
}
.contents__header-title-jp::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background-color: currentColor;
}

.contents__header-title-en {
  margin-top: 48px;
  font-size: 88px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .contents__header-title-en {
    margin-top: 48px;
    font-size: 60px;
  }
}

.contents__header-kv {
  display: block;
  width: 100%;
  margin-top: 80px;
}
.contents__header-breadcrumbs {
  position: absolute;
  top: 0;
  right: 0;
}

/* common */
.com-section {
  margin-top: -55px;
  padding-top: 55px;
}
@media (min-width: 1350px) {
  .com-section {
    margin-top: -120px;
    padding-top: 120px;
  }
}

/* about */
.about__main {
  margin-top: 109px;
}
@media (max-width: 767px) {
  .about__main {
    margin-top: 58px;
  }
}
.about__main-inner {
}
@media (min-width: 768px) {
  .about__main-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: calc(72 / 1440 * 100%);
  }
}

.about__nav {
  position: sticky;
  top: 100px;
  left: 0;
  width: 180px;
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .about__nav {
    display: none;
  }
}

.about__nav__title {
  font-size: 15px;
  font-weight: 700;
}
.about__nav__list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 13px;
}

.about__body {
  padding-bottom: 150px;
}
@media (min-width: 768px) {
  .about__body {
    flex: 1;
    padding-right: calc(72 / 1344 * 100%);
  }
}

.about__section + .about__section {
  margin-top: 150px;
}

.about__section-title {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 767px) {
  .about__section-title {
    gap: 40px;
  }
}

.about__section-title-en {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .about__section-title-en {
    font-size: 12px;
  }
}
.about__section-title-jp {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-red);
}
@media (min-width: 768px) {
  .about__section-title-jp- {
    margin-left: -0.6em;
  }
}
@media (max-width: 767px) {
  .about__section-title-jp {
    font-size: 34px;
  }
}

.about__section-text {
  margin-top: 60px;
  line-height: 2.2;
}

.about__section-point {
  margin-top: 120px;
  padding-top: 20px;
  border-top: 1px solid currentColor;
}
@media (max-width: 768px) {
  .about__section-point {
    margin-top: 100px;
  }
}

.section-point__title {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 768px) {
  .section-point__title {
    gap: 10px;
  }
}

.section-point__title-en {
  padding: 4px 10px 1px;
  background-color: var(--color-red);
  border-radius: 4px;
  font-size: 16px;
  line-height: 1;
  color: var(--color-white);
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .section-point__title-en {
    font-size: 12px;
  }
}
.section-point__title-jp {
  font-size: 14px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .section-point__title-jp {
    font-size: 13px;
  }
}

.about__section-list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 768px) {
  .about__section-list {
    gap: 60px;
  }
}

.about__section-item {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 768px) {
  .about__section-item {
    flex-direction: column;
    gap: 50px;
  }
}

@media (min-width: 769px) {
  .about__section-item.reverse {
    flex-direction: row-reverse;
  }
}

.about__section-item-img {
  overflow: hidden;
  display: grid;
  place-items: center;
  gap: 30px;
  width: calc(480 / 1020 * 100%);
  background: #1d1d1d08;
  border-radius: 4px;
}
@media (min-width: 769px) {
  .about__section-item-img {
    min-height: 280px;
  }
}
@media (max-width: 768px) {
  .about__section-item-img {
    width: 100%;
    aspect-ratio: 350/204;
  }
}

.about__section-item-img > * {
  width: 100%;
}

.about__section-item-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 768px) {
  .about__section-item-body {
    gap: 10px;
  }
}

.about__section-item-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
.about__section-item-message {
  max-width: 385px;
  align-self: center;
}
.about__section-item-text {
  line-height: 2;
}
.about__section-item-text p + p {
  margin-top: 2em;
}

.about__section-btns {
  margin-top: 40px;
}
@media (min-width: 769px) {
  .about__section-btns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 74px;
    grid-row-gap: 0px;
    margin-top: 72px;
  }
}
@media (max-width: 768px) {
  .about__section-btns {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

.about__section-btns .link__button {
  width: 100%;
}

.about__section01-service {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 73px;
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(90deg, #857b09 0%, #beb874 100%);
  border-radius: 4px;
}
@media (max-width: 768px) {
  .about__section01-service {
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
    padding: 20px;
  }
}
@media (min-width: 769px) {
  .about__section01-service {
    align-items: center;
    gap: calc(73 / 1024 * 100%);
    margin-top: 60px;
    padding: 40px;
  }
}
.about__section01-service::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  z-index: -1;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background-color: #fff;
  border-radius: 3px;
}
.about__section01-service__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
@media (min-width: 769px) {
  .about__section01-service__header {
    gap: 30px;
    width: calc(340 / 944 * 100%);
  }
}
@media (max-width: 768px) {
  .about__section01-service__header {
    gap: 20px;
  }
}
.about__section01-service__title {
  background: linear-gradient(90deg, #857b09 0%, #beb874 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
.about__section01-service__text {
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 1px;
}
.about__section01-service__list {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px 7px;
}

.about__section01-service__list li {
  display: grid;
  place-items: center;
  background: #1d1d1d0f;
  padding: 32px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .about__section01-service__list li {
    padding: 20px;
    font-size: 13px;
  }
}

.about__section03-difference {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 60px;
  padding: 60px;
  background: linear-gradient(90deg, #857b09 0%, #beb874 100%);
  border-radius: 4px;
}
@media (max-width: 768px) {
  .about__section03-difference {
    margin-top: 40px;
    padding: 30px 20px;
  }
}

.about__section03-difference::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  z-index: -1;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background-color: #fff;
  border-radius: 3px;
}
.about__section03-difference__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
.about__section03-difference__title {
  background: linear-gradient(90deg, #857b09 0%, #beb874 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
.about__section03-difference__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.about__section03-difference__list li {
  display: flex;
  align-items: baseline;
  gap: 0.5em;
  font-size: 15px;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}
@media (max-width: 768px) {
  .about__section03-difference__list li {
    padding-bottom: 10px;
  }
}

/* mvv */
.about__section .mvv__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 140px;
  margin-top: 60px;
  letter-spacing: 1px;
  text-align: center;
}
.about__section .mvv__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.about__section .mvv__item + .mvv__item::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background-color: currentColor;
}
.about__section .mvv__item-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.about__section .mvv__item-title-en {
  font-size: 20px;
}
.about__section .mvv__item-title-jp {
  background: linear-gradient(90deg, #857b09 0%, #beb874 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 768px) {
  .about__section .mvv__item-title-jp {
    font-size: 30px;
    line-height: 1.5;
  }
}

.about__section .mvv__item-title-jp small {
  font-size: 16px;
}
.about__section .mvv__item-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about__section .mvv__item-catch {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .about__section .mvv__item-catch {
    margin-top: 40px;
    font-size: 20px;
  }
}

.about__section .mvv__item-text {
  margin-top: 10px;
  line-height: 2;
}

/* symbol */
.about__section .symbol__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 60px;
  text-align: center;
}
.about__section .symbol__body svg {
  width: 276px;
  height: 42px;
}

.about__section .symbol__list {
  display: flex;
  justify-content: center;
  gap: 7px;
  width: 100%;
}
@media (max-width: 768px) {
  .about__section .symbol__list {
    flex-direction: column;
    gap: 10px;
  }
}

.about__section .symbol__list li {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: #1d1d1d0f;
  border-radius: 4px;
}
@media (min-width: 769px) {
  .about__section .symbol__list li {
    max-width: 250px;
  }
}

.about__section .symbol__list li .en {
  font-size: 15px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .about__section .symbol__list li .en {
    font-size: 18px;
  }
}

.about__section .symbol__list li .jp {
  font-size: 11px;
}
