@charset "UTF-8";
/*reset.css*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;500;700&family=Noto+Serif+JP:wght@300;500;700&display=swap");
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  block-size: 100%;
  block-size: 100dvb;
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: solid;
}

:where(a) {
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* common.css */
* {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #343434;
}

a {
  text-decoration: none;
}

body {
  background: #fff;
}

.indexBord {
  background-image: url("../images/index_bk.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
  padding-bottom: 90px;
  height: auto;
  padding-top: 47.9166666667%;
}

.indexBordInner {
  max-width: 1310px;
  transform: translateX(55px);
  transform: translateX(min(2.2vw, 55px));
  width: 100%;
  margin: 0 auto;
  position: absolute;
  top: 70px;
  bottom: 90px;
  left: 0;
  right: 0;
  height: auto;
  display: flex;
  justify-content: space-between;
}
.indexBordInner .logos {
  display: flex;
  width: 45.8%;
  max-width: 600px;
  padding-top: 12px;
}
.indexBordInner .logos span {
  display: block;
  margin: 0 50px 0 0;
}
.indexBordInner .texts {
  position: relative;
  top: 0;
  right: 0;
  margin-left: min(2.2vw, 55px);
  width: 51.9%;
  max-width: 680px;
  padding-top: 30px;
}
.indexBordInner .texts p:first-child {
  font-size: 26px;
  font-size: clamp(16px, 1.7vw, 26px);
  line-height: 1.9;
  margin-bottom: 60px;
}
.indexBordInner .texts p:first-child > span {
  display: block;
}
.indexBordInner .texts p:last-child {
  font-size: 20px;
  font-size: 15px;
  font-size: clamp(15px, 1.9vw, 20px);
  line-height: 2;
}
.indexBordInner .clickEitherContainer {
  position: absolute;
  left: 45.8%;
  top: 0;
}
.indexBordInner .clickEitherContainer .clickEither {
  transform: rotate(90deg);
  border-bottom: 1px solid #000;
  text-align: right;
  width: 630px;
  padding-right: 36px;
  margin: 0 auto;
  height: 30px;
  margin-left: -280px;
  margin-top: 300px;
}

.indexBordInner .indexButtons {
  transform: translateX(min(2.2vw, -55px));
}

.indexButtons {
  max-width: 750px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 100%;
}

.purpleButton {
  background-color: rgba(125, 55, 140, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 360px;
  height: 80px;
  position: relative;
}
.purpleButton span {
  color: #fff;
  font-size: 18px;
}
.purpleButton::after {
  content: "";
  display: block;
  background-image: url("../images/arrow.png");
  width: 17px;
  height: 17px;
  position: absolute;
  top: 50%;
  right: 1em;
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: -3px;
}
.purpleButton:hover {
  background-color: rgba(255, 255, 255, 0.8);
  border: solid 1px #7D378C;
}
.purpleButton:hover span {
  color: #7D378C;
}
.purpleButton:hover::after {
  background-image: url("../images/arrow_hover.png");
}
.purpleButton.disabled {
  pointer-events: none;
  background-color: rgba(138, 138, 138, 0.8);
}

@media (max-width: 1370px) {
  .indexBord {
    padding-bottom: 30px;
  }
}
@media (max-width: 1370px) {
  .indexBordInner {
    transform: translateX(0);
    width: 98%;
  }
  .indexBordInner .texts {
    width: 45.8%;
  }
  .indexBordInner .clickEitherContainer {
    position: absolute;
    left: 48.5%;
  }
  .indexBordInner .clickEitherContainer .clickEither {
    transform: rotate(90deg);
    border-bottom: 1px solid #000;
    text-align: right;
    width: 30vw;
    padding-right: 36px;
    margin: 0 auto;
    height: 30px;
    margin-left: calc(-15vw + 35px);
    margin-top: calc(15vw - 15px);
  }
}
@media (max-width: 900px) {
  .indexBord {
    padding: 33px 0 35px;
    background-image: url("../images/bg_menu_SP.png");
    background-position: center bottom;
    position: relative;
    height: auto;
    min-height: auto;
  }
  .indexBordInner {
    position: relative;
    display: block;
    min-height: auto;
    height: auto;
    width: 100%;
    margin-bottom: 55vw;
  }
  .indexBordInner .logos {
    display: flex;
    justify-content: center;
    margin: auto;
    width: 82%;
    padding: 0;
  }
  .indexBordInner .logos span:last-child {
    margin-right: 0;
  }
  .indexBordInner .logos span {
    display: block;
    margin: 0 32px 0 0;
  }
  .indexBordInner .texts {
    position: static;
    max-width: none;
    margin-left: 15.3%;
    margin-right: 3%;
    width: auto;
    padding-top: 30px;
  }
  .indexBordInner .texts p:first-child {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 22px;
  }
  .indexBordInner .texts p:first-child > span {
    display: inline;
  }
  .indexBordInner .texts p:last-child {
    font-size: 16px;
    line-height: 1.8;
  }
  .indexBordInner .clickEitherContainer {
    position: absolute;
    left: 4.6%;
    top: 230px;
  }
  .indexBordInner .clickEitherContainer .clickEither {
    transform: rotate(90deg);
    border-bottom: 1px solid #000;
    text-align: right;
    padding-right: 12px;
    width: 325px;
    margin: 0 auto;
    height: 30px;
    margin-left: -147.5px;
  }
  .indexButtons {
    display: block;
  }
  .purpleButton {
    margin: 0 auto;
    width: 300px;
    height: 60px;
  }
  .purpleButton span {
    font-size: 15px;
  }
  .purpleButton:first-child {
    margin-bottom: 20px;
  }
}
.indexBordBottom {
  background-color: #A5A0D2;
  min-height: 120px;
  padding: 25px 0;
}
.indexBordBottom dl {
  display: flex;
}
.indexBordBottom dl > dt {
  color: #fff;
  font-size: 20px;
  border-right: solid 1px #fff;
  width: 225px;
  padding: 20px 0 20px 48px;
}
.indexBordBottom dl > dd {
  color: #fff;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  padding: 8px 0 8px 55px;
}

@media (max-width: 900px) {
  .indexBordBottom {
    min-height: 120px;
    padding: 30px 0;
  }
  .indexBordBottom dl {
    display: block;
  }
  .indexBordBottom dl > dt {
    font-size: 16px;
    border-right: none;
    border-bottom: solid 1px #fff;
    width: 100%;
    padding: 0 0 12px 0;
  }
  .indexBordBottom dl > dd {
    font-size: 13px;
    padding: 12px 0 0 0;
  }
}
#footer {
  background-color: #F4F4F4;
  padding: 80px 0;
}
#footer address {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  line-height: 1.8;
  margin: 70px 0 0;
  font-weight: 500;
}

