@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Shippori+Mincho&display=swap');

:root {
  font-size: 16px;
  /* 1rem */
  --font-sans-serif: "dnp-shuei-mgothic-std", sans-serif;
  --font-serif: serif;
  --font-montserrat: "Montserrat", sans-serif;
  --font-mincho: "Shippori Mincho", serif;
  --color-body: #373737;
  --color-link: #1d519b;
  --color-link-light: #4e83cf;
  --color-blue: #1d519b;
  --color-red: #E41111;
  --color-beige: #CFC3B3;
  --color-beige-light: #F2EEE8;
  --color-gray-light: #F5F5F5;
  --max-width-container: 1240px;
  --padding-container: 20px;
}

body {
  font-family: var(--font-sans-serif);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-body);
}

section {
  position: relative;
}

a:where(:any-link, :hover) {
  color: var(--color-link);
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
dl,
dt,
dd {
  font-family: inherit;
  font-weight: inherit;
  padding: 0;
  margin: 0;
}

.my-ajax-loading {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, .5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.my-container {
  position: relative;
  max-width: var(--max-width-container);
  margin: 0 auto;
  padding: 0 var(--padding-container);
}

.my-cols,
.my-rows {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.my-rows {
  flex-direction: column;
}

.my-top {
  display: flex;
  flex-direction: column;
  margin-bottom: 6rem;
}

.my-bc {
  font-size: 0.75rem;
  padding-block: 0.75rem;
  background: #ACCEFF;
  color: var(--color-blue);

  .my-container {
    max-width: 54rem;
  }

  ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    padding: 0;
    margin: 0;

    a {
      text-decoration: none;

      &:hover {
        text-decoration: underline;
      }
    }

    li:first-child a::before {
      content: '';
      display: inline-block;
      width: 0.6875rem;
      height: 0.6875rem;
      background: url(../img/icon-home.svg) center / contain no-repeat;
      margin-right: 0.2rem;
    }

    li+li::before {
      content: '>';
      display: inline-block;
      color: var(--color-blue);
      margin-right: 0.625rem;
    }
  }
}

.my-title01 {
  position: relative;
  background: url(../img/title01a-bg.jpg) center / cover no-repeat;
  height: 13.5rem;
  text-align: center;

  &.-a {
    background-image: url(../img/title01a-bg.jpg);
  }

  &.-b {
    background-image: url(../img/title01b-bg.jpg);
  }

  &.-c {
    background-image: url(../img/title01c-bg.jpg);
  }

  &.-d {
    background-image: url(../img/title01d-bg.jpg);
  }

  &.-e {
    background-image: url(../img/title01e-bg.jpg);
  }

  &.-f {
    background-image: url(../img/title01f-bg.jpg);
  }

  &.-g {
    background-image: url(../img/title01g-bg.jpg);
  }

  &::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000;
    opacity: .5;
  }

  >span {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 2.5rem;

    small {
      font-family: var(--font-montserrat);
      font-size: 1.25rem;
    }
  }
}

.my-title02 {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  align-items: center;
  font-weight: 600;
  font-size: 2.5rem;
  color: var(--color-blue);
  margin-bottom: 3rem;

  &::before {
    content: '';
    display: block;
    width: 3rem;
    height: 1.125rem;
    background: url(../img/icon-megane.svg) center / contain no-repeat;
  }

  small {
    font-family: var(--font-montserrat);
    font-size: 0.5em;
  }
}

.my-title03 {
  font-size: 1.375rem;
  color: var(--color-blue);
  margin-bottom: 1rem;
}

.my-title04 {
  font-family: var(--font-mincho);
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  text-align: center;
  color: var(--color-blue);
}

.my-title05 {
  display: flex;
  justify-content: center;
  padding: 1.25rem;
  border-radius: 0.3125rem;
  background: var(--color-beige-light);
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
}

.my-title06 {
  font-size: 1.375rem;
  color: var(--color-blue);
  padding-left: 1.25rem;
  border-left: 0.625rem solid var(--color-blue);
  margin-bottom: 2.5rem;
}

.my-btn01 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem auto 0;
  width: 16.25rem;
  height: 3.5rem;
  border-radius: 1.75rem;
  background: var(--color-link);
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  transition: background ease-out .3s;

  &::after {
    content: '';
    display: block;
    width: 0.8125rem;
    height: 0.8125rem;
    background: url(../img/icon-arrow-w.svg) center / contain no-repeat;
  }

  &:hover {
    background: var(--color-link-light);
  }
}

.my-btn02 {
  display: inline-flex;
  align-items: center;
  height: 2.375rem;
  padding-inline: 1.5rem;
  background: var(--color-link);
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background ease-out .3s;

  &:hover {
    background: var(--color-link-light);
  }
}

.my-link01 {
  display: inline-flex;
  align-items: center;
  gap: 1em;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-link);
  text-decoration: none;

  &::after {
    content: '';
    display: block;
    width: 0.625rem;
    height: 1.4375rem;
    background: var(--color-link);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
  }

  &:hover {
    text-decoration: underline;
  }
}

