html:focus-within {
  scroll-behavior: auto;
}

body {
  margin: 0 0 0 0;
  
	font-size: 16px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #432B11;
}
body > div.wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

@media screen and ( max-width: 1024px ) {
  body.open {
    overflow: hidden;
  }
}

/* --------------------------------- header */

header {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 0 0 0;

  z-index: 50;
}
@media screen and ( max-width: 1440px ) {
  header {
    padding: 0 16px 0 16px;
  }
}
@media screen and ( max-width: 1024px ) {
  header {
    top: 20px;
    left: 0;
    transform: unset;
  }
}

/* header logo */
header div.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 340px;

  margin: 0 60px 0 0;
}
header div.logo img {
  width: 76px;
  margin: 0 16px 0 0;
}
header div.logo div {
  width: calc(100% - 92px);
}
header div.logo p {
  font-weight: 700;
}
header div.logo h1 {
  font-size: 1.875em;
  font-weight: 700;
}

@media screen and ( max-width: 1440px ) {
  header div.logo {
    max-width: 280px;
    margin: 0 10px 0 0;
  }
  header div.logo img {
    width: 54px;
  }
  header div.logo div {
    width: calc(100% - 70px);
  }
  header div.logo h1 {
    font-size: 1.625em;
  }
  header div.logo p {
    font-size: 0.875em;
  }
}

@media screen and ( max-width: 1024px ) {
  header div.logo {
    margin: 0 auto 0 0;
  }
  header div.logo img {
    width: 50px;
    margin: 0 10px 0 0;
  }
  header div.logo div {
    width: calc(100% - 60px);
  }
  header div.logo h1 {
    font-size: 1.25em;
  }
  header div.logo p {
    font-size: 0.6875em;
  }
}

/* header nav */
header nav {
  width: 100%;
  max-width: 1000px;
}
header nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;

  background-color: #FFFFFF;
  border-radius: 70px;
  padding: 10px 0 10px 0;
}
header nav ul li {
  width: 100%;
  max-width: 200px;
}
header nav ul li:not(:last-child) {
  border-right: 1px solid #AAAAAA;
}
header nav ul li a {
  width: 100%;
  text-align: center;
}
header nav ul li a:hover span.menu-main {
  color: #AC6018;
}
header nav ul li span.menu-main {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;

  display: block;
  font-size: 1.375em;
  color: #432B11;
}
header nav ul li span.menu-sub {
  font-size: 0.875em;
  color: #AAAAAA;
}

@media screen and ( max-width: 1440px ) {
  header nav ul li span.menu-main {
    font-size: 1.25em;
  }
}

@media screen and ( max-width: 1024px ) {
  header nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    width: 100%;
    max-width: unset;
    height: 100vh;
    background-color: #432B1133;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }
  header nav ul {
    flex-direction: column;
    justify-content: flex-start;
    width: 80%;
    max-width: 300px;
    height: 100%;
    border-radius: 0;

    padding: 90px 20px 90px 20px;
    margin: 0 0 0 auto;

    overflow: scroll;
    transform: translateX(100%);
    transition: transform 0.3s;
  }
  header nav ul li {
    max-width: unset;
    border-bottom: 1px solid #AAAAAA;
  }
  header nav ul li:not(:last-child) {
    border-right: unset;
  }
  header nav ul li a {
    padding: 16px 0 16px 0;
  }

  /* open */
  body.open header nav {
    opacity: 1;
    visibility: visible;
  }
  body.open header nav ul {
    transform: translateX(0);
  }
}

/* toggle */
div.toggle {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;

  display: none;
}

