@charset "UTF-8";

:root {
  --innerWidth: 1100;
  --innerWidthPx: 1100px;
  --color_black: #2B2B2B;

  --color_lightGray: #828282;
  --color_extraLightGray: #F7F7F7;
  --color_extraLightGray_2: #E8E8E8;

  --default_letter-spacing: 0.05em;
  --default_line-height: 200%;

  --textLinkUseColor: #0086ce;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 73px;
  overflow-x: hidden;
}

html,
body {}

body>#container {
  height: auto;
  margin-right: auto;
  margin-left: auto;
}

#container {
  height: 100%;
  min-height: 100%;
  position: relative;
  padding-top: 73px;
}

#page_top #container {
  padding-top: 0;
}

body {
  color: var(--color_black);
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1;
  font-optical-sizing: auto;
  font-style: normal;
  text-box-trim: trim-both;
}


a:link {
  color: var(--color_black);
  text-decoration: underline;
  text-decoration: none;
}

a:visited {
  color: var(--color_black);
  text-decoration: none;
  transition: all 0.5s 0s ease;
}

a:hover {
  color: #7e7e7e;
  text-decoration: none;
  transition: all 0.2s 0s ease;
}

a[href*="tel:"] {
  cursor: default;
}

a:hover img {
  transform: scale(1.1);
  transition: transform .2s ease;

}

p:not(:last-child) {
  margin-bottom: 1em;
}

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



/*----------------------------------------
■layout
----------------------------------------*/
#container>section,
main section,
header,
footer>.inner,
.contentWrap {
  padding-inline: 20px;
}

section>.inner,
main>.inner {
  max-width: var(--innerWidthPx);
  width: 100%;
  margin-inline: auto;
  padding-block: 80px;
}

.breadList {
  background-color: var(--color_extraLightGray);

  ul {
    max-width: var(--innerWidthPx);
    margin-inline: auto;
    display: flex;
    padding-block: 10px;
    font-size: 14px;

    li {
      display: flex;
      align-items: center;

      &:not(:last-child):after {
        content: "";
        width: 10px;
        aspect-ratio: 1;
        background-image: url(/wp/wp-content/themes/madeinjapan/img/common/icon_arrow_1.svg);
        background-size: contain;
        background-repeat: no-repeat;
        margin-inline: 10px;
      }
    }
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  z-index: 5;
  border-bottom: 1px solid var(--color_extraLightGray_2);

  .inner {
    max-width: var(--innerWidthPx);
    width: 100%;
    margin-inline: auto;
    display: flex;
    gap: 30px;
    padding-block: 15px;
    font-size: 14px;

    h1 {
      display: flex;
      align-items: center;
    }



    .smp_menu_sw,
    .smp_menu_img {
      display: none;
    }

    #globalNav {
      flex: 1;

      >ul {
        display: flex;
        align-items: center;
        gap: 30px;

        li {
          position: relative;

          .childNav {
            position: absolute;
            top: 100%;
            left: 0;
            padding-top: 5px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: opacity .3s ease, transform .3s ease;

            .children {

              li {
                padding: 10px;

                a:link,
                a:visited {
                  color: var(--color_black);
                }
              }
            }
          }


          &:hover .childNav {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            position: absolute;
            top: 100%;
            left: 0;


            .children {
              border: 1px solid var(--color_extraLightGray_2);
              background-color: rgb(255, 255, 255, 0.8);
              white-space: nowrap;
              transition: opacity .5s ease-out;
              opacity: 1;
            }


          }

          &:has(.children) {
            display: flex;
            height: 100%;


            &:after {
              content: "";
              width: 10px;
              aspect-ratio: 1;
              mask-image: url(/wp/wp-content/themes/madeinjapan/img/common/icon_arrow_1.svg);
              mask-size: contain;
              mask-repeat: no-repeat;
              background-color: var(--color_black);
              transform: rotate(90deg);
            }
          }

        }

        .inq {
          margin-left: auto;

          a {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;

          }
        }

        .inq a:before {
          content: "";
          width: 30px;
          aspect-ratio: 30/24;
          mask-image: url(/wp/wp-content/themes/madeinjapan/img/common/icon_mail.svg);
          mask-size: contain;
          mask-repeat: no-repeat;
          background-color: var(--color_black);
        }
      }
    }
  }
}