.footerInner {
  display: flex;
  justify-content: space-between;
}

.fotterNav {
  font-size: 18px;
  display: flex;
}
.fotterNav li {
  margin: 0 3em 0 0;
}
.fotterNav li:last-child {
  margin: 0;
}
.fotterNav a {
  color: #1E1487;
}

@media (max-width: 900px) {
  #footer {
    padding: 50px 0;
  }
  #footer .logo {
    width: 100%;
    display: block;
  }
  #footer .logo img {
    margin: 0 auto;
    width: 50%;
    max-width: 224px;
    height: auto;
  }
  #footer address {
    font-size: 12px;
    line-height: 1.8;
    margin: 20px 0 0;
    font-weight: 500;
    text-align: center;
    width: 100%;
  }
  .footerInner {
    flex-direction: column-reverse;
    justify-content: center;
  }
  .fotterNav {
    justify-content: center;
    margin: 0 0 30px;
    flex-wrap: wrap;
    font-size: 16px;
  }
}
.blueButton {
  background-color: #1E1487;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 50px;
  position: relative;
}
.blueButton span {
  color: #fff;
  font-size: 18px;
}
.blueButton::after {
  content: "";
  display: block;
  background-image: url("../images/arrow.png");
  width: 17px;
  height: 17px;
  position: absolute;
  top: 50%;
  right: 1em;
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: -3px;
}
.blueButton:hover {
  background-color: #fff;
  border: solid 1px #1E1487;
}
.blueButton:hover::after {
  background-image: url("../images/arrow_hover.png");
}
.blueButton:hover span {
  color: #1E1487;
}

/*lower*/
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  width: 94%;
}

#header {
  box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.2);
  z-index: 5;
  position: relative;
}