@media screen and ( max-width: 1024px ) {
  div.toggle {
    position: fixed;
    top: 20px;
    right: 16px;

    display: block;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    text-align: center;

    background-color: #FFFFFF;
    border: 1px solid #432B11;
    border-radius: 50px;
    padding: 26px 0 10px 0;
    z-index: 60;
  }
  div.toggle::before {
    content: 'MENU';
  }
  div.toggle span {
    content: '';
    position: absolute;
    right: 18px;

    width: 20px;
    height: 2px;
    background-color: #432B11;
    border-radius: 10px;
    transition: all 0.3s;
  }
  div.toggle span:first-child {
    top: 13px;
  }
  div.toggle span:nth-child(2) {
    top: 18px;
  }
  div.toggle span:nth-child(3) {
    top: 23px;
  }

  /* open */
  body.open div.toggle::before {
    content: 'CLOSE';
  }
  body.open div.toggle span:first-child {
    top: 18px;
    transform: rotate(-45deg);
  }
  body.open div.toggle span:nth-child(2) {
    background-color: transparent;
  }
  body.open div.toggle span:nth-child(3) {
    top: 18px;
    transform: rotate(45deg);
  }
}

/* --------------------------------- scroll-top */

a.scroll-top {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;

  position: fixed;
  right: 16px;
  bottom: 16px;

  display: flex;
  flex-direction: column;
  align-items: center;
  width: 104px;
  height: 104px;

  font-size: 1.375em;
  text-align: center;
  background-color: #432B11;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  border-radius: 200px;
  
  padding: 30px 0 0 0;
  z-index: 40;
}
a.scroll-top:hover {
  background-color: #AC6018;
}
a.scroll-top::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  border-top: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  transform: rotate(-45deg);
}

@media screen and (max-width: 1024px) {
  a.scroll-top {
    width: 60px;
    height: 60px;
    font-size: 1em;

    padding: 12px 0 8px 0;
  }
  a.scroll-top::before {
    width: 10px;
    height: 10px;
  }
}

/* --------------------------------- footer */

footer {
  width: 100%;
  margin: auto 0 0 0;
}

footer div.inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;

  width: 100%;
  max-width: 1280px;

  padding: 30px 20px 30px 20px;
  margin: 0 auto 0 auto;
}
footer div.menu {
  width: 100%;
  max-width: 650px;
}
footer div.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;

  width: 100%;
  margin: 0 0 10px 0;
}
footer div.logo img {
  width: 46px;
  margin: 0 10px 0 0;
}
footer div.logo p {
  font-size: 1.5em;
  font-weight: 700;
}

footer ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;

  width: 100%;
  margin: 0 0 20px 0;
}
footer ul li:not(:first-child) {
  padding-left: 20px;
}
footer ul li:not(:last-child) {
  border-right: 1px solid #432B11;
  padding-right: 20px;
}
footer ul li a {
  width: 100%;
  color: #432B11;
}
footer ul li a:hover {
  color: #AC6018;
}
footer a.recruit {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  max-width: 310px;

  background-color: #432B11;
  color: #FFFFFF;
  border-radius: 40px;
  padding: 16px 16px 16px 16px;
  margin: 0 0 20px 0;
}
footer a.recruit:hover {
  background-color: #AC6018;
}
footer a.recruit span:first-child {
  flex-shrink: 0;
  font-size: 1.25em;
  font-weight: 700;
}
footer a.recruit span:nth-child(2){
  margin: 0 0 0 10px;
}
footer p.copyright {
  width: 100%;
}

@media (min-width: 1025px) and (max-width: 1440px) {
  footer div.inner {
    padding: 30px 20px 80px 20px;
  }
}
@media screen and (max-width: 1024px) {
  footer div.inner {
    flex-direction: column;
    max-width: 700px;
  }
  footer div.logo,
  footer ul {
    justify-content: center;
  }
  footer div.logo p {
    font-size: 1.25em;
  }
  footer ul li {
    margin: 0 0 10px 0;
  }
  footer ul li:not(:first-child) {
    padding-left: 10px;
  }
  footer ul li:not(:last-child) {
    padding-right: 10px;
  }
  footer a.recruit {
    margin: 0 auto 30px auto;
  }
  footer a.recruit span:first-child {
    font-size: 1em;
  }
  footer p.copyright {
    text-align: center;
  }
}