header.zeroOpacity {
  position: fixed;
  background-color: transparent;
  border-bottom: none;

  .inner {

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

    #globalNav {
      >ul {
        .inq a:before {
          background-color: #fff
        }

        li {
          &:has(.children) {
            &:after {
              background-color: #fff;
            }
          }
        }
      }

      .inq a:before {
        background-color: #fff;
      }
    }
  }


}

header.zeroOpacity.scrolled {
  background-color: #fff;
  border-bottom: 1px solid var(--color_extraLightGray_2);

  a:link,
  a:visited {
    text-decoration: none;
    color: var(--color_black);
  }

  .inner {
    #globalNav {
      >ul {
        li {
          &:has(.children) {

            display: flex;
            height: 100%;

            &:after {
              background-color: var(--color_black);
            }
          }
        }

        .inq a:before {
          background-color: var(--color_black);
        }
      }
    }
  }


}

footer {
  font-size: 14px;

  .inner {
    max-width: var(--innerWidthPx);
    margin: auto;
    margin-block: 30px;
    display: flex;

    .corp {
      white-space: nowrap;
      border-right: 1px solid var(--color_extraLightGray_2);
      padding-right: 30px;
      display: flex;
      align-items: center;
    }

    .menus {
      flex: 1;
      display: grid;
      grid-template-columns: repeat(auto-fill, calc(100% / 6));
      justify-content: space-between;
      padding-left: 30px;
      gap: calc(30 / 1100 * 100%);


      dl {
        /*overflow: auto;*/
      }

      .title {
        color: var(--color_lightGray);
        font-weight: bold;
        margin-bottom: 20px;
      }

      dd:not(:last-child) {
        margin-bottom: 10px;
      }

      .sns dd {
        display: flex;
        gap: 10px;

        a img:hover {
          transform: scale(1);
        }
      }
    }
  }

  .copyrights {
    background-color: var(--color_black);
    color: #fff;
    text-align: center;
    padding: 10px;
  }
}

/*----------------------------------------
■General Class
----------------------------------------*/
.title_1 {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  position: relative;
  font-weight: bold;

  .ja {
    --y: 0px;
    background-color: var(--color_black);
    width: 70px;
    aspect-ratio: 1;
    border-radius: 50%;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 40px;
    font-optical-sizing: auto;
    line-height: 1;
    transform: translateY(0px);
  }

  @supports (selector(:has(*))) and (not (-webkit-hyphens: none)) {
    .ja {
      padding-bottom: 5px;
    }
  }

  .en {
    text-align: center;
    font-size: 20px;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
  }

  &:before,
  &:after {
    content: "";
    display: block;
    height: 1px;
    flex: 0;
    margin-top: 35px;
    background-color: var(--color_black);
    transition: flex 2s ease;
  }

  &.is-animated::before,
  &.is-animated::after {
    flex: 1;
  }

  &.colorReverse {
    .ja {
      background-color: #fff;
      color: var(--color_black);
    }

    .en {
      color: #fff;
    }

    &:before,
    &:after {
      background-color: #fff;
    }
  }
}




.title_2 {
  font-size: 40px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  gap: 20px;

  &:before,
  &:after {
    content: "";
    height: 1px;
    flex: 0;
    background-color: var(--color_black);
    transition: flex 2s ease;
  }

  &.is-animated::before,
  &.is-animated::after {
    flex: 1;
  }
}

.btn_1,
.btn_1:link,
.btn_1:visited {
  background-color: var(--color_black);
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 52px;
  min-width: 284px;
  position: relative;

  &:after {
    content: "";
    mask-image: url(/wp/wp-content/themes/madeinjapan/img/common/icon_arrow_1.svg);
    mask-size: contain;
    mask-repeat: no-repeat;
    background-color: #fff;
    width: 10px;
    aspect-ratio: 1;
    margin-left: 5px;
  }

  &:hover {
    color: var(--color_black);
    background-color: #fff;
    border: 1px solid var(--color_black);

    &:before {
      transform: scaleX(1);
      transform-origin: left;
    }

    &:after {
      background-color: var(--color_black);
    }
  }
}



