/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho&family=Zen+Old+Mincho&display=swap');

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


:root {
  --main-color: #F78310;
  --secondary: #FF931E;
  --light-orange: #FFF4E5;
  --light-grey: #CBCBCB;
  --grey: #9B9B9B;
  --green: #0C6A14;
  --yellow: #FFEC01;
  --white: #fff;
  --black: #000000;
  --text-color: #0F0F0F;

  --f-s-s: 16px;
  --f-s-m: 18px;
  --f-s-30: 30px;
  --f-s-34: 34px;
  --mc-width: 500px;
  --p-container: 50px 0px;
  --font-g1: "Shippori Mincho", "Zen Old Mincho", serif;
}


html {
  height: -webkit-fill-available
}


body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  letter-spacing: normal !important;
  font-family: var(--font-g1)!important;
  font-weight: normal;
  background-color: var(--white);
}


h1,
h2,
h3,
h4,
h5,
h6 {
  width: 100%;
  padding: 0;
  font-size: 20px;
  letter-spacing: normal !important;
}

p {
  font-size: 16px;
  margin-bottom: 0px;
  letter-spacing: normal !important;
}

a {
  text-decoration: none;
}

figure {
  margin: 0;
}

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

ul,
ol {
  list-style: none;
}

.mbSucrose {
    display: block;
    text-align: right;
    font-size: 12px;
    font-weight: bold;
    color: var(--main-color);
}
/* container section */
.s-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}

@media (max-width: 370px) {
  .s-container {
    padding: 0 7px;
  }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.section-title-wrap {
  text-align: center;
}

.section-title {
  font-size: clamp(17px, 5vw, 36px);
  margin-bottom: 1.5rem;
  font-weight: bold;
  color: var(--text-color);
  line-height: 1.6;
}

.section-title .sth {
  color: var(--main-color);
}

/* button items */
.email-button {
  background-color: var(--main-color);
  color: var(--white);
  box-shadow: 0px 4px 0px 0px #672D05;
}

.email-button:hover {
  transform: translateY(2px);
  box-shadow: none;
}

.line-button {
  background-color: #59C463;
  color: var(--white);
  box-shadow: 0px 4px 0px 0px #0C6A14;
}

.line-button:hover {
  background-color: var(--green);
  transform: translateY(2px);
  box-shadow: none;
}