/* --------------------------------- animation */

/* i-slide */
.i-slide {
	opacity: 0;
	transform: translateY(50px);
	transition: transform ease 0.6s, opacity ease 0.6s;
}
.i-slide.show {
	opacity: 1;
	transform: translateY(0);
}

/* i-order */
.i-order {
	opacity: 0;
	transform: translateY(50px);
	transition: transform ease-out 0.6s, opacity ease 0.6s;
}
.i-order.show {
	opacity: 1;
	transform: translateY(0);
}

/* i-move quality */
section.quality figure.image.i-move {
  clip-path: inset(0 100% 0 0);
  transition: clip-path ease 1s;
  transition-property: clip-path;
}
section.quality figure.image.i-move.show {
  clip-path: inset(0);
}

/* i-move greeting */
section.greeting .i-move {
	opacity: 0;
	transform: scale(0.98);
	transition: transform ease 0.6s, opacity ease 0.6s;
}
section.greeting .i-move.show {
	opacity: 1;
	transform: scale(1);
}

/* --------------------------------- main */

main {
  width: 100%;
}

/* --------------------------------- h2.midashi-border */

h2.midashi-border {
  width: 100%;
  max-width: 300px;
  text-align: center;
  font-size: 1.875em;
  font-weight: 700;
  padding: 8px 0 8px 0;
  margin: 0 auto 50px auto;
}
section.ingredient h2.midashi-border {
  border-top: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  color: #FFFFFF;
}
section.facility h2.midashi-border {
  border-top: 2px solid #E47E1F;
  border-bottom: 2px solid #E47E1F;
  color: #E47E1F;
  margin-bottom: 30px;
}
section.quality h2.midashi-border {
  border-top: 2px solid #E47E1F;
  border-bottom: 2px solid #E47E1F;
  color: #E47E1F;
}
section.overview h2.midashi-border {
  border-top: 2px solid #432B11;
  border-bottom: 2px solid #432B11;
  color: #432B11;
}

@media screen and (max-width: 1024px) {
  h2.midashi-border {
    font-size: 1.375em;
    margin: 0 auto 30px auto;
  }
}

/* --------------------------------- mv */

div.mv {
  position: relative;
  width: 100%;
  padding: 174px 20px 50px 20px;
  z-index: 5;
}
div.mv::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: url('../images/bg-paper.webp') no-repeat;
  background-size: cover;
}
div.mv::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/bg-cloth.webp') repeat;
  background-size: 436px;
  opacity: 0.2;
  z-index: -1;
}

div.mv div.inner {
  position: relative;
  width: 100%;
  max-width: 1210px;
  padding: 0 0 0 0;
  margin: 0 auto 0 auto;
  z-index: 5;
}

div.mv figure.image-center ,
div.mv figure.image-left ,
div.mv figure.image-right {
  border: 4px solid #FFFFFF;
  border-radius: 300px;
  box-shadow: 4px 4px 16px #6E493566;
  overflow: hidden;
}
div.mv figure.image-center {
  width: 50%;
  max-width: 430px;
  margin: 0 auto 50px auto;
}
div.mv figure.image-left ,
div.mv figure.image-right {
  position: absolute;
  width: 100%;
  max-width: 340px;
  top: 100px;
  z-index: 1;
}
div.mv figure.image-left {
  right: 70%;
}
div.mv figure.image-right {
  left: 70%;
}