.btn_2 {
  border: 1px solid var(--color_extraLightGray_2);

  :link,
  :visited {
    border: 1px solid var(--color_extraLightGray_2);
    background-color: #fff;
    width: auto;
    display: flex;
    padding: 10px 20px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
  }

  &:after {
    content: "";
    background-image: url(/wp/wp-content/themes/madeinjapan/img/common/icon_arrow_1.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 10px;
    aspect-ratio: 1;
    margin-left: 3px;
  }

  &.anchor {

    &:link,
    :visited {
      border: 1px solid var(--color_extraLightGray_2);
      background-color: #fff;
      width: auto;
      display: flex;
      padding: 10px 20px;
      align-items: center;
      justify-content: center;
      border-radius: 6px;
    }

    &:after {
      content: "";
      background-image: url(/wp/wp-content/themes/madeinjapan/img/common/icon_arrow_1.svg);
      background-size: contain;
      background-repeat: no-repeat;
      width: 10px;
      aspect-ratio: 1;
      margin-left: 3px;
      transform: rotate(90deg);
    }
  }
}


.defaultTextStyle {
  color: var(--color_black);
  font-size: 16px;
  letter-spacing: var(--default_letter-spacing);
  line-height: var(--default_line-height);
}

.img {
  overflow: hidden;
}

.pager {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  margin-top: 40px;

  a:link,
  a:visited,
  li.active {
    border: 1px solid var(--color_extraLightGray_2);
    background-color: #fff;
    width: 40px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
  }

  a:hover {
    background-color: var(--color_black);
    color: #fff;
  }

  li.active {
    background-color: var(--color_black);
    color: #fff;
  }

  &.prevNext {

    a:link,
    a:visited {
      border: 1px solid var(--color_extraLightGray_2);
      background-color: #fff;
      width: auto;
      aspect-ratio: unset;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 6px;
      padding: 10px 20px;
    }

    a:hover {
      background-color: var(--color_black);
      color: #fff;
    }

    .prev {

      a:before {
        content: "";
        mask-image: url(/wp/wp-content/themes/madeinjapan/img/common/icon_arrow_1.svg);
        width: 10px;
        transform: scale(-1, 1);
        aspect-ratio: 1;
        mask-size: contain;
        mask-repeat: no-repeat;
        mask-position: center;
        background-color: var(--color_black);
        margin-right: 3px;
      }

      a:hover:before {
        background-color: #fff;
      }
    }

    .next {
      a:after {
        content: "";
        mask-image: url(/wp/wp-content/themes/madeinjapan/img/common/icon_arrow_1.svg);
        width: 10px;
        aspect-ratio: 1;
        mask-size: contain;
        mask-repeat: no-repeat;
        mask-position: center;
        background-color: var(--color_black);
        margin-left: 3px;
      }

      a:hover:after {
        background-color: #fff;
      }
    }
  }
}

.pc_hide {
  display: none;
}

.categoryTag {
  display: inline-block;
  background-color: #fff;
  border: 1px solid var(--color_black);
  padding: 5px 10px;
  font-size: 12px;
}

.dlList_1 {
  display: grid;
  column-gap: 10px;
  row-gap: 20px;
  grid-template-columns: 220px 1fr;

  dt {
    font-weight: bold;
  }

  dd {
    line-height: 130%;
    letter-spacing: 0.03em;
  }
}

/*----------------------------------------
■sec_topVisual
----------------------------------------*/
.sec_topVisual {
  background-image: url(/wp/wp-content/themes/madeinjapan/img/index/visual/visual.webp);
  background-image: image-set(url(/wp/wp-content/themes/madeinjapan/img/index/visual/visual.webp) 1x, url(/wp/wp-content/themes/madeinjapan/img/index/visual/visual@2x.webp) 2x);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  width: 100vw;
  height: 100vh;


  .inner {
    max-width: var(--innerWidthPx);
    height: 100%;
    margin-inline: auto;
    position: relative;
    padding: 0;
  }

  .titleImg {
    width: 511px;
    position: absolute;
    margin-block: auto;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;

    &.is-loaded {
      animation: visualTitleAnimetion 2s forwards;
    }
  }

}

@keyframes visualTitleAnimetion {
  0% {
    opacity: 0;
  }

  50% {
    filter: drop-shadow(0 0 6px rgb(255, 255, 255)) drop-shadow(0 0 16px rgb(14, 43, 161));
  }

  100% {
    opacity: 1;
  }
}

/*----------------------------------------
■sec_topVision
----------------------------------------*/
.sec_topVision {
  .lead {
    text-align: center;
    margin-bottom: 40px;
  }

  .visions {
    background-image: url(/wp/wp-content/themes/madeinjapan/img/index/vision/visions.webp);
    background-image: image-set(url(/wp/wp-content/themes/madeinjapan/img/index/vision/visions.webp) 1x, url(/wp/wp-content/themes/madeinjapan/img/index/vision/visions@2x.webp) 2x);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right center;
    min-height: 507px;
    /* aspect-ratio: 1100 / 507;*/
    display: flex;
    align-items: center;
    padding: 50px;
    margin-bottom: 40px;

    ul {
      display: flex;
      flex-direction: column;
      gap: 40px;

      li {
        display: flex;
        line-height: 150%;
        letter-spacing: 0.05em;
        font-size: 24px;
        font-weight: bold;
        color: #fff;
        gap: 30px;
        opacity: 0;
        transform: translateY(20px);
      }

      &.is-animated {
        li {
          animation: fadeInUp 0.6s ease forwards;
          animation-delay: var(--delay, 0s);
        }
      }

      li:before {
        content: "";
        background-size: contain;
        background-repeat: no-repeat;
        width: 31px;
        aspect-ratio: 31 / 62;
        margin-top: 10px;
      }

      li:nth-child(1):before {
        background-image: url(/wp/wp-content/themes/madeinjapan/img/index/vision/1.png);
      }

      li:nth-child(2):before {
        background-image: url(/wp/wp-content/themes/madeinjapan/img/index/vision/2.png);
      }

      li:nth-child(3):before {
        background-image: url(/wp/wp-content/themes/madeinjapan/img/index/vision/3.png);
      }

    }
  }

  .brand {
    >.title {
      font-weight: bold;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      margin-bottom: 40px;

      .ja {
        font-size: 20px;
      }

      .name {
        font-size: 32px;
      }
    }

    .text {
      text-align: center;
      margin-bottom: 40px;
    }

    .btnWrap {
      text-align: center;
    }
  }

}

/*----------------------------------------
■sec_topService
----------------------------------------*/
.sec_topService {
  background-color: var(--color_extraLightGray);

  .serviceBoxes {
    display: flex;
    flex-direction: column;
    gap: 20px;

    .box {
      display: flex;
      align-items: center;
      padding: 10px;
      background-color: #fff;
      border: 1px solid var(--color_extraLightGray_2);
      gap: 40px;

      .img {
        max-width: 480px;
        width: calc(480 / var(--innerWidth) * 100%);
      }

      .detail {
        flex: 1;

        .title {
          font-size: 32px;
          font-weight: bold;
          margin-bottom: 20px;
        }

        .text {
          letter-spacing: var(--default_letter-spacing);
          line-height: var(--default_line-height);
          margin-bottom: 20px;
        }
      }
    }
  }
}

/*----------------------------------------
■sec_topNews
----------------------------------------*/
.sec_topNews {
  ul.newsList {
    display: flex;
    flex-direction: column;
    margin: auto;
    margin-bottom: 40px;
    max-width: 730px;
    gap: 20px;

    li {
      display: flex;
      gap: 40px;
      line-height: 150%;
      letter-spacing: var(--default_letter-spacing);

      time {
        color: var(--color_lightGray);
        white-space: nowrap;
      }

      a:link,
      a:visited {
        flex: 1;

      }
    }
  }

  .btnWrap {
    text-align: center;
  }
}

/*----------------------------------------
■sec_topPartnerShip
----------------------------------------*/
.sec_topPartnerShip {
  background-color: var(--color_extraLightGray);

  .lead {
    text-align: center;
    margin-bottom: 40px;
  }

  .bannerBoxes {
    display: grid;
    margin: auto;
    max-width: 900px;
    grid-template-columns: repeat(2, minmax(auto, 440px));
    gap: 20px;
  }
}

/*----------------------------------------
■sec_topProducts
----------------------------------------*/
.sec_topProducts {
  background-color: var(--color_black);

  .productRows {
    display: flex;
    flex-direction: column;
    gap: 40px;

    h3.title {
      color: #fff;
      font-weight: bold;
      font-size: 20px;
      margin-bottom: 20px;
    }

    .productBoxes {
      display: grid;
      gap: 20px;
      grid-template-columns: repeat(4, minmax(auto, 260px));

      .box {
        background-color: #fff;
        padding: 10px;
        text-align: center;
        border-radius: 10px;

        .img {
          margin-bottom: 10px;
        }

        .name {
          line-height: 120%;
          letter-spacing: 0.05em;
        }
      }
    }
  }
}

/*----------------------------------------
■page_service
----------------------------------------*/
#page_service {
  .visualTitle {
    background-image: url(/wp/wp-content/themes/madeinjapan/img/service/visual.webp);
    background-image: image-set(url(/wp/wp-content/themes/madeinjapan/img/service/visual.webp) 1x, url(/wp/wp-content/themes/madeinjapan/img/service/visual@2x.webp) 2x);
    background-size: cover;
    background-repeat: no-repeat;
    aspect-ratio: 1366/300;
    width: 100%;
    max-height: 300px;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 40px;
    font-weight: bold;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.50);
  }

  .serviceBoxes {
    display: flex;
    flex-direction: column;
    gap: 70px;

    .serviceBox:not(:last-child) {
      margin-bottom: 50px;
    }
  }

  .mainSection {
    .visual {
      margin-bottom: 40px;
    }

    .title {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .text {
      margin-bottom: 40px;
    }

    .btnWrap {
      text-align: center;
    }

    &.sec_subsc {
      .inner {
        padding-top: 0px;
      }
    }

  }
}

