@charset "UTF-8";
/* stylesheet */
/* A Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

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

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

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

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

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

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*------------------------------------------------------

    BASE

------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  color: #212121;
  width: 100%;
  margin: 0;
  padding: 0;
  word-wrap: break-word;
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: hidden;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.5em;
}

h3 {
  font-size: 1.17em;
}

h4 {
  font-size: 1.12em;
}

h5 {
  font-size: 0.83em;
}

h6 {
  font-size: 0.75em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  line-height: 1.4;
}

img {
  vertical-align: bottom;
  height: auto;
}

ul,
ol {
  margin: 0;
  padding: 0;
}
ul li,
ol li {
  list-style: none;
}

a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
.container {
  width: 94%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}

/* PC FIRST */
.d-pc {
  display: inline-block;
}

.d-sp {
  display: none;
}

.ex-tab {
  display: none;
}

/*------------------------------------------------------

    HEADER

------------------------------------------------------*/
.header {
  position: relative;
  padding: 11px 0;
  border-bottom: 4px solid #f52d39;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__title {
  width: 10%;
}
.header__title a img {
  width: 70px;
  height: auto;
}

/* PC NAV */
.nav {
  width: 80%;
}
.nav__lists {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__lists li {
  font-size: 18px;
  font-weight: 700;
}
.nav__lists li a {
  color: #212121;
}
.nav__lists li a:hover {
  color: #f52d39;
}

/* SP NAV */
.button_container {
  position: absolute;
  top: 50%;
  right: 2%;
  translate: 0 -50%;
  height: 17px;
  width: 30px;
  cursor: pointer;
  z-index: 100;
  transition: opacity 0.25s ease;
}
.button_container:hover {
  opacity: 0.7;
}
.button_container.active .top {
  transform: translateY(7px) translateX(0) rotate(45deg);
  background: #fff;
}
.button_container.active .middle {
  opacity: 0;
  background: #fff;
}
.button_container.active .bottom {
  transform: translateY(-7px) translateX(0) rotate(-45deg);
  background: #fff;
}
.button_container span {
  background: #ff5252;
  border: none;
  height: 2px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.35s ease;
  cursor: pointer;
}
.button_container span:nth-of-type(2) {
  top: 7px;
}
.button_container span:nth-of-type(3) {
  top: 14px;
}

.overlay {
  position: fixed;
  background: #ff5252;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s, height 0.35s;
  overflow: hidden;
  z-index: 1;
}
.overlay.open {
  opacity: 0.95;
  visibility: visible;
  height: 100%;
}
.overlay.open li {
  animation: fadeInRight 0.5s ease forwards;
  animation-delay: 0.35s;
}
.overlay.open li:nth-of-type(2) {
  animation-delay: 0.4s;
}
.overlay.open li:nth-of-type(3) {
  animation-delay: 0.45s;
}
.overlay.open li:nth-of-type(4) {
  animation-delay: 0.5s;
}
.overlay nav {
  position: relative;
  height: 70%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}
.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 100%;
}
.overlay ul li {
  display: block;
  height: 16.6666666667%;
  min-height: 50px;
  position: relative;
  opacity: 0;
}
.overlay ul li a {
  display: block;
  position: relative;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}
.overlay ul li a:hover:after, .overlay ul li a:focus:after, .overlay ul li a:active:after {
  width: 18%;
}
.overlay ul li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  transform: translateX(-50%);
  height: 3px;
  background: #fff;
  transition: 0.35s;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