div.mv p.copy-main {
  width: fit-content;
  text-align: center;
  font-size: 2.5em;
  font-weight: 700;
  margin: 0 auto 10px auto;
}
div.mv p.copy-main span {
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  
  display: inline-block;
  color: #FFFFFF;
  background-color: #432B11;
  padding: 4px 16px 8px 16px;
}
div.mv p.copy-main span:first-child {
  margin: 0 6px 0 0;
}
div.mv p.copy-sub {
  width: fit-content;
  font-size: 1.5em;
  font-weight: 700;
  margin: 0 auto 0 auto;
}
div.mv p.copy-sub {
  text-align: center;
}
div.mv p.copy-sub:first-of-type {
  margin-bottom: 16px;
}
div.mv span.marker {
  padding: 0 8px 0 8px;
  background: linear-gradient(0deg, #FFC58F 40%, transparent 30%);
}

div.mv figure.deco-right,
div.mv figure.deco-left {
  position: absolute;
  opacity: 0.6;
}
div.mv figure.deco-right {
  width: 280px;
  left: 82%;
  bottom: -86px;
}
div.mv figure.deco-left {
  width: 230px;
  right: 84%;
  top: 200px;
}

@media screen and (max-width: 1024px) {
  div.mv {
    padding: 80px 20px 30px 20px;
  }
  div.mv div.inner {
    max-width: 840px;
  }

  div.mv figure.image-center {
    width: 56%;
    min-width: 220px;
    margin: 0 auto 30px auto;
  }
  div.mv figure.image-left ,
  div.mv figure.image-right {
    width: 34%;
    min-width: 150px;
    top: 20%;
  }

  div.mv figure.deco-right {
    width: 180px;
    bottom: -50px;
  }
  div.mv figure.deco-left {
    width: 130px;
    top: 100px;
    transform: rotate(56deg);
  }
}

@media screen and (max-width: 768px) {
  div.mv::before {
    height: 50%;
  }
  div.mv div.inner {
    max-width: 600px;
  }

  div.mv figure.image-left ,
  div.mv figure.image-right {
    width: 34%;
    top: 20%;
  }
  div.mv p.copy-sub {
    font-size: 1.25em;
  }
  div.mv p.copy-main {
    font-size: 1.5em;
  }
  div.mv span.marker {
    padding: 0 0 0 0;
  }

  div.mv figure.deco-right {
    width: 120px;
    left: 80%;
    bottom: -20px;
  }
  div.mv figure.deco-left {
    width: 100px;
    top: 90px;
  }
}
@media screen and (max-width: 510px) {
  div.mv p.copy-sub {
    max-width: 250px;
  }
}

/* --------------------------------- ingredient */

section.ingredient {
  position: relative;
  width: 100%;
  background-color: #E47E1F;
  padding: 60px 20px 40px 20px;
  z-index: 4;
}

section.ingredient ul {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: left;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto 0 auto;
}
section.ingredient ul li {
  width: calc((100% - 80px)/5);
  margin-bottom: 20px;
}
section.ingredient ul li:not(:nth-child(5n),:last-child) {
  margin-right: 20px;
}
section.ingredient ul li figure {
  width: 100%;
  border: 4px solid #FFFFFF;
  margin: 0 0 4px 0;
}
section.ingredient ul li figure img {
  object-fit: cover;
  height: 150px;
}
section.ingredient ul li p {
  text-align: center;
  color: #FFFFFF;
}

section.ingredient figure.deco-left {
  position: absolute;
  right: 80%;
  bottom: -80px;
  width: 323px;
  opacity: 0.5;
}

@media screen and (max-width: 1024px) {
  section.ingredient ul li figure img {
    height: 120px;
  }
  section.ingredient figure.deco-left {
    bottom: -32px;
    width: 210px;
  }
}
@media screen and (max-width: 768px) {
  section.ingredient {
    padding: 30px 20px 10px 20px;
  }

  section.ingredient ul {
    justify-content: flex-start;
  }
  section.ingredient ul li {
    width: calc((100% - 20px)/3);
  }
  section.ingredient ul li:not(:nth-child(5n)) {
    margin-right: 0;
  }
  section.ingredient ul li:not(:nth-child(3n),:last-child) {
    margin-right: 10px;
  }

  section.ingredient figure.deco-left {
    right: calc(100% - 170px);
    width: 180px;
  }
}

@media screen and (max-width: 510px) {
  section.ingredient ul li {
    width: calc((100% - 10px)/2);
  }
  section.ingredient ul li:not(:nth-child(3n)) {
    margin-right: 0;
  }
  section.ingredient ul li:not(:nth-child(2n),:last-child) {
    margin-right: 10px;
  }
  section.ingredient ul li figure img {
    height: 100px;
  }
}

/* --------------------------------- facility */

section.facility {
  position: relative;
  width: 100%;
  background-color: #FCF9F1;
  padding: 60px 20px 40px 20px;
  z-index: 3;
}

section.facility p.content-text {
  width: fit-content;
  margin: 0 auto 40px auto;
}

section.facility ul.detail {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1550px;
  margin: 0 auto 0 auto;
}
section.facility ul.detail > li {
  position: relative;
  display: flex;
  flex-direction: column;
  width: calc((100% - 60px)/4);
  margin-bottom: 20px;
}
section.facility ul.detail > li:not(:nth-child(4n),:last-child) {
  margin-right: 20px;
}
section.facility ul.detail li figure {
  width: 100%;
}
section.facility ul.detail li img {
  object-fit: cover;
  height: 190px;
}
section.facility ul.detail li div.text-box {
  width: 100%;
  flex-grow: 1;
  background-color: #FFFFFF;
  padding: 26px 30px 30px 30px;
}
section.facility ul.detail li h3 {
  text-align: center;
  font-size: 1.375em;
  font-weight: 700;
  color: #E47E1F;
  margin: 0 0 16px 0;
}

section.facility figure.deco-right {
  position: absolute;
  left: 89%;
  bottom: -140px;
  width: 200px;
  opacity: 0.5;
}

@media screen and (max-width: 1280px) {
  section.facility ul.detail > li {
    width: calc((100% - 20px)/3);
    margin-bottom: 10px;
  }
  section.facility ul.detail > li:not(:nth-child(4n)) {
    margin-right: 0;
  }
  section.facility ul.detail > li:not(:nth-child(3n),:last-child) {
    margin-right: 10px;
  }
  section.facility ul.detail li div.text-box {
    padding: 24px 20px 30px 20px;
  }
}
@media screen and (max-width: 1024px) {
  section.facility ul.detail li h3 {
    font-size: 1.125em;
    margin: 0 0 10px 0;
  }

  section.facility figure.deco-right {
    bottom: -70px;
    width: 130px;
  }
}
@media screen and (max-width: 768px) {
  section.facility {
    padding: 20px 20px 10px 20px;
  }
  
  section.facility ul.detail > li {
    width: calc((100% - 10px)/2);
  }
  section.facility ul.detail > li:not(:nth-child(3n)) {
    margin-right: 0;
  }
  section.facility ul.detail > li:not(:nth-child(2n),:last-child) {
    margin-right: 10px;
  }
  section.facility ul.detail li div.text-box {
    padding: 20px 20px 20px 20px;
  }
  section.facility ul.detail li img {
    height: 150px;
  }

  section.facility figure.deco-right {
    width: 100px;
    left: 86%;
  }
}
@media screen and (max-width: 510px) {
  section.facility ul.detail > li {
    width: 100%;
  }
  section.facility ul.detail > li:not(:nth-child(2n),:last-child) {
    margin-right: 0;
  }
  section.facility ul.detail li img {
    height: 220px;
  }
}

@media screen and (max-width: 375px) {
  section.facility ul.detail li img {
    height: 160px;
  }
}

/* splide */
section.facility ul.splide__pagination {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translate(-50%);
}
section.facility button.splide__pagination__page {
  display: block;
  width: 8px;
  height: 8px;
  background: #DDDDDD;
  border-radius: 20px;
  margin: 0 4px 0 4px;
}
section.facility button.splide__pagination__page.is-active {
  background-color: #FFC58F;
}
@media screen and (max-width: 768px) {
  section.facility ul.splide__pagination {
    bottom: -16px;
  }
}

/* --------------------------------- quality */

section.quality {
  position: relative;
  width: 100%;
  background-color: #FCF9F1;
  padding: 60px 20px 60px 20px;
  z-index: 2;
}
section.quality::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  background-color: #FFFFFF;
}