/*----------------------------------------
■page_news
----------------------------------------*/
#page_news {
  .visualTitle {
    background-image: url(/wp/wp-content/themes/madeinjapan/img/news/visual.webp);
    background-image: image-set(url(/wp/wp-content/themes/madeinjapan/img/news/visual.webp) 1x, url(/wp/wp-content/themes/madeinjapan/img/news/visual@2x.webp) 2x);
    background-size: cover;
    background-repeat: no-repeat;
    aspect-ratio: 1366/300;
    width: 100%;
    max-height: 300px;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 40px;
    font-weight: bold;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.50);
    margin-bottom: 40px;
  }

  .articleTitle {
    background-color: var(--color_black);
    color: #fff;
    display: grid;
    grid-template-areas:
      "title title"
      "time category";
    height: 200px;
    justify-content: center;
    row-gap: 20px;
    column-gap: 10px;
    padding-inline: 20px;
    margin-bottom: 40px;


    .title {
      grid-area: title;
      display: flex;
      justify-content: center;
      align-self: flex-end;
      font-size: 30px;
      font-weight: bold;
      letter-spacing: 0.03em;
      line-height: 130%;
    }

    time {
      grid-area: time;
      padding-top: 3px;
      text-align: right;
      color: var(--color_lightGray);
    }

    .categoryLabel {
      grid-area: category;
    }
  }

  .newsArticle {
    .inner {
      max-width: 900px;
      margin-inline: auto;
      margin-bottom: 80px;
      padding-inline: 20px;

      .articleBody {
        margin-bottom: 40px;

        h3 {
          font-size: 20px;
          font-weight: bold;
        }

        h4 {
          font-size: 16px;
          font-weight: bold;
        }

        a:link,
        a:visited {
          color: var(--textLinkUseColor);
        }

        .wp-block-embed.is-type-video {
          iframe {
            width: 100%;
            height: 100%;
          }

          .wp-block-embed__wrapper {
            aspect-ratio: 16/9;
          }
        }

      }

      .btnWrap {
        text-align: center;
      }

    }
  }

  .contentWrap {
    display: grid;
    grid-template-areas:
      "tab tab"
      "main aside";
    grid-template-columns: 1fr 260px;
    max-width: var(--innerWidthPx);
    margin-inline: auto;
    gap: 50px;
    padding-bottom: 80px;

    .tab {
      grid-area: tab;
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-bottom: 40px;

      a:link,
      a:visited {
        display: block;
        background-color: #fff;
        width: 200px;
        padding: 15px 20px;
        text-align: center;
        border: 1px solid var(--color_extraLightGray_2);

      }

      a.active {
        background-color: var(--color_black);
        color: #fff;
      }
    }

    main {
      grid-area: main;
      flex: 1;

      .newsLists {
        li {
          position: relative;
          padding-bottom: 20px;

          &:has(a.over:hover) .title {
            color: #7e7e7e;
          }

          &:not(:first-child) {
            padding-top: 20px;
          }

          &:not(:last-child) {
            border-bottom: 1px solid var(--color_extraLightGray_2);
          }

          time {
            color: var(--color_lightGray);
            margin-right: 10px;
          }

          .title {
            margin-top: 10px;
          }

          a.over:link,
          a.over:visited {
            display: block;
            text-indent: -100vw;
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
          }

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

    aside {
      grid-area: aside;
      width: 260px;
      flex-direction: column;
      display: flex;
      gap: 20px;

      .sideSection {
        background-color: #fff;
        border: 1px solid var(--color_extraLightGray_2);


        .inner {
          padding: 20px;

          .title {
            display: block;
            color: var(--color_lightGray);
            font-size: 16px;
            text-align: center;
            font-weight: bold;
            margin-bottom: 20px;
          }

          .sideIndexLists {
            display: flex;
            flex-direction: column;
            gap: 20px;

            a {
              display: flex;
              justify-content: space-between;
              align-items: center;
              line-height: 130%;
              font-size: 14px;

              &:after {
                content: "";
                background-image: url(/wp/wp-content/themes/madeinjapan/img/common/icon_arrow_1.svg);
                display: flex;
                background-size: contain;
                background-repeat: no-repeat;
                width: 12px;
                aspect-ratio: 1;
                flex-shrink: 0;
              }

              &.active {
                font-weight: bold;
              }
            }
          }
        }
      }
    }
  }
}

/*----------------------------------------
■page_corp
----------------------------------------*/
#page_corp {
  .visualTitle {
    background-image: url(/wp/wp-content/themes/madeinjapan/img/corp/visual.webp);
    background-image: image-set(url(/wp/wp-content/themes/madeinjapan/img/corp/visual.webp) 1x, url(/wp/wp-content/themes/madeinjapan/img/corp/visual@2x.webp) 2x);
    background-size: cover;
    background-repeat: no-repeat;
    aspect-ratio: 1366/300;
    width: 100%;
    max-height: 300px;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 40px;
    font-weight: bold;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.50);
    margin-bottom: 40px;
  }

  .tab {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;

    a:link,
    a:visited {
      border-radius: 0;
      padding: 15px 20px;
      min-width: 200px;
    }
  }

  main {
    >.inner {
      padding-top: 0;
      padding-bottom: 80px;

      section>.inner {
        padding-top: 0;
      }

      section {
        &:last-child {
          .inner {
            padding-bottom: 0;
          }
        }
      }
    }
  }

  .sec_corpAbout {

    ol {
      counter-reset: num;
      display: flex;
      flex-direction: column;
      gap: 10px;

      li {
        display: flex;
        align-items: center;

        &:before {
          counter-increment: num;
          content: counter(num);
          color: #fff;
          display: flex;
          justify-content: center;
          align-items: center;
          width: 24px;
          height: 24px;
          font-size: 12px;
          background-color: var(--color_black);
          border-radius: 50%;
          margin-right: 5px;
          flex-shrink: 0;
        }
      }
    }
  }

  .sec_corpCEO {
    .profile {
      display: flex;
      gap: 50px;

      .detail {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;

        .title {
          font-size: 20px;
          font-weight: bold;
          margin-bottom: 20px;
        }

        .text {
          margin-bottom: 50px;
        }

        .sns {
          display: flex;
          gap: 10px;
        }

      }

      .img {
        width: 329px;
      }
    }
  }
}