.headerInner {
  display: flex;
  justify-content: space-between;
}

.headerLeft ul {
  font-size: 18px;
  display: flex;
  margin: 45px 0 45px;
}
.headerLeft ul li {
  margin-right: 2em;
}
.headerLeft ul .active a {
  color: #1E1487;
  text-decoration: underline;
}

.headerRight {
  display: flex;
  margin: 35px 0 35px;
}
.headerRight .navButton {
  width: 240px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #343434;
  margin-left: 1em;
}
.headerRight .navButton:hover {
  background-color: #1E1487;
  border-color: #1E1487;
}
.headerRight .navButton:hover span {
  color: #fff;
}

#header.product {
  box-shadow: none;
}

.spMenuIcon {
  display: none;
}

.spMenu {
  display: none;
}

@media (max-width: 900px) {
  .headerInner {
    display: none;
  }
  .spMenuIcon {
    display: block;
    position: fixed;
    top: 4.66vw;
    right: 0;
    z-index: 100;
  }
  .spMenuIcon .open {
    display: none;
    cursor: pointer;
  }
  .spMenuIcon .close {
    display: none;
    margin: 0 32px;
    cursor: pointer;
  }
  .spMenuIcon .active {
    display: block;
  }
  .spMenu {
    display: none;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    background-image: url(../images/bg_menu_SP.png);
    background-color: #fff;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 10;
    background-position: bottom;
  }
  .spMenu .logo {
    margin: 17px 0 0 15px;
  }
  .spMenu ul {
    margin: 45px 0 0 60px;
  }
  .spMenu li {
    font-size: 24px;
    margin: 0 0 1em 0;
    display: block;
  }
  .spMenu a {
    text-shadow: 0px 0px 7px #fff;
  }
  .spMenu .line {
    transform: rotate(90deg);
    border-bottom: 1px solid #000;
    position: absolute;
    text-align: left;
    width: 310px;
    margin: 0 auto;
    height: 30px;
    top: 230px;
    left: -125px;
    padding: 0 0px 0 32px;
  }
}
#download .pageTitle,
#news .pageTitle {
  background-image: url(../images/title_bl.jpg);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#download .pageTitle h1,
#news .pageTitle h1 {
  text-align: center;
  font-size: 42px;
  font-weight: 500;
}
#download .pageTitle h1 span,
#news .pageTitle h1 span {
  display: block;
  font-size: 24px;
}
@media (max-width: 900px) {
  #download .pageTitle,
  #news .pageTitle {
    height: 240px;
  }
  #download .pageTitle h1,
  #news .pageTitle h1 {
    font-size: 24px;
  }
  #download .pageTitle h1 span,
  #news .pageTitle h1 span {
    font-size: 18px;
  }
}

.breadcrumb ul {
  display: flex;
  font-size: 16px;
  margin: 20px 0;
}
.breadcrumb li,
.breadcrumb a {
  font-family: "Noto Sans JP", sans-serif;
}
.breadcrumb li:after {
  content: ">";
  margin: 0 1em;
}
.breadcrumb li:last-child:after {
  display: none;
}
.breadcrumb li a {
  white-space: nowrap;
}
.breadcrumb .active {
  color: #1E1487;
}

@media (max-width: 900px) {
  .breadcrumb ul {
    font-size: 12px;
    margin: 15px 0;
  }
}
.wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 75px 0;
}

.wp-pagenavi .pages,
.wp-pagenavi .first,
.wp-pagenavi .last {
  display: none;
}

.wp-pagenavi a.page,
.wp-pagenavi span.page {
  padding: 0 7px 0 7px;
  margin: 0px 5px;
  text-align: center;
  font-size: 20px;
  text-decoration: none;
}

.wp-pagenavi a:hover {
  color: #1E1487;
}

.wp-pagenavi span.current {
  color: #1E1487;
  font-size: 20px;
  padding: 0 7px 0 7px;
  margin: 0px 5px;
  border-bottom: 1px solid #1E1487;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  background: #1E1487;
  width: 30px;
  height: 33px;
  padding: 0 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 1em;
}
.wp-pagenavi .previouspostslink img,
.wp-pagenavi .nextpostslink img {
  width: 8px;
  height: auto;
}