section.quality h2.midashi-border {
  position: relative;
  z-index: 5;
}

section.quality div.inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto 0 auto;
  z-index: 5;
}

section.quality div.text {
  width: calc(50% - 60px);
}
section.quality div.text p {
  line-height: 1.75;
  margin: 0 0 30px 0;
}
section.quality div.text p span {
  font-weight: 700;
  color: #E47E1F;
}
section.quality div.text figure.jfsm {
  width: 140px;
  margin: 0 auto 0 auto;
}
section.quality figure.image {
  width: 50%;
}
section.quality figure.image img {
  object-fit: cover;
  object-position: 0 0;
  height: 360px;
}

section.quality figure.deco-left {
  position: absolute;
  right: 80%;
  bottom: 30px;
  width: 323px;
  opacity: 0.5;
  z-index: 2;
}

@media screen and (max-width: 1024px) {
  section.quality div.text {
    width: 55%;
  }
  section.quality div.text figure.jfsm {
    width: 100px;
  }
  section.quality figure.image {
    width: 42%;
  }
  section.quality figure.image img {
    height: 280px;
  }

  section.quality figure.deco-left {
    bottom: -20px;
    width: 210px;
  }
}
@media screen and (max-width: 768px) {
  section.quality {
    padding: 30px 20px 30px 20px;
  }
  section.quality::after {
    width: 100%;
  }
  section.quality div.inner {
    max-width: 600px;
  }

  section.quality div.text {
    width: 100%;
    line-height: 1.625;
    order: 2;
  }
  section.quality div.text p {
    margin: 0 0 20px 0;
  }
  section.quality div.text br.sp-none {
    display: none;
  }
  section.quality figure.image {
    width: 100%;
    margin: 0 0 20px 0;
    order: 1;
  }
  section.quality figure.image img {
    height: 230px;
  }

  section.quality figure.deco-left {
    right: calc(100% - 170px);
    width: 180px;
  }
}