.my-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background: #fff;
  box-shadow: 0px 1px 10px 10px rgba(0, 0, 0, 0.2);
  z-index: 10;

  #menu,
  [for="menu"],
  #menu_products,
  [for="menu_products"] {
    display: none;
  }

  >.my-container {
    display: flex;
    align-items: center;
    height: 6rem;
    margin-inline: auto;
  }

  .my-header-logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    transition: opacity ease-out .3s;

    img {
      width: 14.3rem;
    }

    span {
      font-weight: 600;
      font-size: 0.8rem;
      line-height: 1.4;
      color: var(--color-link);
      white-space: nowrap;
    }

    &:hover {
      opacity: .6;
    }
  }

  .my-header-nav {
    background: var(--color-blue);

    .-sns {
      display: flex;
      gap: 0.625rem;
      position: absolute;
      top: -2.5rem;
      right: var(--padding-container);

      a:hover {
        opacity: .6;
      }
    }

    .-tel {
      position: absolute;
      top: -4.8rem;
      right: var(--padding-container);
      font-family: var(--font-montserrat);
      font-weight: 500;
      font-size: 1.25rem;
      letter-spacing: 0.05em;
      color: var(--color-blue);
    }

    .my-cols {
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 1rem 0;

      .-link {
        position: relative;
        display: block;
        color: #fff;
        font-weight: bold;
        font-size: 1.125rem;
        text-decoration: none;
        text-align: center;
        padding: 1.5rem 2rem;

        &:hover {
          opacity: .6;
        }

        small {
          display: block;
          font-weight: 500;
          font-size: 0.625rem;
        }
      }

      li:has(.-link) {
        position: relative;

        +li:has(.-link)::before {
          content: '';
          position: absolute;
          bottom: 1.5rem;
          left: 0;
          width: 1px;
          height: 1.5625rem;
          background: #fff;
        }

        .-hover {
          position: absolute;
          top: 100%;
          right: 0;
          left: 0;
          width: 11.25rem;
          height: 0;
          margin-inline: auto;
          background: rgba(29, 81, 155, 0.8);
          overflow: hidden;

          a {
            display: block;
            font-weight: 600;
            color: #fff;
            line-height: 2.5rem;
            text-align: center;
            text-decoration: none;

            &:hover {
              opacity: .6;
            }
          }
        }

        &:hover .-hover {
          height: auto;
        }
      }

      .my-btn02 {
        position: absolute;
        top: -5rem;
        right: calc(13rem + var(--padding-container));
      }
    }
  }
}

.my-main {
  position: relative;
  padding-top: 11.6rem;
}

.my-mv {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  font-family: var(--font-mincho);
  /* font-size: 2.5rem; */
  font-size: clamp(1.875rem, calc(1.25vw + 1.5rem), 2.5rem);
  width: 100%;
  aspect-ratio: 1440 / 525;
  background: url(../img/home-mv.jpg) center / cover no-repeat;

  >span {
    position: relative;
  }

  &::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000;
    opacity: .5;
  }
}

.my-sec {
  margin-top: 7.5rem;
}

.my-lead {
  margin-bottom: 3.75rem;

  p {
    font-size: 1.125rem;
    text-align: center;
  }
}

.my-news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;

  li {
    border-bottom: 1px solid var(--color-beige);

    a {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem 1rem;
      padding: 0.625rem 2rem 0.625rem 0;
      color: inherit;
      text-decoration: none;
      transition: opacity ease-out .3s;

      &::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 0.8125rem;
        height: 0.8125rem;
        margin-block: auto;
        background: url(../img/icon-arrow.svg) center / contain no-repeat;
      }

      &:hover {
        opacity: .6;
      }

      .-title {
        font-weight: bold;
      }

      .-body {
        width: 100%;
        overflow: hidden;
        display: -webkit-box;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        line-clamp: 2;
      }
    }
  }

  &.-stripe {
    li {
      border-bottom: 0;
      padding-inline: 1rem;

      &:nth-last-child(2n + 1) {
        background: var(--color-beige-light);
      }
    }
  }
}

.my-pagination {
  display: flex;
  justify-content: center;
  font-size: 1rem;
  gap: 0.625em;
  margin-top: 5em;
  color: var(--color-link);

  >* {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-montserrat);
    font-weight: bold;
    min-width: 2.5em;
    height: 2.5em;
    border-radius: 5px;
  }

  >a {
    background: #F2EEE8;
    color: inherit;
    text-decoration: none;
    transition: opacity ease-out .3s;

    &:hover {
      opacity: .6;
    }
  }

  >.-current {
    background: var(--color-link);
    color: #fff;
  }
}

.my-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-montserrat);
  font-weight: bold;
  letter-spacing: 0.05em;
  color: var(--color-link);
  min-width: 7rem;

  .-badge {
    display: inline-block;
    min-width: 4rem;
    font-weight: normal;
    font-size: 0.75rem;
    text-align: center;
    color: #fff;
    padding: .4rem;
    margin-left: .5rem;
    border-radius: 5px;
    line-height: 1;
  }
}

.my-news-post {
  .-title {
    font-size: 1.375rem;
    font-weight: bold;
    padding-block: 1.25rem;
    border-bottom: 2px solid var(--color-beige);
    margin-bottom: 2.5rem;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 2px solid var(--color-beige);
    margin-top: 2.5rem;
    padding-top: 2rem;

    >div {
      flex: 1;
      display: flex;
      align-items: center;

      a {
        text-decoration: none;
        transition: opacity ease-out .3s;

        &:hover {
          opacity: .6;
        }
      }

      &:last-child {
        justify-content: flex-end;
      }
    }

    .my-btn01 {
      margin: 0;
    }
  }
}

.my-quill-body {
  background: #fff;

  p {
    margin: 0;
  }

  img {
    max-width: 100%;
  }
}