@media (max-width: 900px) {
  .wp-pagenavi {
    margin: 30px 0;
  }
}
/*news*/
.newsList {
  border-top: 1px solid #343434;
}
.newsList li {
  border-bottom: 1px solid #343434;
  padding: 40px 35px;
  display: flex;
  align-items: center;
  line-height: 1.8;
}
.newsList time {
  font-size: 20px;
  margin-right: 3em;
}
.newsList a {
  font-family: "Noto Sans JP", sans-serif;
}

@media (max-width: 900px) {
  .newsList li {
    padding: 20px 15px;
    display: block;
    font-size: 16px;
  }
  .newsList time {
    font-size: 16px;
    margin-right: 3em;
    display: block;
  }
  .newsList a {
    text-decoration: underline;
  }
}
.newsDetail {
  margin: 70px 0 0;
}
.newsDetail time {
  font-size: 20px;
}
.newsDetail h2 {
  font-size: 20px;
  border-top: 1px solid #343434;
  border-bottom: 1px solid #343434;
  padding: 30px 20px;
  margin: 15px 0 50px;
}
.newsDetail .blockArea {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
}
.newsDetail .blockArea p {
  margin: 0 0 2.5em;
}
.newsDetail .blockArea h3 {
  color: #1E1487;
  margin-bottom: 5px;
}

@media (max-width: 900px) {
  .newsDetail {
    margin: 30px 0 0;
  }
  .newsDetail time {
    font-size: 16px;
  }
  .newsDetail h2 {
    font-size: 18px;
    border-top: 1px solid #343434;
    border-bottom: 1px solid #343434;
    padding: 15px 5px;
    margin: 15px 0 30px;
  }
}
.newsDetailBottom {
  margin: 100px auto;
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) {
  .newsDetailBottom {
    margin: 50px auto;
  }
}
/*download*/
#download .contents {
  display: flex;
  position: relative;
  margin: 85px auto;
}
#download .line {
  transform: rotate(90deg);
  border-bottom: 1px solid #000;
  position: absolute;
  text-align: left;
  width: 600px;
  margin: 0 auto;
  height: 30px;
  top: 250px;
  left: calc(33% - 265px);
  padding: 0 0px 0 18%;
}
#download .motivaArea {
  width: 33.33%;
  text-align: center;
}
#download .floraArea {
  width: 66.66%;
  text-align: center;
}
#download .logo {
  margin: 0px auto;
}
#download .logo + p {
  font-size: 24px;
  line-height: 1.4;
  margin: 45px auto 30px;
}
#download .logo img {
  width: 80%;
  max-width: 100%;
}
#download .floraArea .logo + p {
  margin: 25px auto 30px;
}
#download .imgArea {
  min-height: 240px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
#download .imgArea img {
  width: 100%;
  max-width: 100%;
}
#download .itemArea > div:first-child {
  margin-right: 40px;
}
#download .floraArea .itemArea {
  display: flex;
  justify-content: center;
}
#download .downloadButton {
  width: 240px;
  height: 70px;
  display: flex;
  margin: 0 auto;
  text-align: left;
  align-content: center;
  padding: 15px 0 0 25px;
  display: block;
  position: relative;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
}
#download .downloadButton span {
  font-size: 16px;
  line-height: 1.2;
  display: block;
}
#download .downloadButton.purple {
  background: #7D378C;
}
#download .downloadButton.purple span {
  color: #fff;
}
#download .downloadButton.purple::after {
  content: url(../images/download/download_icon.png);
  position: absolute;
  top: 25px;
  right: 10px;
}
#download .downloadButton.pink {
  background: #DC69AA;
}
#download .downloadButton.pink span {
  color: #fff;
}
#download .downloadButton.pink::after {
  content: url(../images/download/download_icon.png);
  position: absolute;
  top: 25px;
  right: 10px;
}
#download .downloadButton.white {
  background: #fff;
  border: 1px solid #DC69AA;
}
#download .downloadButton.white span {
  color: #DC69AA;
}
#download .downloadButton.white::after {
  content: url(../images/download/download_pink_icon.png);
  position: absolute;
  top: 25px;
  right: 10px;
}
#download .downloadButton:hover.purple {
  background: #fff;
  border: 1px solid #7D378C;
}
#download .downloadButton:hover.purple span {
  color: #7D378C;
}
#download .downloadButton:hover.purple::after {
  content: url(../images/download/download_purple_icon.png);
}
#download .downloadButton:hover.pink {
  background: #fff;
  border: 1px solid #DC69AA;
}
#download .downloadButton:hover.pink span {
  color: #DC69AA;
}
#download .downloadButton:hover.pink::after {
  content: url(../images/download/download_pink_icon.png);
}
#download .downloadButton:hover.white {
  background: #DC69AA;
}
#download .downloadButton:hover.white span {
  color: #fff;
}
#download .downloadButton:hover.white::after {
  content: url(../images/download/download_icon.png);
}