/* --------------------------------- greeting */

section.greeting {
  position: relative;
  width: 100%;
  padding: 60px 20px 60px 20px;
}

section.greeting div.bg-clip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
  z-index: -1;
}
section.greeting div.bg-clip::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/bg-greeting.webp) no-repeat;
  background-size: cover;
  background-position: center center;
}

section.greeting div.inner {
  position: relative;
  width: 100%;
  max-width: 1000px;
  background-color: #FFFFFF;
  padding: 50px 127px 40px 127px;
  margin: 0 auto 0 auto;

  z-index: 5;
}

section.greeting h2 {
  width: fit-content;
  font-size: 1.25em;
  font-weight: 700;
  margin: 0 auto 1em auto;
}
section.greeting p.text {
  width: 100%;
  line-height: 1.75;
  margin: 0 auto 1em auto;
}
section.greeting p.text:nth-child(4) {
  margin-bottom: 20px;
}
section.greeting p.indent {
  text-indent: 1em;
}
section.greeting span.marker {
  border-bottom: 2px solid #FFC58F;
}
section.greeting p.sign {
  width: fit-content;
  margin: 0 1em 0 auto;
}
section.greeting p.sign span:first-child {
  display: block;
  font-size: 1.125em;
  font-weight: 700;
}
section.greeting p.sign span:nth-child(2) {
  display: inline-block;
  margin: 0 10px 0 0;
}
section.greeting p.sign span:last-child {
  font-size: 1.375em;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  section.greeting {
    padding: 30px 20px 30px 20px;
  }
  section.greeting div.inner {
    padding: 40px 30px 40px 30px;
  }

  section.greeting p.text {
    width: 100%;
    line-height: 1.625;
    margin: 0 auto 1em auto;
  }
  section.greeting p.sign span:first-child {
    font-size: 1.125em;
  }
  section.greeting p.sign span:last-child {
    font-size: 1.25em;
  }
}
@media screen and (max-width: 510px) {
  section.greeting div.inner {
    padding: 40px 20px 30px 20px;
  }
}