.my-anker01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  background: var(--color-beige-light);
  padding: 1.875rem;

  a {
    position: relative;
    text-decoration: none;
    padding: 1.1875rem 1.25rem 1.8125rem 5rem;
    color: var(--color-link);
    border-radius: 0.3125rem;
    background: #fff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);

    &:hover {
      text-decoration: underline;
    }

    &::after {
      content: '';
      position: absolute;
      right: 0;
      bottom: 0.75rem;
      left: 0;
      width: 0.9375rem;
      height: 0.4375rem;
      margin-inline: auto;
      background: var(--color-beige);
      clip-path: polygon(0 0, 100% 0, 50% 100%);
    }

    &::before {
      content: '';
      position: absolute;
      top: 0.3rem;
      left: 1.25rem;
      width: 3rem;
      height: 3rem;
      background: center / contain no-repeat;
    }

    &[href="#products01"]::before {
      background-image: url(../img/products-icon01.svg);
    }

    &[href="#products02"]::before {
      background-image: url(../img/products-icon02.svg);
    }

    &[href="#products03"]::before {
      background-image: url(../img/products-icon03.svg);
    }

    &[href="#products04"]::before {
      background-image: url(../img/products-icon04.svg);
    }
  }
}

.my-anker02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  padding: 1.875rem;

  a {
    width: 15.25rem;
    position: relative;
    text-decoration: none;
    padding: 1rem 1.25rem;
    color: var(--color-link);
    border-radius: 0.3125rem;
    background: var(--color-beige-light);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);

    &:hover {
      text-decoration: underline;
    }

    &::after {
      content: '';
      position: absolute;
      top: 0;
      right: 1.25rem;
      bottom: 0;
      width: 1.125rem;
      height: 1.125rem;
      margin-block: auto;
      background: url(../img/icon-circle-arrow.svg) center / contain no-repeat;
    }
  }
}

#home00 {
  .my-news-list {
    max-width: 51.875rem;
    margin-inline: auto;
  }
}

#home01 {
  .my-cols {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.875rem;

    dl {
      width: 23.75rem;

      dt {
        position: relative;

        img {
          display: block;
          width: 100%;
        }

        &::before {
          content: '';
          position: absolute;
          top: 0;
          right: 0;
          bottom: 0;
          left: 0;
          background: #050505;
          opacity: .4;
          z-index: 1;
        }

        >span {
          position: absolute;
          top: 0;
          right: 0;
          bottom: 0;
          left: 0;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          gap: 1rem;
          font-size: 1.25rem;
          color: #fff;
          text-align: center;
          z-index: 2;

          >strong {
            font-family: var(--font-montserrat);
            font-weight: 500;
            font-size: 3.125rem;
          }

          >br {
            display: none;
          }
        }
      }

      dd {
        background: var(--color-beige-light);
        padding: 1.875rem 1.25rem;
      }
    }
  }
}

#home02 {
  .my-cols {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.875rem;

    a {
      display: block;
      width: 17.5rem;
      background: var(--color-gray-light);
      padding-block: 2rem;
      text-decoration: none;
      text-align: center;
      font-size: 1.25rem;

      img {
        display: block;
        width: calc(100% - 4rem);
        margin-inline: auto;
        margin-bottom: 1.875rem;
        border-radius: 0.625rem;
      }

      span {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.625rem;

        &::after {
          content: '';
          display: block;
          width: 1.625rem;
          height: 1.625rem;
          background: url(../img/icon-circle-arrow.svg) center / contain no-repeat;
        }
      }

      >* {
        transition: opacity ease-out .3s;
      }

      &:hover {
        >* {
          opacity: .6;
        }
      }
    }
  }
}

#home03 {
  gap: 2.5rem;
  display: flex;

  .my-sec {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    display: flex;
    width: 100%;
    padding: 1.875rem;
    background: var(--color-beige-light);
    text-align: center;

    /* @media (min-width: 600px) {
      flex-grow: 1;
    } */
  }

  /* .ul {
    overflow: hidden;
  } */

  .btn_wrap {
    margin-top: auto;
  }
}


#news {
  .my-cols {
    gap: 1.25rem;
  }

  article {
    flex: 1;
  }

  aside {
    section {
      width: 15rem;
      padding: 1.25rem;
      margin-bottom: 1.25rem;
      background: var(--color-gray-light);

      .my-title02 {
        gap: .25rem;
        font-size: 1.25rem;
        margin-bottom: 1.125rem;

        &::before {
          width: 1.5rem;
        }

        small {
          font-size: 0.9375rem;
        }
      }

      a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 1.875rem;
        height: 1.875rem;
        font-size: 0.75rem;
        font-weight: 500;
        color: #fff;
        background: var(--color-beige);
        text-decoration: none;
        border-radius: 0.3125rem;
        transition: opacity ease-out .3s;

        &:hover {
          opacity: .8;
        }
      }

      &.-category {
        nav {
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 0.625rem;

          >a {
            width: 10rem;
          }
        }
      }

      &.-archives {
        nav {
          display: flex;
          flex-wrap: wrap;
          gap: 0.625rem;

          >h3 {
            width: 100%;
            text-align: center;
            font-size: 1rem;
            font-weight: bold;
            border-bottom: 1px solid var(--color-beige);
            padding-block: 0.625rem 0.3125rem;
          }
        }
      }
    }
  }
}

#post {
  .my-cols {
    gap: 1.875rem;
  }

  article {
    flex: 1;
  }

  aside {
    dl {
      width: 19.6875rem;

      dt {
        border-radius: 5px 5px 0px 0px;
        background: var(--color-blue);
        color: #fff;
        padding: 0.75rem 0;
        text-align: center;
      }

      dd {
        padding: 0 1.5rem 1.5rem;
        background: var(--color-gray-light);
      }

      .my-news-list li a {
        gap: 0;
        flex-direction: column;
      }
    }
  }
}