@media (max-width: 1000px) {
  #download .downloadButton {
    width: 200px;
  }
  #download .imgArea {
    width: 200px;
    margin: 0 auto;
  }
  #download .logo + p {
    font-size: 20px;
    line-height: 1.4;
    margin: 45px auto 30px;
  }
}
@media (max-width: 900px) {
  #download .contents {
    display: block;
    position: relative;
    margin: 30px auto;
  }
  #download .line {
    display: none;
  }
  #download .logo + p {
    font-size: 20px;
    line-height: 1.4;
    margin: 25px auto 25px;
  }
  #download .motivaArea,
  #download .floraArea {
    width: 100%;
    display: block;
  }
  #download .motivaArea {
    border-bottom: 1px solid #333;
    padding: 0;
    margin-bottom: 50px;
  }
  #download .downloadButton {
    width: 240px;
    margin: 0 auto 50px;
  }
  #download .imgArea {
    width: auto;
    height: auto;
  }
}
@media (max-width: 650px) {
  #download .floraArea .itemArea {
    display: block;
  }
  #download .itemArea > div:first-child {
    margin-right: auto;
  }
}
/*contact*/
#contact {
  background-image: url(../images/contact/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 0 0 60px;
  /*入力画面*/
  /*確認画面*/
}
#contact .pageTitle {
  background-image: url(../images/contact/title_bl.png);
  height: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 890px;
  margin: 50px auto;
}
#contact .pageTitle h1 {
  text-align: center;
  font-size: 42px;
  font-weight: 500;
}
#contact .pageTitle h1 span {
  display: block;
  font-size: 24px;
}
@media (max-width: 900px) {
  #contact .pageTitle {
    height: 240px;
  }
  #contact .pageTitle h1 {
    font-size: 24px;
  }
  #contact .pageTitle h1 span {
    font-size: 18px;
  }
}
#contact .formBox {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #707070;
  padding: 60px 100px;
  box-sizing: border-box;
}
#contact .readText {
  text-align: center;
  line-height: 2;
}
#contact .readText p {
  margin-bottom: 1em;
}
#contact .red {
  color: #DC3232;
}
#contact .formArea {
  border-top: 1px solid #343434;
  margin: 50px auto;
}
#contact .formArea .formLine {
  border-bottom: 1px solid #343434;
  padding: 30px 20px;
  display: flex;
  align-items: center;
}
#contact .formArea .formLabel {
  width: 24%;
  font-size: 20px;
}
#contact .formArea .formLabel .red {
  padding: 0 0 0 5px;
}
#contact .formArea .formInput {
  width: 76%;
}
#contact .formArea input {
  width: 100%;
  border: 1px solid #707070;
  background: #fff;
}
#contact .formArea textarea {
  height: 160px;
  width: 100%;
  resize: none;
  border: 1px solid #707070;
  background: #fff;
}
#contact .formButtonArea {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 10px;
}
#contact .formButton {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
#contact .formButton input {
  background-color: #1E1487;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 50px;
  border: none;
  color: #fff;
  font-size: 18px;
}
#contact .formButton::after {
  content: "";
  display: block;
  background-image: url("../images/arrow.png");
  width: 17px;
  height: 7px;
  position: absolute;
  top: 50%;
  right: 1em;
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: -3px;
}
#contact .formButton:hover::after {
  background-image: url("../images/arrow_hover.png");
}
#contact .formButton:hover input {
  cursor: pointer;
  background-color: #fff;
  border: solid 1px #1E1487;
  color: #1E1487;
}
#contact .mw_wp_form_input .readTextConfirm {
  display: none;
}
#contact .mw_wp_form_confirm .readTextInput {
  display: none;
}
@media (max-width: 900px) {
  #contact {
    background-position: left;
  }
  #contact .pageTitle {
    height: 240px;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  #contact .pageTitle h1 {
    font-size: 24px;
  }
  #contact .pageTitle h1 span {
    font-size: 18px;
  }
  #contact .readText {
    text-align: left;
  }
  #contact .formBox {
    padding: 15px 15px 30px;
  }
  #contact .formArea {
    border-top: 1px solid #343434;
    margin: 30px auto;
  }
  #contact .formArea .formLine {
    padding: 15px 10px;
    display: block;
  }
  #contact .formArea .formLabel {
    width: 100%;
    font-size: 18px;
    margin-bottom: 5px;
  }
  #contact .formArea .formInput {
    width: 100%;
  }
}

