
/* sec01 */
.sec01 .box {
  background-color: #f5f5f5;
  border-radius: 32px;
  padding: 3em;
}
.sec01 .example {
  margin-top: 4em;
  padding: 4vw;
  border: 2px solid var(--color-theme-primary);
  border-radius: 32px;
}

.sec01 .example .grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(2, 1fr);
grid-column-gap: 4em;
grid-row-gap: 2em;
}

.box01 { grid-area: 1 / 1 / 2 / 2; }
.box02 { grid-area: 2 / 1 / 3 / 2; }
.box03 { grid-area: 1 / 2 / 3 / 4; }

.sec01 .example .box dl.arrow {
  margin: 1em auto 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  width: fit-content;
}
.sec01 .example .box dl.arrow dt {
  font-weight: 500;
  color: var(--color-theme-primary);
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
}
.sec01 .example .box dl.arrow dt span {
  font-size: 14px;
  display: block;
  color: #222;
}
.sec01 .example .box dl.arrow dd {
  padding-left: 1.5em;
  position: relative;
  line-height: 1.5;
  margin-top: 5px;
  font-weight: 500;
}
.sec01 .example .box dl.arrow dd::before {
  content: "";
  display: block;
  width: 1em;
  height: 1.5em;
  position: absolute;
  left: 0;
  top: -4px;
  background-image: url(../images/arrow_01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.sec01 .box01,
.sec01 .box02 {
  position: relative;
}

.sec01 .box03 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.sec01 .box03 .bubble {
  background-color: #fff;
  border: 2px solid var(--color-theme-primary);
  padding: 2em;
  border-radius: 32px;
  width: 100%;
}
.sec01 .box03 .bubble h3 {
  color: var(--color-theme-primary);
  margin-bottom: 10px;
  font-size: clamp(1.125rem, 1.014rem + 0.56vw, 1.5rem);
}
.sec01 .box03 .bubble dd {
  padding-left: 1em;
  text-indent: -1em;
}
.sec01 .box03 .bubble + .thumbnail {
  margin-top: 2em;
}
.sec01 .box03 .bubble + .thumbnail + .arrow {
  margin-top: 2em;
  margin-bottom: 2em;
}
.sec01 .box03 .bubble + .thumbnail + .arrow h3 {
  font-weight: 500;
  color: var(--color-theme-primary);
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
}
.sec01 .box03 .bubble + .thumbnail + .arrow li {
  padding-left: 1.5em;
  position: relative;
  line-height: 1.5;
  margin-top: 5px;
  font-weight: 500;
}
.sec01 .box03 .bubble + .thumbnail + .arrow li::before {
  content: "";
  display: block;
  width: 1em;
  height: 1.5em;
  position: absolute;
  left: 0;
  top: -4px;
  background-image: url(../images/arrow_01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.sec01 .grid + .flexbox {
  margin-top: 10em;
  position: relative;
}
.sec01 .grid + .flexbox::before {
  content: "";
  display: block;
  height: 1.5em;
  position: absolute;
  left: 50%;
  top: -7em;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 60px solid transparent;
  border-left: 60px solid transparent;
  border-top: 54px solid #1595e0;
  border-bottom: 0;
  transform: translateX(-50%);
}
.sec01 .grid + .flexbox .box06 {
  width: 100%;
}
.sec01 .box06 .box_title {
  width: fit-content;
  margin: -5em auto 0;
  background-color: #fff;
  border: 2px solid #222;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em 2em;
  font-weight: 500;
}
.sec01 .box06 .box_title p {
  margin-right: 1em;
  font-size: 18px;
}
.sec01 .box06 .box_title h3 {
  font-size: clamp(1.125rem, 0.903rem + 1.11vw, 1.875rem);
  letter-spacing: 3px;
}
.sec01 .box06 .box_title h3 span {
  color: var(--color-theme-primary);
}
.sec01 .box06 .flexbox {
  align-items: center;
  justify-content: center;
  gap: 2em;
}
.sec01 .box06 dl {
  letter-spacing: 3px;
  font-size: 24px;
  font-weight: 500;
}
.sec01 .example .text01,
.sec01 .example .text02 {
  writing-mode: vertical-rl;
  background-color: var(--color-theme-primary);
  color: #fff;
  line-height: 1.23;
  padding: 1em .5em;
  border-radius: 5px;
  letter-spacing: 1px;
  position: absolute;
  white-space: nowrap;
  font-size: 18px;
  width: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec01 .example .text01::before,
.sec01 .example .text02::before {
  content: "";
  display: block;
  background-image: url(../../works/images/ceramics/icon_arrow_01.png);
  background-size: 70px 45px;
  width: 70px;
  height: 45px;
  z-index: 2;
  position: absolute;
}
.sec01 .example .text01 {
  left: 101.6%;
  top: 30%;
}
.sec01 .example .text02 {
  left: 101.6%;
  top: 30%;
}
.sec01 .example .text01::before {
  left: -9px;
  top: -55px;
}
.sec01 .example .text02::before {
  left: -9px;
  bottom: -55px;
}


.sec02 .answer ul {
  color: var(--color-theme-primary);
}
.sec02 .answer ul li {
  padding-left: 1em;
  text-indent: -1em;
}

.sec03 .example {
  margin-top: 2em;
}
.sec03 .example.field {
  margin-top: 4em;
}
.sec03 .example h3 {
  font-weight: 500;
}
.scroll {
  min-width: 960px;
  overflow-x: scroll;
  padding: 2em 0;
}


.sec03 .example table {
  border-radius: 32px;
  border-spacing: 0;
  min-width: 960px;
  width: 100%;
  table-layout: fixed;
}
.sec03 .example table th,
.sec03 .example table td {
  border-left: 2px solid var(--color-theme-primary);
  border-bottom: 2px solid var(--color-theme-primary);
  text-align: center;
  vertical-align: middle;
  padding: 2em;
}
.sec03 .example table td {
  font-weight: 500;
  font-size: 14px;
}
.sec03 .example table td img {
  margin-top: 10px;
}
.sec03 .example table thead th {
  background-color: #fff;
  border-top: 2px solid var(--color-theme-primary);
  padding: 1em;
  font-size: 14px;
  font-weight: 400;
}
.sec03 .example table thead th:nth-child(1) {
  border-top-left-radius: 32px;
}
.sec03 .example table thead th:nth-child(9) {
  border-top-right-radius: 32px;
}
.sec03 .example table thead th:nth-child(9),
.sec03 .example table tbody td:nth-child(9) {
  border-right: 2px solid var(--color-theme-primary);
}
.sec03 .example table tbody th {
  background-color: #f5f5f5;
  white-space: nowrap;
}
.sec03 .example table tbody tr:last-child th:nth-child(1) {
  border-bottom-left-radius: 32px;
}
.sec03 .example table tbody tr:last-child td:nth-child(9) {
  border-bottom-right-radius: 32px;
}

.sec03 .example.field .foeld_wrap {
  margin-top: 2em;
  border-bottom: 2px solid var(--color-theme-primary);
  border-radius: 32px;
}
.sec03 .example.field .flexbox {
  border-top: 2px solid var(--color-theme-primary);
  border-right: 2px solid var(--color-theme-primary);
  border-left: 2px solid var(--color-theme-primary);
  padding: 1em 2em;
  align-items: center;
  position: relative;
}
.sec03 .example.field .flexbox:first-child {
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
}
.sec03 .example.field .flexbox:last-child {
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
}
.sec03 .example.field .flexbox dt {
  font-weight: 500;
}
.sec03 .example.field .flexbox dd {
  padding-left: 1em;
  text-indent: -1em;
}
.sec03 .example.field .flexbox::before {
  content: "";
  position: absolute;
  left: 190px;
  top: 75px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 17px solid #1595e0;
  border-right: 0;
}

.sec03 .example.technology .flexbox,
.sec03 .example.others .flexbox {
  margin-top: 3em;
  border-radius: 32px;
  width: 100%;
  gap: 0 !important;
}
.sec03 .example.technology .box {
  padding: 2em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.sec03 .example.technology .box:first-child {
  border-top-left-radius: 32px;
  border-bottom-left-radius: 32px;
  border-top: 2px solid var(--color-theme-primary);
  border-left: 2px solid var(--color-theme-primary);
  border-bottom: 2px solid var(--color-theme-primary);
}
.sec03 .example.technology .box:last-child {
  border-top-right-radius: 32px;
  border-bottom-right-radius: 32px;
  border-top: 2px solid var(--color-theme-primary);
  border-right: 2px solid var(--color-theme-primary);
  border-bottom: 2px solid var(--color-theme-primary);
  border-left: 2px solid var(--color-theme-primary);
}
.sec03 .example.technology .box:not(:first-child):not(:last-child) {
  border-top: 2px solid var(--color-theme-primary);
  border-bottom: 2px solid var(--color-theme-primary);
  border-left: 2px solid var(--color-theme-primary);
}


.sec03 .example.others .flexbox {
  border: 2px solid var(--color-theme-primary);
  border-radius: 32px;
  background-color: #fff;
  padding: 3em;
  justify-content: space-evenly;
}
.sec03 .example.others .flexbox figure {
  text-align: center;
}

.sec04 .example.scene {
  margin-top: 5em;
}
.sec04 .example.scene .flexbox {
  margin-top: 2em;
}
.sec04 .example.scene .flexbox .box:first-child {
  width: calc(66.666% - 2em);
}
.sec04 .example.scene .flexbox .box:last-child {
  width: calc(33.333% - 2em);
}
.sec04 .example.scene .flexbox .box {
  background-color: #fff;
  border: 2px solid var(--color-theme-primary);
  border-radius: 32px;
  padding: 2em;
  position: relative;
}
.sec04 .example.scene .flexbox .box .tit {
  padding: .5em 2em;
  border-radius: 100vh;
  background-color: var(--color-theme-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: -55px auto 0;
}
.sec04 .example.scene .flexbox .box .set {
  text-align: center;
  padding: 1em 0;
}
.sec04 .example.scene .flexbox .box_inner_cont {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2em;
  position: relative;
}
.sec04 .example.scene .flexbox .box .box_inner_cont::after {
  content: "";
  position: absolute;
  right: -60px;
  top: 40%;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 17px solid #1595e0;
  border-right: 0;
  transform: translateY(-50%);
}
.sec04 .example.scene .flexbox .box_inner {
  background-color: #f5f5f5;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3.6em;
  padding: 2em;
}
.sec04 .example.scene .flexbox .box_inner img {
  max-width: 100%;
  height: auto;
}
.sec04 .example.scene .flexbox .box_inner_cont .box_inner {
  width: calc(calc(100% - 2em) / 2);
  margin-top: 0;
}
.sec04 .example.scene .flexbox .box_inner dl,
.sec04 .example.scene .flexbox .box_inner p {
  text-align: center;
  margin-top: 1em;
}
.sec04 .example.scene .flexbox .box_inner dt {
  font-weight: 500;
}
.sec04 .example.scene .flexbox .box_inner dd span,
.sec04 .example.scene .flexbox .box_inner p span {
  color: var(--color-theme-primary);
  font-weight: 500;
}

.example.heat {
  margin-top: 3em;
}
.example.heat .flexbox {
  background-color: #fff;
  border: 2px solid var(--color-theme-primary);
  border-radius: 32px;
  padding: 2em;
  position: relative;
  margin-top: 2em;
  justify-content: space-evenly;
}
.example.heat .flexbox .box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
.example.heat .flexbox .box h4 {
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-grow: 1;
  min-height: 3.6em;
}
.example.heat .flexbox .box h4 span {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
}
.example.heat .flexbox .box .thumbnail {
  margin-bottom: 1em;
  position: relative;
}
.example.heat .flexbox .box .thumbnail::after {
  content: "";
  position: absolute;
  right: -60px;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 17px solid #1595e0;
  border-right: 0;
  transform: translateY(-50%);
}
.example.heat .flexbox .box .accent {
  color: var(--color-theme-primary);
  font-weight: 500;
  font-size: 18px;
}
.example.heat .flexbox .box .accent li {
  padding-left: 1em;
  text-indent: -1em;
}

.example.heat + p {
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  margin-top: 2em;
}
.example.heat + p +.big {
  text-align: center;
  font-weight: 600;
  font-size: clamp(1.25rem, 1.028rem + 1.11vw, 2rem);
  color: var(--color-theme-primary);
  margin-top: 1em;
}


@media screen and (max-width: 767px) {
  .example.scene {
    margin-top: 4em;
  }
  .scroll {
    min-width: 100%;
    overflow-x: scroll;
  }
  .sec03 .example.field .foeld_wrap {
    border-radius: 16px;
  }
  .sec03 .example.field .flexbox:first-child {
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
  }
  .sec03 .example.field .flexbox:last-child {
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
  }
  .sec03 .example.field .flexbox {
    padding: 5vw 4vw;
    column-gap: 16px;
    row-gap: 0;
  }
  .sec03 .example.field .flexbox img{
    width: calc(calc(100% - 16px) / 2);
  }
  .sec03 .example.field .flexbox::before {
    left: 50%;
    top: 25%;
    transform: translate(-52%, -2px);
  }
  .sec03 .example table th, .sec03 .example table td {
    padding: 1em .5em;
  }
  .sec03 .example.technology.flexbox,
  .sec03 .example.others .flexbox,
  .sec03 .example.field .foeld_wrap {
    margin-top: 1em;
  }
  .sec03 .example.technology .box:first-child {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-right: 2px solid var(--color-theme-primary);
    border-bottom-left-radius: 0;
  }
  .sec03 .example.technology .box:not(:first-child):not(:last-child) {
    border-top: none;
    border-bottom: none;
    border-left: 2px solid var(--color-theme-primary);
    border-right: 2px solid var(--color-theme-primary);
  }
  .sec03 .example.technology .box:last-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
    border-top: 2px solid var(--color-theme-primary);
    border-right: 2px solid var(--color-theme-primary);
    border-bottom: 2px solid var(--color-theme-primary);
    border-left: 2px solid var(--color-theme-primary);
  }
  .sec03 .example.others .flexbox {
    padding: 1em;
    flex-wrap: wrap;
  }
  .sec03 .example.others .flexbox figure {
    padding: 1em;
    width: 50%;
  }
  .sec03 .example.others .flexbox figure img {
    width: 100%;
    height: auto;
  }
  .example.heat .flexbox .box {
    flex-wrap: wrap;
    flex-direction: row;
    column-gap: 1em;
  }
  .example.heat .flexbox .box h4 {
    width: 100%;
  }
  .example.heat .flexbox .box .thumbnail {
    width: calc(40% - .5em);
    height: auto;
  }
  .example.heat .flexbox .box .thumbnail + .small {
    width: calc(60% - .5em);
  }
  .example.heat .flexbox .box .thumbnail::after {
    transform: translate(-120%, -50%) rotate(90deg);
    top: auto;
    bottom: -38px;
  }
  .sec01 .example .grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .box01,
  .box02 { 
    width: calc(calc(100% - 16px) / 2);
  }
  .sec01 .box01,
  .sec01 .box02 {
    padding: 0;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .sec01 .box dl {
    width: fit-content;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 16px;
    margin-bottom: .5em;
  }
  .sec01 .box dt {
    font-weight: 600;
    margin-bottom: .5em;
    font-size: 20px;
    letter-spacing: 3px;
  }
  .sec01 .box dd {
    padding-left: 1.5em;
    position: relative;
    line-height: 1.5;
    margin-top: 5px;
    font-weight: 500;
  }
  .sec01 .box01 .thumbnail,
  .sec01 .box02 .thumbnail {
    width: 100%;
    height: auto;
    padding: 1.5em 0 0;
    text-align: center;
  }
  .sec01 .box01 .thumbnail img,
  .sec01 .box02 .thumbnail img {
    width: 110px;
    height: auto;
    margin-bottom: 1em;
  }
  .sec01 .example .box dl.arrow dd {
    font-weight: 400;
  }
  .sec01 .example .box dl dt {
    text-align: center;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 16px;
    margin-bottom: .5em;
  }
  .sec01 .example .box dl.arrow {
    font-size: 12px;
    padding: 0 1em 1.5em;
  }
  .sec01 .example .box dl.arrow dd::before {
    content: "●";
    background-image: none;
    font-size: 1em;
    top: 0;
    color: var(--color-theme-primary);
  }
  .sec01 .box03 {
    border-radius: 16px;
    gap: 1em;
    padding: 1em 1em 2em;
    margin-top: 82px;
  }
  .sec01 .box03 .bubble:nth-child(1) {
    order: 2;
  }
  .sec01 .box03 .bubble:nth-child(2) {
    order: 1;
  }
  .sec01 .box03 .bubble + .thumbnail {
    order: 3;
    margin-top: 1em;
  }
  .sec01 .box03 .bubble + .thumbnail + .arrow {
    order: 4;
    margin: 0;
  }
  .sec01 .box03 .bubble {
    border-radius: 16px;
  }
  .sec01 .box03 .bubble dl,
  .sec01 .example .box dl dt {
    text-align: left;
    font-size: 14px;
  }
  .sec01 .box03 .thumbnail {
    width: 80%;
  }
  .sec01 .box03 .thumbnail img {
    width: 80%;
    max-width: 160px;
    height: auto;
  }
  .sec01 .example .box03 dl.arrow {
    padding: 0;
  }
  .sec01 .example .box03 dl.arrow .flexbox {
    gap: 0;
    flex-direction: column;
  }
  .sec01 .grid + .flexbox {
    margin-top: 8em;
  }
  .sec01 .grid + .flexbox::before {
    top: -113px;
  }
  
  .sec01 .box06 .box_title {
    width: fit-content;
    margin: -5em auto 0;
    background-color: #fff;
    border: 2px solid #222;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1em 2em;
    font-weight: 500;
    flex-direction: column;
  }
  .sec01 .box06 .box_title p {
    margin-right: 1em;
    font-size: 18px;
  }
  .sec01 .box06 .box_title h3 {
    font-size: clamp(1.125rem, 0.903rem + 1.11vw, 1.875rem);
    letter-spacing: 3px;
    white-space: nowrap;
  }
  .sec01 .box06 .box_title h3 span {
    color: var(--color-theme-primary);
  }
  .sec01 .box06 .flexbox {
    align-items: center;
    justify-content: center;
    gap: 1em;
  }
  .sec01 .box06 .thumbnail {
    order: 2;
  }
  .sec01 .box06 dl {
    letter-spacing: 3px;
    font-size: 24px;
    font-weight: 500;
  }
  .sec01 .box06 dd::before {
    margin-right: 30px;
  }
  .sec01 .box06 .thumbnail {
    margin-top: -1em;
  }
  .sec01 .grid + .flexbox .box06 {
    border-radius: 16px;
    padding: 2em;
  }
  .sec01 .box06 dl {
    letter-spacing: 0;
    font-weight: 500;
    margin-top: 1em;
    font-size: 20px;
    padding: 1em 0 1.5em;
  }
  .sec01 .box06 dd {
    font-size: 16px;
    margin-top: 0;
  }
  .sec04 .example.scene .flexbox {
    flex-direction: column;
    gap: 6em;
  }
  .sec04 .example.scene .flexbox .box:first-child {
    width: 100%;
  }
  .sec04 .example.scene .flexbox .box_inner_cont {
    flex-direction: column;
    gap: 1em;
  }
  .sec04 .example.scene .flexbox .box_inner_cont .box_inner {
    width: 100%;
    border-radius: 16px;
    padding: 1em 1em 2em;
  }
  .sec04 .example.scene .flexbox .box:last-child {
    width: 100%;
  }
  .sec04 .example.scene .flexbox .box_inner {
    margin-top: 1em;
  }
  .sec04 .example.scene .flexbox .box .box_inner_cont::after {
    right: calc(50% - 8px);
    top: auto;
    bottom: -96px;
    transform: translateY(-50%) rotate(90deg);
  }
  .sec01 .example .text01,
  .sec01 .example .text02 {
    white-space: nowrap;
    writing-mode: horizontal-tb;
    width: fit-content;
    padding: .5em 1em;
    font-size: 12px;
    z-index: 2;
    top: auto;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
  }
  .sec01 .example .text01::before,
  .sec01 .example .text02::before {
    background-size: 40px 26px;
    width: 40px;
    height: 26px;
    transform: translate(-50%, 20px) rotate(90deg);
    right: auto;
    left: 50%;
    top: auto;
    bottom: -20px;
  }
  .example.heat + p,
  .example.heat + p +.big {
    font-size: 18px;
  }
  
}