#qa {
  section {
    padding-top: 7.5rem;
  }

  .my-cols {
    flex-direction: column;
    gap: 1.25rem;
    max-width: 56.25rem;
    margin-inline: auto;

    >li {
      border-radius: 0.3125rem;
      background: var(--color-gray-light);
      box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
      overflow: hidden;

      >dl {
        >dt {
          font-size: 1rem;

          label {
            position: relative;
            display: block;
            cursor: pointer;
            padding: 1.25rem 4.375rem;

            &:hover {
              opacity: .8;
            }

            &::after {
              content: 'Q';
              position: absolute;
              top: 0;
              bottom: 0;
              left: 1.25rem;
              margin-block: auto;
              font-family: var(--font-montserrat);
              font-size: 2.25rem;
              font-weight: 500;
              color: var(--color-blue);
            }

            input {
              display: none;
            }

            i {
              position: absolute;
              top: 0;
              right: 1.25rem;
              bottom: 0;
              width: 1.125rem;
              height: 1.125rem;
              margin-block: auto;
              background: url(../img/icon-circle-plus.svg) center / contain no-repeat;
            }

            :checked+i {
              background-image: url(../img/icon-circle-minus.svg);
            }
          }
        }

        >dd {
          font-size: 1rem;
          display: grid;
          grid-template-rows: 0fr;
          transition: grid-template-rows ease-out .3s;

          >div {
            overflow: hidden;
            margin: 0;

            >div {
              position: relative;
              padding: 1.25rem 1.25rem 1.25rem 4.375rem;

              &:before {
                content: '';
                position: absolute;
                top: 0;
                right: 1.21875rem;
                left: 1.21875rem;
                height: 0;
                border-top: 1px dashed var(--color-beige);
              }

              &::after {
                content: 'A';
                position: absolute;
                top: 0;
                bottom: 0;
                left: 1.25rem;
                margin-block: auto;
                font-family: var(--font-montserrat);
                font-size: 2.25rem;
                font-weight: 500;
                color: var(--color-red);
              }
            }
          }
        }

        &:has(:checked) {
          dd {
            grid-template-rows: 1fr;
          }
        }
      }
    }
  }
}

#privacy {
  section {
    font-size: 1.125rem;
    border-left: 0.625rem solid var(--color-blue);
    padding-left: 1.25rem;

    +section {
      margin-top: 2.5rem;
    }
  }
}

#store01 {
  figure {
    max-width: 40.625rem;
    margin: 0 auto 2rem;

    img {
      display: block;
      width: 100%;
    }

    figcaption {
      padding-top: 1.25rem;
      text-align: right;
      line-height: 2;
    }
  }

  .my-rows {
    max-width: 56.125rem;
    margin-inline: auto;
  }
}

#store02 {
  margin-top: 7.5rem;

  .my-cols {
    gap: 3.125rem;
    max-width: 66.25rem;
    margin-inline: auto;

    >figure {
      flex: 1;

      img {
        display: block;
        width: 100%;
      }
    }

    >table {
      width: 37.1875rem;

      caption {
        caption-side: top;
        text-align: center;
        padding: 1rem;

        >img {
          width: 14.3125rem;
        }
      }

      tbody {
        tr:nth-child(2n + 1) {
          background: var(--color-beige-light);
        }

        tr {
          border-top: 1px solid var(--color-beige);
          border-bottom: 1px solid var(--color-beige);
        }

        th,
        td {
          padding: 1rem;
        }

        th {
          text-align: center;
          font-weight: inherit;
          color: var(--color-blue);
        }
      }
    }
  }

  >picture>img {
    display: block;
    width: 100%;
    margin-top: 6rem;
  }
}

#store03 {
  .my-cols {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem 6rem;

    >li {
      width: 23.75rem;
      box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.43);

      >img {
        display: block;
        width: 100%;
      }

      >dl {
        padding: 1.25rem;

        dt {
          display: flex;
          align-items: center;
          gap: 1rem;
          color: var(--color-blue);
          font-size: 1.25rem;
          margin-bottom: 0.625rem;

          small {
            font-family: var(--font-montserrat);
            font-size: 1rem;
          }
        }

        dd+dt {
          margin-top: 2rem;
        }

        dd {
          th {
            font-weight: inherit;
            width: 5em;
          }
        }
      }
    }
  }
}

#store04 {
  iframe {
    display: block;
    width: 100%;
    height: 24.5rem;
  }

  dl {
    margin-top: 1.25rem;

    dt {
      font-size: 1.25rem;
      margin-bottom: 1.25rem;
    }

    dd {
      ul {
        list-style: none;
        padding: 0;
        margin: 0;

        li {
          display: flex;
          align-items: center;
          gap: 1.875rem;
          margin-top: 1.875rem;

          img {
            width: 3.4375rem;
            height: 3.4375rem;
          }

          span {
            font-size: 1.25rem
          }

          small {
            font-size: 1rem
          }
        }
      }
    }
  }
}

#strength01 {
  section+section {
    margin-top: 5rem;
  }

  .my-cols {
    gap: 3.125rem;

    >figure {
      flex: 1;

      img {
        display: block;
        width: 100%;
      }
    }

    >dl {
      width: 60%;

      >dt {
        font-size: 1.5625rem;
        color: var(--color-blue);
        margin-bottom: 1.125rem;
      }

      >dd {
        >dl {
          margin-top: 1.875rem;
          line-height: 1.2;

          >dt {
            display: inline-block;
            color: #fff;
            background: var(--color-blue);
            padding: 0.625rem 1.25rem;
            margin-bottom: 0.625rem;
          }
        }
      }
    }

    &.-reverse {
      flex-direction: row-reverse;
    }
  }
}