/*------------------------------------------------------

    ABOUT

------------------------------------------------------*/
.about {
  padding: 65px 0 55px;
}
.about__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  width: 85%;
  height: 80%;
  background-color: #fffded;
  z-index: -1;
}
.about__award {
  width: 335px;
  height: 335px;
  background-image: url("../images/award_bg.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.about__award figure {
  background-color: #fff;
  padding: 2px;
}
.about__award figure img {
  width: 90px;
  height: auto;
}
.about__award p {
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}
.about__description {
  width: calc(100% - 300px);
  padding: 0 40px;
}
.about__description h2 {
  border-bottom: 3px solid #f5e17d;
  font-size: 34px;
  font-weight: 600;
  padding-bottom: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.about__description p {
  font-size: 14px;
  line-height: 2;
}

/*------------------------------------------------------

    COMMON

------------------------------------------------------*/
.c-header {
  text-align: center;
  margin-bottom: 80px;
}
.c-header__title {
  position: relative;
  font-size: 34px;
  font-weight: 600;
  padding-bottom: 50px;
}
.c-header__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  width: 185px;
  height: 3px;
  background-color: #f52d39;
}

/*------------------------------------------------------

    EXAMPLE

------------------------------------------------------*/
.example {
  padding: 0 0 140px;
}
.example__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.example__cont {
  display: flex;
  justify-content: center;
}
.example__cont--lower {
  flex-wrap: wrap;
}
.example__item {
  width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 12px;
}
.example__item figure {
  position: relative;
  margin: 0;
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1; /* 正方形にする */
  overflow: hidden;
}
.example__item figure img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.example__item figure::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 260px;
  height: 260px;
  background-color: #faf5f0;
  border-radius: 50%;
  z-index: -1;
}
.example__item h3 {
  min-height: 65px;
  line-height: 1.8;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
}