/*----------------------------------------
■page_inq
----------------------------------------*/
#page_inq {
  .contentWrap {
    display: flex;
    gap: 10px;

    .lead {
      max-width: 440px;

      .title {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 30px;
      }

      .inqAttention {
        color: var(--color_lightGray);
        font-size: 14px;
        line-height: 150%;
        display: block;
      }
    }

    .inqForm {
      width: calc(650 / var(--innerWidth) * 100%);
      max-width: 650px;
      background-color: var(--color_extraLightGray);
      padding: 30px;
      border-radius: 10px;

      .formInner {
        display: flex;
        flex-direction: column;
        gap: 30px;
      }

      .row {
        display: flex;
        flex-direction: column;
        gap: 3px;

        label {
          font-weight: bold;
          margin-bottom: 5px;
          display: flex;
          align-items: center;

          &.unRequired:before {
            content: "任意";
            font-weight: normal;
            background-color: var(--color_lightGray);
            color: #fff;
            font-size: 12px;
            padding: 5px 10px;
            border-radius: 6px;
            margin-right: 3px;
          }

          &.required:before {
            content: "必須";
            font-weight: normal;
            background-color: #DA0000;
            color: #fff;
            font-size: 12px;
            padding: 5px 10px;
            border-radius: 6px;
            margin-right: 3px;
          }
        }

        .textArea {
          height: 200px;
        }

        .btnWrap {
          text-align: center;

          p {
            text-align: center;
            display: flex;
            align-items: center;
            flex-direction: column;
          }
        }
      }
    }
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}