#strength02 {
  padding-top: 6.25rem;

  >.my-rows {
    gap: 3.75rem;

    >li {
      position: relative;
      padding: 1.25rem 2.5rem 1.25rem 0;
      border-radius: 0.625rem;
      border: 2px solid var(--color-beige);

      +li::before {
        content: '';
        position: absolute;
        top: calc(-3.75rem - 2px);
        right: 0;
        left: 0;
        margin-inline: auto;
        width: 5rem;
        height: 1.875rem;
        clip-path: polygon(0 0, 100% 0, 50% 100%);
        background: var(--color-beige);
      }

      >dl {
        position: relative;
        display: flex;
        align-items: center;
        gap: 2.5rem;

        &::after {
          content: '';
          position: absolute;
          top: 0;
          left: 9.625rem;
          bottom: 0;
          width: 1px;
          background: var(--color-beige);
        }

        >dt {
          width: 9.625rem;
          font-family: var(--font-montserrat);
          font-weight: 500;
          font-size: 3.125rem;
          text-align: center;

          >small {
            display: block;
            font-size: 1.25rem;
          }
        }

        >dd {
          &:nth-of-type(1) {
            flex: 2;
          }

          &:nth-of-type(2) {
            flex: 1;

            img {
              width: 100%;
            }
          }

          >dl {
            >dt {
              display: flex;
              flex-wrap: wrap;
              align-items: center;
              gap: 0.75rem 1.5rem;
              font-size: 25px;
              color: var(--color-blue);
              margin-bottom: 1rem;

              >small {
                display: block;
                padding: 0.3125rem 1.25rem;
                font-size: 1rem;
                background: var(--color-blue);
                color: #fff;
              }
            }

            >dd {
              >.my-rows {
                gap: 1.875rem;
                margin-top: 1.875rem;

                >.my-cols {
                  align-items: center;
                  gap: 1.25rem;

                  >div {
                    width: 18.75rem;

                    img {
                      width: 100%;
                    }
                  }

                  >dl {
                    flex: 1;

                    >dt {
                      color: var(--color-blue);
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}

#products {
  >section {
    padding-top: 5.5rem;
  }

  #products01 {
    .my-lead {
      p {
        text-align: center;
        font-weight: 600;
        color: var(--color-blue);
      }
    }

    .my-rows {
      gap: 1.875rem;

      >li {
        display: flex;
        gap: 1.25rem;

        >figure {
          flex: 1;

          img {
            display: block;
            width: 100%;
          }
        }

        >dl {
          width: 50%;

          >dt {
            display: flex;
            padding-bottom: 1.5625rem;

            >strong {
              display: block;
              background: var(--color-blue);
              color: #fff;
              font-size: 1rem;
              font-weight: normal;
              padding: 0.625rem 1.25rem;
            }
          }
        }
      }
    }

    .-logo {
      display: flex;
      flex-wrap: wrap;
      margin-top: 3.75rem;

      a {
        &:hover {
          opacity: .6;
        }

        img {
          display: block;
          width: 15rem;
        }
      }
    }
  }

  #products02 {
    .my-rows {
      gap: 3.75rem;

      >li {
        display: flex;
        gap: 1.25rem;

        >dl {
          width: 48%;

          >dt {
            display: flex;
            padding-bottom: 1.5625rem;

            >strong {
              display: block;
              background: var(--color-blue);
              color: #fff;
              font-size: 1rem;
              font-weight: normal;
              padding: 0.625rem 1.25rem;
            }
          }

          >dd {
            >dl {
              border-radius: 0.3125rem;
              background: var(--color-beige-light);
              padding: 1.125rem;
              margin-top: 1.25rem;

              >dt {
                font-weight: 600;
                color: var(--color-blue);
                margin-bottom: 0.75rem;
              }

              >dd {
                >.my-cols {
                  flex-wrap: wrap;
                  gap: 0.75rem 1.25rem;

                  >li {
                    padding-left: 1.5rem;
                    background: url(../img/icon-checkbox.svg) top 0.2rem left / 1.0625rem no-repeat;
                  }
                }
              }
            }
          }
        }

        >.my-cols {
          gap: 0.625rem;

          figure {
            >img {
              display: block;
              width: 100%;
            }

            >figcaption {
              font-size: 0.875rem;
              color: #fff;
              text-align: center;
              background: var(--color-blue);
            }
          }
        }
      }
    }

    >dl {
      margin-top: 3.75rem;

      dt {
        font-size: 1.375rem;
        font-weight: 600;
        text-align: center;
        color: var(--color-blue);
        margin-bottom: 2.5rem;
      }

      dd {
        .-logo {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          align-items: center;
          gap: 1.25rem;

          a {
            display: flex;
            align-items: center;
            height: 5rem;
            padding-inline: 1.6rem;

            &:hover {
              opacity: .6;
            }

            img {
              display: block;
            }
          }
        }
      }
    }
  }

  #products03 {
    .my-cols {
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.625rem;
      margin-bottom: 1.5rem;

      >li {
        figure {
          margin: 0;

          figcaption {
            display: block;
            background: var(--color-blue);
            color: #fff;
            font-size: 1.25rem;
            padding: 0.625rem;
            text-align: center;
          }

          img {
            display: block;
            width: 23.875rem;
          }
        }
      }
    }
  }

  #products04 {
    >strong {
      display: block;
      text-align: center;
      font-size: 2.5rem;
      color: var(--color-blue);
    }

    >section {
      padding-top: 2.5rem;
    }

    .my-rows {
      gap: 0.625rem;
      margin-top: 2.5rem;
      width: 100%;
      max-width: 62.5rem;
      text-align: center;
      margin-inline: auto;

      >li {
        padding: 1.5625rem;
        border: 1px solid var(--color-blue);

        >.my-cols {
          align-items: center;
          gap: 1.25rem;

          >dl {
            flex: 2;

            >dt {
              font-size: 1.75rem;
              font-weight: 600;
              color: var(--color-blue);
            }

            >dd {
              font-size: 1.25rem;
              margin-top: 0.625rem;
            }
          }

          >div {
            flex: 1;
            font-size: 1.75rem;
            font-weight: 600;
            background: var(--color-blue);
            color: #fff;
            padding-block: 3.125rem;
          }
        }

        >dl {
          background: var(--color-beige-light);
          padding: 1.625rem;
          margin-top: 1.5625rem;

          >dt {
            font-size: 1.75rem;
            font-weight: 600;
            color: var(--color-blue);
          }

          >dd {
            font-size: 1.25rem;
            margin-top: 0.625rem;
          }
        }
      }
    }
  }
}

#calendar {
  .my-container {
    text-align: center;
    font-size: 1.25rem;
  }

  .my-cols {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }

  .-red {
    color: var(--color-red);
  }

  .-type1 {
    background: #C2D0E4;
  }

  .-type2 {
    background: #F2EEE8;
  }

  .-type3 {
    background: #C9EAF2;
  }

  table {
    thead {
      td {
        background: var(--color-blue);
        color: #fff;
      }
    }

    tbody {
      th {
        padding: 1rem .7rem .5rem;
      }

      td {
        font-family: var(--font-montserrat);
      }
    }
  }

  .-legend {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;

    dd {
      width: 2rem;
      height: 2rem;

      &+dt {
        margin-left: 2rem;
      }
    }
  }
}

.my-footer {
  position: relative;
  padding-top: 7.5rem;

  .my-footer-top {
    padding-bottom: 7.5rem;
  }

  .my-footer-bottom {
    background: url(../img/footer-bg.jpg) center / cover no-repeat;
    padding-top: 3.125rem;
    color: #fff;

    .-btn-top {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 7.625rem;
      height: 7.625rem;
      border: 2px solid #fff;
      border-radius: 50%;
      background: var(--color-link);
      color: #fff;
      text-decoration: none;
      position: absolute;
      top: -8.375rem;
      right: var(--padding-container);
      transition: background ease-out .3s;

      &::before {
        content: '';
        width: 1.25rem;
        height: 1.25rem;
        background: url(../img/icon-arrow-up-w.svg) center / contain no-repeat;
        margin-bottom: .5rem;
      }

      &:hover {
        background: var(--color-link-light);
      }
    }

    .my-cols {
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 2rem;
    }

    small {
      display: block;
      text-align: center;
      font-family: var(--font-montserrat);
      font-size: 0.875rem;
      padding-block: 5rem 1rem;
    }
  }

  .my-footer-logo {
    display: block;
    margin-bottom: 1rem;
    transition: opacity ease-out .3s;

    img {
      width: 16rem;
    }

    &:hover {
      opacity: .6;
    }
  }

  .my-footer-map {
    iframe {
      display: block;
      width: 25.5rem;
      height: 15rem;
    }
  }

  .my-footer-contact {
    .-tel {
      display: flex;
      align-items: center;
      font-family: var(--font-montserrat);
      font-size: 1.875rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      color: inherit;
      text-decoration: none;
      transition: color ease-out .3s;

      svg {
        display: block;
        width: 1.875rem;
        margin-right: .5rem;

        path {
          transition: fill ease-out .3s;
        }
      }

      &:hover {
        color: var(--color-link-light);

        svg {
          path {
            fill: var(--color-link-light);
          }
        }
      }
    }

    .-open {
      margin-block: .5rem;

      strong {
        display: inline-block;
        font-family: var(--font-montserrat);
        font-weight: 500;
        font-size: 1.25rem;
        letter-spacing: 0.05em;
        margin-right: 1rem;
      }
    }

    .-sns {
      a {
        margin-right: 1rem;

        svg {

          circle,
          path {
            transition: fill ease-out .3s;
          }
        }

        &:hover {
          svg {
            circle {
              fill: var(--color-link-light);
            }

            path {
              fill: #fff;
            }
          }
        }
      }
    }
  }

  .my-footer-nav {
    ul {
      list-style: none;
      padding: 0;
      margin: 0;

      li {
        margin-bottom: .5rem;

        a {
          display: inline-flex;
          align-items: center;
          color: inherit;
          text-decoration: none;
          transition: color ease-out .3s;

          &::before {
            content: '';
            width: 1rem;
            height: 1px;
            background: #fff;
            margin-right: .5rem;
            transform: background-color ease-out .3s;
          }

          &:hover {
            color: var(--color-link-light);

            &::before {
              background-color: var(--color-link-light);
            }
          }
        }
      }
    }
  }
}

/* `xxl` applies to x-large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {}

/* `xl` applies to large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {}

/* `lg` applies to medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .my-top {
    flex-direction: column-reverse;
    margin-bottom: 5rem;
  }

  .my-sec {
    margin-top: 5rem;
  }

  .my-header {
    [for="menu"] {
      display: block;
      position: fixed;
      top: 2.1875rem;
      right: var(--padding-container);
      width: 1.875rem;
      height: 1.875rem;
      background: url(../img/icon-menu.svg) center / contain no-repeat;
      z-index: 12;
    }

    >.my-container {
      justify-content: center;

      .my-header-logo {
        flex-direction: column;
        gap: 0.5rem;

        span {
          letter-spacing: .35em;

          div {
            display: none;
          }
        }
      }
    }

    .my-header-nav {
      display: none;
    }

    :checked~.my-header-nav {
      position: fixed;
      top: 0;
      right: 0;
      left: 0;
      height: 100svh;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: var(--color-blue);
      z-index: 11;

      .-sns {
        position: relative;
        top: auto;
        right: auto;
        display: block;
        text-align: center;
        margin-bottom: 1.5rem;

        a {
          margin-inline: .5rem;
        }
      }

      .my-cols {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;

        .-link {
          color: #fff;
          padding: 0;

          &:hover {
            color: #fff;
            text-decoration: none;
          }

          small {
            display: none;
          }
        }

        li:has(.-link) {
          +li:has(.-link)::before {
            display: none;
          }

          .-hover {
            display: none;
          }

          [for="menu_products"] {
            display: flex;
            justify-content: center;
            align-items: center;
            color: #fff;
            width: 1.7rem;
            height: 1.7rem;
            border: 1px solid #fff;
            position: absolute;
            top: 0;
            left: calc(50% + 4.3rem);
          }

          :checked {
            +[for="menu_products"] {
              transform: rotate(180deg);
            }

            ~.-hover {
              display: block;
              width: 12rem;
              height: auto;
              position: static;
              border: 1px solid #fff;
            }
          }
        }

        .my-btn02 {
          position: static;
          background: #fff;
          color: var(--color-link);

          &:hover {
            background: #fff;
          }
        }
      }
    }

    :checked~[for="menu"] {
      background-image: url(../img/icon-close.svg);
    }
  }

  .my-main {
    padding-top: 6rem;
  }

  /* #home03 {
    .my-news-list a {
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
    }
  } */

  #post {
    .my-cols {
      flex-direction: column;
      gap: 5rem;
    }

    aside {
      dl {
        width: 100%;

        dt {
          text-align: center;
        }
      }
    }

    .my-news-list a {
      flex-direction: row;
    }
  }

  #store02 {
    .my-cols {
      >table {
        width: auto;
      }
    }

    >picture>img {
      width: 100vw;
      max-width: none;
      margin: 3.25rem calc(var(--padding-container) * -1) 0;
    }
  }

  #products {
    #products03 {
      .my-cols {
        justify-content: space-between;
        column-gap: 0;

        >li {
          width: 48%;

          figure {
            img {
              width: 100%;
            }
          }
        }
      }
    }
  }

  .my-footer {
    .my-footer-bottom {
      padding-top: 5rem;

      .-btn-top {
        top: -10rem;
      }

      .my-cols {
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 3rem;
      }
    }

    .my-footer-map {
      width: 100%;

      iframe {
        width: 100%;
      }
    }
  }
}