/*------------------------------------------------------

    FLOW

------------------------------------------------------*/
.flow {
  background-color: #faf4ee;
  padding: 130px 0 160px;
}
.flow__cont {
  padding: 0 125px;
}
.flow__item {
  position: relative;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 10px;
}
.flow__num {
  position: absolute;
  top: -13px;
  left: -6px;
  z-index: 1;
  width: 62px;
  height: 62px;
}
.flow__num img {
  width: 100%;
  height: auto;
}
.flow__txt {
  width: 70%;
  padding-top: 40px;
  padding-left: 70px;
  padding-bottom: 24px;
}
.flow__txt h3 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 22px;
  letter-spacing: 2px;
}
.flow__txt p {
  line-height: 2.1;
  margin-bottom: 5px;
}
.flow__txt p strong {
  font-size: 18px;
  font-weight: 900;
  margin-left: 2px;
}
.flow__list {
  display: flex;
}
.flow__list li {
  position: relative;
  padding-left: 24px;
}
.flow__list li::before {
  content: "■";
  position: absolute;
  color: #d73c3d;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  font-size: 14px;
}
.flow__list--01 {
  gap: 20px;
}
.flow__list--02 {
  flex-direction: column;
}
.flow__remark {
  margin-top: 18px;
}
.flow__remark div {
  display: flex;
  align-items: center;
}
.flow__remark div dt,
.flow__remark div dd {
  color: #fff;
  width: 210px;
  text-align: center;
  font-size: 13px;
  line-height: 1;
  min-height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow__remark div dt small,
.flow__remark div dd small {
  font-size: 12px;
  margin-left: 4px;
  translate: 0 1px;
}
.flow__remark div dt strong,
.flow__remark div dd strong {
  font-size: 18px;
  font-weight: 700;
  margin-left: 4px;
  margin-right: 2px;
  translate: 0 -1px;
}
.flow__remark div dt {
  background-color: #910a0b;
}
.flow__remark div dd {
  background-color: #d73c3d;
}
.flow__img {
  width: 28%;
}
.flow__arrow {
  text-align: center;
}
.flow__arrow img {
  margin: 0 auto -16px;
  width: 68px;
  position: sticky;
  z-index: 1;
}
.flow__point {
  background-color: #fff;
  margin-top: 92px;
}
.flow__point h4 {
  background-color: #d73c3d;
  color: #fff;
  font-size: 28px;
  font-weight: 400;
  background-image: url(../images/icon_attenstion.png);
  background-repeat: no-repeat;
  background-position: left 20px center;
  background-size: 55px;
  padding: 20px 0 20px 90px;
  letter-spacing: 2px;
}
.flow__point p {
  padding: 24px 55px;
  font-size: 14px;
}

/*------------------------------------------------------

    PRODUCTION

------------------------------------------------------*/
.production {
  position: relative;
  padding: 120px 0 170px;
}
.production__header {
  position: absolute;
  top: -5px;
  left: 137px;
}
.production__header h2 {
  color: #d83f40;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 5px;
  letter-spacing: 2px;
}
.production__header p {
  font-size: 20px;
}
.production__img {
  padding: 28px 138px 0;
  margin-bottom: 26px;
}
.production__cont {
  padding: 0 125px;
}
.production__cont h3 {
  background-color: #eda7a8;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 1px;
}
.production__cont h3 img {
  width: 50px;
  height: auto;
}
.production__cont h3 small {
  font-size: 20px;
  translate: -8px 0;
}
.production__inner {
  display: flex;
  justify-content: space-between;
}
.production__inner-block {
  position: relative;
  width: 48%;
}
.production__inner-block img.omikuji {
  position: absolute;
  top: -28px;
  right: -6px;
  width: 115px;
  height: auto;
}
.production__txt {
  padding: 20px 0 30px;
}
.production__txt h4 {
  position: relative;
  padding-left: 32px;
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 10px;
}
.production__txt h4::before {
  content: "■";
  position: absolute;
  color: #d73c3d;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}
.production__txt p {
  font-size: 15px;
  line-height: 2.1;
}
.production__txt .color-red {
  color: #d73c3d;
}
.production__txt .color-red img {
  display: inline-block;
}
.production__txt img.production-point01 {
  width: 120px;
  height: auto;
  margin: 0 6px;
  translate: 0 -4px;
}
.production__point {
  background-color: #fdf5f5;
  margin-top: 28px;
}
.production__point h5 {
  background-color: #d73c3d;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  background-image: url("../images/icon_attenstion.png");
  background-repeat: no-repeat;
  background-position: left 22px center;
  background-size: 55px;
  padding: 14px 0 14px 90px;
}
.production__point ul {
  padding: 15px 48px;
}
.production__point ul li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
}
.production__point ul li::before {
  content: "■";
  position: absolute;
  color: #d73c3d;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  font-size: 14px;
}

/*------------------------------------------------------

    TYPE

------------------------------------------------------*/
.type {
  background-color: #faf4ee;
  padding: 115px 0 80px;
}
.type__cont h3 {
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 75px;
  letter-spacing: 2px;
}
.type__inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 35px;
  padding: 0 125px;
}
.type__item {
  width: 32%;
  background-color: #fff;
  padding: 12px 12px 20px;
}
.type__txt h4 {
  text-align: center;
  color: #d73c3d;
  font-size: 20px;
  font-weight: 500;
  padding: 15px 0;
  margin-bottom: 7px;
}
.type__txt p {
  line-height: 2.1;
}
.type__note {
  text-align: center;
  font-size: 14px;
}

/*------------------------------------------------------

    LOT

------------------------------------------------------*/
.lot {
  background-color: #faf4ee;
  padding: 80px 0;
}
.lot__cont {
  padding: 0 125px;
}
.lot__table-wrap {
  margin-bottom: 36px;
}
.lot__table-wrap table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 5px;
}
.lot__table-wrap table tr th {
  width: 210px;
  background-color: #ca3c3b;
  color: #fff;
}
.lot__table-wrap table tr td {
  width: calc(100% - 70px);
  background-color: #fff;
  text-align: center;
  padding: 15px 0;
  font-size: 19px;
  font-weight: 500;
}
.lot__table-wrap table tr td img.lot-type {
  margin: 0 auto 12px;
  height: 90px;
  width: auto;
}
.lot__table-wrap table tr td img.num {
  display: inline-block;
  height: 24px;
  width: auto;
  margin: 0 4px;
  vertical-align: -2px;
}
.lot__table-wrap table tr td img.num--1000 {
  vertical-align: -6px;
}
.lot__table-wrap table tr:first-child td {
  padding: 40px 0 30px;
}
.lot__note {
  text-align: center;
  font-size: 14px;
}