/* --------------------------------- overview */

section.overview {
  width: 100%;
  position: relative;
  padding: 60px 20px 60px 20px;
}
section.overview::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/bg-cloth.webp') repeat;
  background-size: 436px;
  opacity: 0.4;
  z-index: -1;
}
section.overview div.inner {
  width: 100%;
  max-width: 1280px;
  background-color: #FFFFFF;
  padding: 44px 60px 60px 60px;
  margin: 0 auto 0 auto;
}

section.overview table {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto 30px auto;
}
section.overview table tr {
  border-bottom: 1px solid #CFCFCF;
}
section.overview table th {
  width: 182px;
  text-align: left;
  vertical-align: baseline;
  padding: 16px 16px 16px 16px;
}
section.overview table td {
  line-height: 1.75;
  padding: 16px 16px 16px 16px;
}
/* section.overview table td ul li {
  text-indent: -1em;
  padding-left: 1em;
} */
/* section.overview table td span.addr {
  display: block;
} */
/* section.overview table td span.zip {
  display: inline-block;
  margin-right: 1em;
} */

section.overview iframe {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto 0 auto;
}

@media screen and (max-width: 768px) {
  section.overview {
    padding: 30px 20px 30px 20px;
  }
  section.overview div.inner {
    padding: 6px 10px 10px 10px;
  }

  section.overview table {
    margin: 0 auto 10px auto;
  }
  section.overview table th {
    width: 30%;
  }
}

@media screen and (max-width: 510px) {
  section.overview table th {
    display: block;
    width: 100%;
    padding: 14px 14px 0 14px;
  }
  section.overview table td {
    display: block;
    width: 100%;
    padding: 10px 14px 14px 14px;
  }
  /* section.overview table td span.zip {
    display: block;
  } */
}

/* --------------------------------- contact */

div.contact {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #432B11;
  padding: 10px 0 10px 0;
}

div.contact div.tel,
div.contact div.fax,
div.contact div.mail {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 430px;
  color: #FFFFFF;
  border-right: 1px solid #FFFFFF;
  padding: 20px 16px 20px 16px;
}
div.contact div.tel {
  border-left: 1px solid #FFFFFF;
}
div.contact figure {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: #FFFFFF;
  border-radius: 200px;
  padding: 13px 13px 13px 13px;
  margin: 0 20px 0 0;
}
div.contact svg .st0 {
  fill: #E47E1F;
}
div.contact div.tel span,
div.contact div.fax span {
  display: block;
  padding: 4px 0 0 0;
  margin: 0 10px 0 0;
}
div.contact div.tel p,
div.contact div.fax p {
  font-size: 1.5em;
  font-weight: 900;
  letter-spacing: 0.04em;
}
div.contact div.tel p a {
  color: #FFFFFF;
}

div.contact div.mail p {
  width: 100%;
  max-width: 188px;
}
div.contact div.mail span {
  display: block;
  font-size: 1.375em;
}

@media screen and (max-width: 1440px) {
  div.contact div.mail {
    border-right: unset;
  }
  div.contact div.tel {
    border-left: unset;
  }
}

@media screen and (max-width: 768px) {
  div.contact {
    flex-direction: column;
    padding: 0 0 0 0;
  }

  div.contact div.tel,
  div.contact div.fax,
  div.contact div.mail {
    max-width: unset;
  }
  div.contact div.tel,
  div.contact div.fax {
    border-right: unset;
    border-bottom: 1px solid #FFFFFF;
  }
  div.contact figure,
  div.contact figure {
    width: 46px;
    height: 46px;
    padding: 10px 10px 10px 10px;
  }

}

/* @media screen and (min-width: 769px) {
  div.contact div.tel p a {
    pointer-events: none;
  }
} */