/* `md` applies to small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  .my-title02 {
    font-size: 2rem;
  }

  .my-title04 {
    font-size: 2.3rem;
    text-align: left;
  }

  .my-title05 {
    font-size: 1.25rem;
  }

  .my-link01 {
    font-size: 1rem;
  }

  .my-lead {
    p {
      text-align: left;
    }
  }

  #home03 {
    flex-direction: column;
  }

  /* .my-cols:has(#home03) {
    flex-direction: column;

    section {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      background: var(--color-beige-light);
      padding: 1.875rem;
      text-align: center;
      width: 100%;
    } */

  #home04 {
    margin-top: 0;
    text-align: left;
  }

  #news {
    .my-cols {
      flex-direction: column;
      gap: 3.125rem;
    }

    article {
      flex: 1;
    }

    aside {
      section {
        width: 100%;
      }
    }
  }

  #store01 {
    .my-title04 {
      text-align: center;
    }
  }

  #store02 {
    .my-cols {
      flex-direction: column;

      >table {
        display: block;
        width: 100%;

        caption {
          display: block;
        }

        tbody {
          display: block;

          tr {
            display: flex;
          }

          th {
            width: 6em;
            /* 項目名の幅を固定 */
            flex-shrink: 0;
            /* 幅が縮まないように設定 */
            text-align: center;
          }

          td {
            flex-grow: 1;
            /* 残りの幅をすべて使用 */
          }
        }
      }
    }
  }

  #store03 {
    .my-cols {
      flex-direction: column;

      >li {
        width: 100%;
      }
    }
  }

  #store04 {
    iframe {
      height: 24.375rem;
    }

    dl {
      margin-top: 1.125rem;

      dt {
        margin-bottom: 1.125rem;
      }

      dd {
        ul {
          li {
            flex-direction: column;
            align-items: center;
            gap: 0.625rem;
          }
        }
      }
    }
  }

  #strength01 {
    .my-cols {
      flex-direction: column;

      >dl {
        width: 100%;
      }

      &.-reverse {
        flex-direction: column;
      }
    }
  }

  #strength02 {
    >.my-rows {
      >li {
        padding: 1.25rem 1.5rem;

        >dl {
          flex-direction: column;
          gap: 1.25rem;

          &::after {
            top: 7.1875rem;
            right: 0;
            left: 0;
            bottom: auto;
            width: auto;
            height: 1px;
          }

          >dt {
            width: 100%;
          }

          >dd {
            &:nth-of-type(2) {
              flex: 1;
              width: 100%;
            }

            >dl {
              >dt {
                flex-direction: column;
                gap: 0.75rem;
                padding-top: 1rem;
              }

              >dd {
                >.my-rows {
                  >.my-cols {
                    flex-direction: column;
                    gap: 1.25rem;

                    >div {
                      width: 100%;
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }

  #products {
    >section {
      padding-top: 6rem;
    }

    #products01 {
      .my-rows {
        >li {
          flex-direction: column;

          >dl {
            width: 100%;
          }
        }
      }

      .-logo {
        >a {
          width: 50%;

          img {
            width: 100%;
          }
        }
      }
    }

    #products02 {
      .my-rows {
        >li {
          flex-direction: column;

          >dl {
            width: 100%;

            >dd {
              >dl {
                >dt {
                  text-align: center;
                }
              }
            }
          }

          >.my-cols {
            justify-content: center;
          }
        }
      }

      >dl {
        dd {
          .-logo {
            gap: 1.25rem 0;

            a {
              justify-content: center;
              width: 50%;
              padding-inline: 0;

              &:hover {
                opacity: .6;
              }

              img {
                display: block;
              }
            }
          }
        }
      }
    }

    #products04 {
      >strong {
        font-size: 1.25rem;
      }

      .my-rows {
        margin-top: 1.25rem;

        >li {
          padding: 0.3125rem;

          >.my-cols {
            flex-direction: column;
            gap: 0;

            >dl {
              flex: 1;
              padding-block: 1.5625rem;

              >dt {
                font-size: 1.25rem;
              }

              >dd {
                font-size: 1rem;
              }
            }

            >div {
              width: 100%;
              font-size: 1.25rem;
              padding-block: 1rem;

              >br {
                display: none;
              }
            }
          }

          >dl {
            padding: 0.625rem;
            margin-top: 1rem;

            >dt {
              font-size: 1.25rem;
            }

            >dd {
              font-size: 1rem;

              >br {
                display: none;
              }
            }
          }
        }
      }
    }
  }
}

/* `sm` applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  :root {
    font-size: calc(100vw * 16 / 393);
  }

  .my-mv {
    /* font-size: 1.875rem; */
    aspect-ratio: 1 / 1;
    background-image: url(../img/home-mv-sp.jpg);
  }

  .my-title01 {
    background-image: url(../img/title01a-bg-sp.jpg);

    &.-a {
      background-image: url(../img/title01a-bg-sp.jpg);
    }

    &.-b {
      background-image: url(../img/title01b-bg-sp.jpg);
    }

    &.-c {
      background-image: url(../img/title01c-bg-sp.jpg);
    }

    &.-d {
      background-image: url(../img/title01d-bg-sp.jpg);
    }

    &.-e {
      background-image: url(../img/title01e-bg-sp.jpg);
    }

    &.-g {
      background-image: url(../img/title01g-bg-sp.jpg);
    }
  }

  .my-pagination {
    font-size: 0.8rem;
  }

  .my-news-post {
    nav {
      justify-content: center;

      >div {
        flex: auto;
        width: 50%;
      }

      .my-btn01 {
        order: 3;
        margin-top: 2rem;
      }
    }
  }

  .my-news-list li a {
    flex-direction: column;
    gap: 0;
  }

  .my-anker01 {
    gap: 0.75rem;
    padding: 1.875rem 0;

    a {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 0.5rem;
      width: 10rem;
      padding: 0.3rem 0.25rem 1.25rem 0.5rem;

      &::before {
        position: static;
        flex-shrink: 0;
        width: 2rem;
        height: 2rem;
      }
    }
  }

  .my-anker02 {
    flex-direction: column;
    padding-inline: 0;

    a {
      width: 100%;
    }
  }

  .my-header {
    [for="menu"] {
      top: 1.25rem;
    }
  }

  #home01 {
    .my-cols {
      dl {
        width: 100%;
      }
    }
  }

  .my-footer {
    .my-footer-bottom {
      .my-cols {
        justify-content: center;
      }
    }

    margin-bottom: 44px;
  }
}