/*------------------------------------------------------

    PRICE

------------------------------------------------------*/
.price {
  padding: 150px 0 150px;
}
.price__cont {
  text-align: center;
}
.price__cont p {
  font-weight: 500;
  font-size: 20px;
}

/*------------------------------------------------------

    DOWNLOAD

------------------------------------------------------*/
.download {
  margin: 0;
  padding: 90px 0;
  background-color: #9d0611;
  color: #fff;
  text-align: center;
}
.download__title {
  width: 136px;
  margin: 0 auto;
}
.download__title img {
  width: 100%;
  height: auto;
}
.download__content {
  padding-top: 60px;
}
.download__subtitle {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}
.download__btn {
  margin: 25px auto 20px;
  width: 90%;
  max-width: 400px;
}
.download__btn a {
  color: #ffffff;
  font-size: 24px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  border: 2px solid #ffffff;
  position: relative;
  overflow: hidden;
}
.download__btn a .name {
  z-index: 1;
}

.download__btn a::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    transform: translateX(-100%);
    transition: transform 0.5s;
    z-index: 1;
}

.download__btn a:hover {
  color: #861b20;
}
.download__btn a:hover::before {
  transform: translateX(0);
}
/*------------------------------------------------------

    contactBox

------------------------------------------------------*/
.contactBox {
  margin: 0;
  padding: 90px 0;
  background-color: #faf4ee;
  color: #212121;
}

.contactBox .head {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-align: center;
  width: 80%;
  max-width: 400px;
  margin: 0 auto;
  padding: 0 0 20px 0;
  border-bottom: 1px solid #212121;
}

.contactBox .ttl01 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.6;
  text-align: center;
  margin: 20px 0;
}

.contactBox .time {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0;
}

.contactBox .telList {
  margin: 10px 0 0 0;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contactBox .telList dt {
  width: 30px;
  margin: 0 15px 0 0;
}

.contactBox .telList dd {
  font-size: 4.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0;
}

.contactBox .btnMail {
  max-width: 332px;
  margin: 1em auto 0;
  font-size: 1.8rem;
}

.contactBox .btnMail a {
  display: block;
  color: #303030;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  padding: 1em 0;
  background: #ffffff;
  border-radius: 100px;
  transition: 0.3s;
}

.contactBox .btnMail a::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin: -5px 10px 0 0;
  width: 24px;
  height: 24px;
  background: url("../images/contact_icon_mail.svg") center center no-repeat;
  background-size: contain;
}

.contactBox .btnMail a:hover {
  opacity: 0.8;
}

@media only screen and (max-width: 767px) {
  .contactBox {
    padding: 40px 0;
  }
  .contactBox .head {
    font-size: 2.1rem;
  }
  .contactBox .ttl01 {
    font-size: 1.8rem;
    margin-top: 2em;
  }
  .contactBox .time {
    font-size: 1.2rem;
  }
  .contactBox .telList dt {
    width: 22px;
    margin: 0 10px 0 0;
  }
  .contactBox .telList dd {
    font-size: 3.4rem;
  }
  .contactBox .telList dd a {
    color: #ffffff;
    text-decoration: none;
  }
  .contactBox .btnMail {
    max-width: 250px;
    margin-top: 2em;
    font-size: 1.4rem;
  }
  .contactBox .btnMail a::before {
    margin: -5px 10px 0 0;
    width: 18px;
    height: 18px;
  }
}
/*------------------------------------------------------

    OFFICE

------------------------------------------------------*/
.office {
  padding: 80px 0 0;
  color: #231815;
}
.office__lists {
  padding: 0 90px;
}
.office__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px 0;
  font-size: 15px;
}
.office__name {
  width: 14%;
}
.office__address {
  width: 52%;
}
.office__tel {
  width: 17%;
}
.office__fax {
  width: 17%;
}