/*product*/
body.productBk {
  background-image: url(../images/product/bk.jpg);
  background-position: top center;
  background-repeat: no-repeat;
}

@media (max-width: 900px) {
  body.productBk {
    background-image: url(../images/product/bk_sp.jpg);
    background-size: 100%;
  }
}
#product .downloadLink.DownMove {
  top: 65px;
}
#product .downloadLink {
  position: fixed;
  right: 0;
  top: 200px;
  transition: 0.5s;
  z-index: 9999;
}
#product .downloadLink > li {
  margin-bottom: 140px;
  transform: rotate(90deg);
  margin-right: -60px;
}
#product .downloadLink .downloadButton {
  width: 200px;
  height: 80px;
  display: flex;
  margin: 0 auto;
  align-items: center;
  padding: 0 0 0 15px;
  position: relative;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
#product .downloadLink .downloadButton span {
  font-size: 16px;
  line-height: 1.2;
  display: block;
}
#product .downloadLink .downloadButton::after {
  content: url(../images/product/download_icon.png);
  position: absolute;
  top: 25px;
  right: 13px;
  transform: rotate(-90deg);
}
#product .downloadLink .downloadButton.purple {
  background: #7D378C;
}
#product .downloadLink .downloadButton.purple span {
  color: #fff;
}
#product .downloadLink .downloadButton.pink {
  background: #DC69AA;
}
#product .downloadLink .downloadButton.pink span {
  color: #fff;
}
#product .downloadLink .downloadButton.white {
  background: #fff;
  border: 1px solid #DC69AA;
}
#product .downloadLink .downloadButton.white span {
  color: #DC69AA;
}
#product .downloadLink .downloadButton.white::after {
  content: url(../images/product/download_pink_icon.png);
}
#product .downloadLink .downloadButton:hover.purple {
  background: #fff;
  border: 1px solid #7D378C;
}
#product .downloadLink .downloadButton:hover.purple span {
  color: #7D378C;
}
#product .downloadLink .downloadButton:hover.purple::after {
  content: url(../images/download/download_purple_icon.png);
}
#product .downloadLink .downloadButton:hover.pink {
  background: #fff;
  border: 1px solid #DC69AA;
}
#product .downloadLink .downloadButton:hover.pink span {
  color: #DC69AA;
}
#product .downloadLink .downloadButton:hover.pink::after {
  content: url(../images/download/download_pink_icon.png);
}
#product .downloadLink .downloadButton:hover.white {
  background: #DC69AA;
}
#product .downloadLink .downloadButton:hover.white span {
  color: #fff;
}
#product .downloadLink .downloadButton:hover.white::after {
  content: url(../images/download/download_icon.png);
}
#product .productMv {
  padding-top: 85px;
  padding-bottom: 195px;
  position: relative;
}
#product .productMv ul {
  display: flex;
  justify-content: space-around;
}
#product .productMv ul > li {
  max-width: 550px;
}
#product .productMv ul > li img {
  margin-bottom: 24px;
}
#product .productMv ul > li span {
  display: block;
  font-size: 30px;
  font-weight: 500;
  text-align: center;
}
#product .productMv .line {
  transform: rotate(90deg);
  border-bottom: 1px solid #000;
  position: absolute;
  text-align: left;
  padding-left: 16px;
  width: 140px;
  margin: 0 auto;
  height: 30px;
  bottom: 105px;
  left: 50%;
  margin-left: -85px;
}
#product .productMv .clickEitherContainer {
  display: none;
}
#product .productNews {
  display: flex;
  align-items: center;
  border: solid 1px #343434;
  padding: 22px 2.5% 22px 4.3%;
  margin-bottom: 150px;
}
#product .productNews > dt {
  font-size: 24px;
  font-weight: 500;
  margin-right: 70px;
  white-space: nowrap;
}
#product .productNews > dd a {
  display: flex;
  align-items: center;
}
#product .productNews > dd time {
  font-size: 20px;
  margin-right: 24px;
  white-space: nowrap;
}
#product .productNews > dd span {
  font-family: "Noto Sans JP", sans-serif;
}
#product .productHeader {
  margin-bottom: 120px;
}
#product .productHeader .productHeadline {
  color: #7D378C;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 50px;
  position: relative;
}
#product .productHeader .productHeadline span {
  color: #7D378C;
  font-size: 60px;
}
#product .productHeader .productHeadline::after {
  content: "";
  position: absolute;
  bottom: -140px;
  left: -60px;
  z-index: -1;
  display: block;
  width: 120px;
  height: 240px;
  background-image: url(../images/product/product01_leaf.png);
  background-size: contain;
  background-repeat: no-repeat;
}
#product .productHeader h1 {
  text-align: center;
  margin-bottom: 47px;
}
#product .productHeader h1 img {
  margin: 0 auto;
}
#product .productHeader .productLead {
  font-size: 42px;
  font-weight: 500;
  text-align: center;
}
#product .productHeader .productLead br {
  display: none;
}
#product .productDetail.column2, #product .productDetail.column2right {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 130px;
}
#product .productDetail.column2 .text, #product .productDetail.column2right .text {
  width: 46.6%;
  overflow: hidden;
}
#product .productDetail.column2 .image, #product .productDetail.column2right .image {
  width: 46.6%;
}
#product .productDetail.column2right {
  flex-direction: row-reverse;
}
#product .productDetail.column1 {
  margin-bottom: 60px;
}
#product .productDetail.column1 .image {
  margin-bottom: 30px;
}
#product .productDetail.column1 .image + h3 {
  margin-top: 75px;
}
#product .productDetail .text {
  overflow: hidden;
}
#product .productDetail .image {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
  position: relative;
}
#product .productDetail .image::after {
  content: "";
  position: absolute;
  bottom: -45px;
  left: -40px;
  z-index: -1;
  display: block;
  width: 80px;
  height: 160px;
  background-image: url(../images/product/product01_leaf.png);
  background-size: contain;
  background-repeat: no-repeat;
}
#product .productDetail .image.noLeaf::after {
  content: none;
}
#product .productDetail .video {
  margin: 0 auto 30px;
  max-width: 1000px;
}
#product .productDetail .video iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}
#product .productDetail .headlineLead {
  display: inline-block;
  color: #1E1487;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 26px;
  position: relative;
}
#product .productDetail .headlineLead::after {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background-color: #343434;
  position: absolute;
  right: -124px;
  top: 50%;
}
#product .productDetail h2 {
  color: #7D378C;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.72;
  margin-bottom: 35px;
}
#product .productDetail h3 {
  font-size: 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  padding-left: 1.5em;
  margin-bottom: 17px;
  position: relative;
}
#product .productDetail h3::before {
  content: "●";
  position: absolute;
  left: 0;
}
#product .productDetail p + h3 {
  margin-top: 30px;
}
#product .productDetail p:not([class]) {
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
#product .approvalNumber {
  text-align: center;
}
#product .approvalNumber dt, #product .approvalNumber dd {
  font-family: "Noto Sans JP", sans-serif;
}
#product .sizeChart {
  background-color: rgba(125, 55, 140, 0.2);
  padding: 40px 8.3% 90px;
  text-align: center;
  margin-top: 45px;
}
#product .sizeChart h2 {
  margin-bottom: 20px;
}
#product .sizeChart div + div {
  margin-top: 40px;
}
#product #product01 {
  margin-bottom: 185px;
  background-image: url(../images/product/product01_bg.png);
  background-position: top 600px right;
  background-repeat: no-repeat;
}
#product #product02 {
  margin-bottom: 130px;
  background-image: url(../images/product/product02_bg.png);
  background-position: top 200px left;
  background-repeat: no-repeat;
}
#product #product02 .productHeader .productHeadline {
  color: #DC69AA;
}
#product #product02 .productHeader .productHeadline span {
  color: #DC69AA;
}
#product #product02 .productHeader .productHeadline::after {
  background-image: url(../images/product/product02_leaf.png);
}
#product #product02 .productDetail h2 {
  color: #DC69AA;
}
#product #product02 .image::after {
  background-image: url(../images/product/product02_leaf.png);
}
#product #product02 .sizeChart {
  background-color: rgba(220, 105, 170, 0.2);
}
@media (max-width: 900px) {
  #product .downloadLink {
    display: none;
  }
  #product .productMv {
    padding-top: 35px;
    padding-bottom: 40px;
  }
  #product .productMv ul {
    display: block;
  }
  #product .productMv ul > li {
    width: 73.33%;
    margin: 0 auto 50px;
  }
  #product .productMv ul > li img {
    margin-bottom: 10px;
  }
  #product .productMv ul > li span {
    font-size: 16px;
  }
  #product .productMv .line {
    display: none;
  }
  #product .productMv .clickEitherContainer {
    display: block;
    position: absolute;
    left: 4.66%;
    top: 210px;
  }
  #product .productMv .clickEitherContainer .clickEither {
    transform: rotate(90deg);
    border-bottom: 1px solid #000;
    font-size: 14px;
    text-align: right;
    padding-right: 12px;
    width: 325px;
    height: 24px;
    margin-left: -150.5px;
  }
  #product .productNews {
    display: block;
    padding: 20px 4.4% 25px 4.4%;
    margin-bottom: 40px;
  }
  #product .productNews > dt {
    font-size: 18px;
    text-align: center;
    margin-right: 0;
    margin-bottom: 8px;
  }
  #product .productNews > dd a {
    display: block;
  }
  #product .productNews > dd time {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
  }
  #product .productNews > dd span {
    font-size: 13px;
  }
  #product .productHeader {
    margin-bottom: 50px;
  }
  #product .productHeader .productHeadline {
    font-size: 20px;
    margin-left: 30px;
    margin-bottom: 75px;
  }
  #product .productHeader .productHeadline span {
    font-size: 30px;
  }
  #product .productHeader .productHeadline::after {
    bottom: -62px;
    left: -30px;
    width: 60px;
    height: 120px;
  }
  #product .productHeader h1 {
    margin-bottom: 16px;
  }
  #product .productHeader .productLead {
    font-size: 16px;
  }
  #product .productHeader .productLead br {
    display: block;
  }
  #product .productDetail.column2, #product .productDetail.column2right {
    display: block;
    margin-bottom: 72px;
  }
  #product .productDetail.column2 .text, #product .productDetail.column2right .text {
    width: 100%;
    margin-bottom: 25px;
  }
  #product .productDetail.column2 .image, #product .productDetail.column2right .image {
    width: 82%;
    max-width: 560px;
    margin: 0 auto;
  }
  #product .productDetail.column2 .image::after, #product .productDetail.column2right .image::after {
    bottom: -22px;
    left: -21px;
    width: 40px;
    height: 80px;
  }
  #product .productDetail.column1 {
    margin-bottom: 72px;
  }
  #product .productDetail.column1 .image {
    margin-bottom: 25px;
  }
  #product .productDetail.column1 .image + h3 {
    margin-top: 0;
  }
  #product .productDetail .headlineLead {
    font-size: 15px;
    margin-bottom: 15px;
  }
  #product .productDetail .headlineLead::after {
    width: 62px;
    right: -75px;
  }
  #product .productDetail h2 {
    font-size: 23px;
    margin-bottom: 20px;
  }
  #product .productDetail h2 br {
    display: none;
  }
  #product .productDetail h3 {
    font-size: 16px;
    margin-bottom: 5px;
  }
  #product .productDetail p {
    font-size: 13px;
  }
  #product .sizeChart {
    margin-top: 35px;
    padding: 22px 4.4% 24px;
  }
  #product .sizeChart h2 {
    margin-bottom: 20px;
  }
  #product .sizeChart div + div {
    margin-top: 15px;
  }
  #product #product01 {
    margin-bottom: 100px;
    background-image: none;
  }
  #product #product02 {
    margin-bottom: 65px;
    background-image: none;
  }
}/*# sourceMappingURL=common.css.map */