@media (min-width: 575.99px) {
  .mobile-fotter-menu {
    display: none;
  }
}

.mobile-fotter-menu {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0px;
  /* opacity: 0.9; */
  z-index: 99;


  ul {
    display: flex;
    padding: 0px;
    margin: 0px;
    width: 100%;
    height: 45px;
    background-color: #0197B6;
    box-shadow: 0 -1px 3px 2px #0197B6;
    /* background-color: #225298;
    box-shadow: 0 -1px 3px 2px #225298; */

    /* #51B1DC; #2596E4 #0197B6 #225298;*/

    li {
      list-style: none;
      width: 33.33%;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0.9;
      position: relative;

      /* &:first-child {
        background-color: #38b435;
      }
      */
      +li::before {
        content: '';
        position: absolute;
        left: 0;
        width: 2px;
        height: 45px;
        background-color: #037d96;
        /* background-color: #073c8b; */
      }

      /* &:nth-child(2) {
        border: 2px solid;
        border-color: transparent#037d96 transparent #037d96;
      } */

      /*&:last-child {
        background: #f3a324;
      } */

      a {
        color: #fff;
        display: block;
        text-decoration: none;
        font-family: var(--font-sans-serif);
        /* font-weight: bold; */
        /* border: 1px solid #000; */

        img {
          width: 25px;
          height: 25px;
          margin: auto 5px 3px 0px;
          /* margin-bottom: 3px; */
          /* border: 1px solid #000; */
        }
      }
    }
  }
}