/*------------------------------------------------------

    FOOTER

------------------------------------------------------*/
.footer {
  padding: 30px 0;
  background: #ffffff;
  position: relative;
}
.footer ul.siteList {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 0 auto 0;
  padding-top: 70px;
  display: flex;
  justify-content: center;
}
.footer ul.siteList li {
  width: 344px;
  margin: 0;
}
.footer ul.siteList li .icon {
  display: block;
  z-index: 3;
}
.footer ul.siteList li .icon svg {
  fill: currentColor;
}
.footer ul.siteList li.shop .icon {
  width: 46px;
}
.footer ul.siteList li.official .icon {
  width: 51px;
}
.footer ul.siteList li .name {
  display: block;
  z-index: 4;
  width: calc(100% - 60px);
  text-align: center;
}
.footer ul.siteList li a {
  color: #472226;
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 15px;
  border: 2px solid #472226;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
.footer ul.siteList li a:hover {
  color: #ffffff;
  background: #472226;
}
.footer ul.siteList li a:hover .icon svg * {
  fill: #ffffff;
}
.footer ul.snsList {
  margin: 70px auto 0;
  display: flex;
  justify-content: center;
  gap: 55px;
}
.footer ul.snsList li {
  margin: 0;
  width: 68px;
}
.footer .copyright {
  font-size: 1.2rem;
  margin: 4em 2em 0;
  padding-bottom: 30px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .footer {
    padding: 0;
  }
  .footer ul.siteList {
    gap: 30px;
    flex-direction: column;
    align-items: center;
  }
  .footer ul.siteList li {
    width: 300px;
  }
  .footer ul.siteList li.shop .icon {
    width: 34px;
  }
  .footer ul.siteList li.official .icon {
    width: 38px;
  }
  .footer ul.siteList li a {
    font-size: 1.4rem;
    padding: 0 25px;
  }
  .footer ul.snsList {
    margin: 40px auto 0;
    gap: 40px;
  }
  .footer ul.snsList li {
    width: 45px;
  }
  .footer .copyright {
    font-size: 1rem;
  }
}
a.scroll-to-top {
  position: fixed;
  bottom: 4%;
  right: 2%;
}

.btndownload {
  position: fixed;
  right: 0;
  bottom: 100px;
  width: 120px;
  margin: 0;
  z-index: 700;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.btndownload.show {
  opacity: 1;
  pointer-events: auto;
}
.btndownload a:hover {
  opacity: 0.8;
}

@media only screen and (max-width: 767px) {
  .btndownload {
    width: 105px;
    bottom: 115px;
  }
}
/*------------------------------------------------------

    RESPO

------------------------------------------------------*/
@media (max-width: 1199.98px) {
  .flow__cont {
    padding: 0;
  }
  .production__img {
    padding: 28px 0 0;
  }
  .production__cont {
    padding: 0;
  }
  .type__inner {
    padding: 0;
  }
  .lot__cont {
    padding: 0;
  }
  .office__lists {
    padding: 0;
  }
}
@media (max-width: 991.98px) {
  .nav__lists li {
    font-size: 12px;
  }
  .ex-pc {
    display: none;
  }
  .ex-tab {
    display: block;
  }
  .ex-tab .example__cont {
    flex-wrap: wrap;
  }
  .production__header {
    position: absolute;
    top: -95px;
    left: 0;
  }
  .production__inner {
    flex-direction: column;
  }
  .production__inner-block {
    width: 100%;
  }
  .office__item {
    font-size: 11px;
  }
  .lot__table-wrap table tr td {
    font-size: 16px;
  }
  .lot__table-wrap table tr td img.num {
    height: 20px;
  }
}
@media (max-width: 767.98px) {
  .nav {
    width: 86%;
  }
  .nav__lists li {
    font-size: 10px;
  }
  .flow__list--01 {
    gap: 0px;
    flex-direction: column;
  }
  .type__note,
  .lot__note {
    text-align: left;
  }
  .type__note .d-sp,
  .lot__note .d-sp {
    display: inline-block !important;
  }
  .office__item {
    font-size: 11px;
  }
}
@media (max-width: 735px) {
  .office {
    padding: 50px 0 0;
    color: #231815;
  }
  .office__lists {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .office__item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
    font-size: 12px;
    flex-direction: column;
  }
  .office__name {
    width: 100%;
    font-weight: 700;
  }
  .office__address {
    width: 100%;
  }
  .office__tel {
    width: 100%;
  }
  .office__fax {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .d-pc {
    display: none;
  }
  .d-sp {
    display: inline-block;
  }
  .container {
    width: 94%;
    min-width: auto;
    max-width: 94%;
  }
  .about {
    padding: 40px 0;
    background-color: #fffded;
  }
  .about__inner {
    flex-direction: column;
  }
  .about__inner::before {
    content: none;
  }
  .about__award {
    width: 300px;
    height: 300px;
    gap: 20px;
  }
  .about__award p {
    font-size: 12px;
  }
  .about__description {
    width: 100%;
    padding: 20px 0;
  }
  .about__description h2 {
    border-bottom: 3px solid #f5e17d;
    font-size: 24px;
    font-weight: 600;
    padding-bottom: 10px;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-align: center;
  }
  .about__description p {
    line-height: 1.6;
    font-size: 14px;
  }
  .c-header {
    margin-bottom: 40px;
  }
  .c-header__title {
    font-size: 24px;
    padding-bottom: 20px;
  }
  .c-header__title::before {
    width: 80px;
  }
  .example {
    padding: 50px 0;
  }
  .example__cont {
    flex-direction: column;
    align-items: center;
  }
  .example__item {
    gap: 0;
  }
  .example__item h3 {
    font-size: 14px;
  }
  .flow {
    padding: 50px 0;
  }
  .flow__cont {
    padding: 20px 0 0;
  }
  .flow__item {
    flex-direction: column-reverse;
  }
  .flow__num {
    top: 0px;
    left: 0px;
    width: 50px;
    height: 50px;
  }
  .flow__txt {
    width: 100%;
    padding: 20px 10px;
  }
  .flow__txt h3 {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 14px;
  }
  .flow__txt p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
  }
  .flow__txt p strong {
    font-size: 18px;
    font-weight: 900;
    margin-left: 2px;
  }
  .flow__list li {
    padding-left: 20px;
    font-size: 12px;
  }
  .flow__list li::before {
    content: "■";
    position: absolute;
    color: #d73c3d;
    top: 50%;
    left: 0;
    translate: 0 -50%;
    font-size: 12px;
  }
  .flow__list--01 {
    gap: 0px;
    flex-direction: column;
  }
  .flow__remark {
    margin-top: 10px;
  }
  .flow__remark div {
    flex-direction: column;
  }
  .flow__remark div dt,
  .flow__remark div dd {
    width: 100%;
    font-size: 12px;
    min-height: 30px;
  }
  .flow__remark div dt small,
  .flow__remark div dd small {
    font-size: 11px;
    translate: 0 0px;
  }
  .flow__remark div dt strong,
  .flow__remark div dd strong {
    font-size: 20px;
    translate: 0 -2px;
  }
  .flow__remark div dt {
    background-color: #910a0b;
  }
  .flow__remark div dd {
    background-color: #d73c3d;
  }
  .flow__img {
    width: 100%;
  }
  .flow__arrow img {
    margin: 0 auto -10px;
    width: 40px;
  }
  .flow__point {
    margin-top: 30px;
  }
  .flow__point h4 {
    font-size: 16px;
    background-size: 30px;
    padding: 20px 0 20px 60px;
  }
  .flow__point p {
    padding: 20px;
    font-size: 12px;
  }
  .production {
    padding: 50px 0;
  }
  .production__header {
    position: inherit;
    top: 0;
    left: 0;
    text-align: center;
  }
  .production__header h2 {
    font-size: 24px;
    font-weight: 600;
  }
  .production__header p {
    font-size: 12px;
  }
  .production__img {
    padding: 28px 0 0;
    margin-bottom: 40px;
  }
  .production__cont {
    padding: 0;
  }
  .production__cont h3 {
    gap: 15px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }
  .production__cont h3 img {
    width: 40px;
  }
  .production__cont h3 small {
    font-size: 12px;
  }
  .production__inner {
    flex-direction: column;
  }
  .production__inner-block {
    width: 100%;
  }
  .production__inner-block img.omikuji {
    position: inherit;
    top: 0;
    right: 0;
    width: 100px;
    height: auto;
    margin: 0 auto 20px;
  }
  .production__txt {
    padding: 0 0 20px;
  }
  .production__txt h4 {
    font-size: 18px;
  }
  .production__txt p {
    font-size: 14px;
    line-height: 1.6;
  }
  .production__txt .color-red {
    font-size: 12px;
    display: block;
    margin-top: 15px;
  }
  .production__txt img.production-point01 {
    width: 100px;
    translate: 0 -1px;
  }
  .production__point {
    background-color: #fdf5f5;
    margin-top: 28px;
  }
  .production__point h5 {
    font-size: 16px;
    background-position: left 22px top 20px;
    background-size: 30px;
    padding: 14px 20px 14px 70px;
  }
  .production__point ul {
    padding: 20px;
  }
  .production__point ul li {
    font-size: 12px;
    line-height: 1.6;
  }
  .production__point ul li::before {
    top: 0;
    translate: 0 0;
    font-size: 12px;
  }
  .type {
    padding: 50px 0;
  }
  .type__cont h3 {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .type__inner {
    margin-bottom: 20px;
    padding: 0;
    flex-direction: column;
    gap: 20px;
  }
  .type__item {
    width: 100%;
    padding: 20px;
  }
  .type__txt h4 {
    font-size: 16px;
    font-weight: 700;
    padding: 15px 0 10px;
    margin-bottom: 0px;
  }
  .type__txt p {
    line-height: 1.6;
    font-size: 14px;
  }
  .type__note {
    text-align: left;
    font-size: 12px;
  }
  .lot {
    padding: 50px 0;
  }
  .lot__cont {
    padding: 0;
  }
  .lot__table-wrap {
    margin-bottom: 20px;
    overflow-x: auto;
  }
  .lot__table-wrap table {
    width: 550px;
    border-collapse: separate;
    border-spacing: 5px;
  }
  .lot__table-wrap table tr th {
    width: 100px;
    font-size: 12px;
  }
  .lot__table-wrap table tr td {
    width: 150px;
    background-color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 12px;
    font-weight: 500;
  }
  .lot__table-wrap table tr td img.lot-type {
    margin: 0 auto 12px;
    height: 60px;
    width: auto;
  }
  .lot__table-wrap table tr td img.num {
    display: inline-block;
    height: 14px;
    width: auto;
    margin: 0 4px;
    vertical-align: -2px;
  }
  .lot__table-wrap table tr td img.num--1000 {
    vertical-align: -6px;
  }
  .lot__table-wrap table tr:first-child td {
    padding: 40px 0 30px;
  }
  .lot__note {
    text-align: left;
    font-size: 12px;
  }
  .price {
    padding: 50px 0;
  }
  .price__cont p {
    font-size: 16px;
  }
  .download {
    padding: 90px 0 60px;
  }
  .download__subtitle {
    font-size: 2.1rem;
  }
  .download__btn a {
    color: #ffffff;
    font-size: 18px;
  }
}