@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;600;700&display=swap");
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

.sp-only {
  display: none;
}
@media (max-width: 1024px) {
  .sp-only {
    display: block;
  }
}

.sp-inline {
  display: none;
}
@media (max-width: 1024px) {
  .sp-inline {
    display: inline;
  }
}

.pc-only {
  display: block;
}
@media (max-width: 1024px) {
  .pc-only {
    display: none;
  }
}

:root {
  --white: #FFFFFF;
  --green: #003314;
  --gray: #E0E0E0;
  --black: #000000;
  --font-family: "游ゴシック", YuGothic, sans-serif;
  --font-mincho: "游明朝", YuMincho, serif;
  --font-shippori: "Shippori Mincho", serif;
  --font-weight__regular: 400;
  --font-weight__medium: 500;
  --font-weight__bold: 700;
  --font-weight__black: 900;
  --width-base: calc(100% - 50px);
  --width-content1: 1440px;
  --width-content2: 1240px;
  --width-content3: 1040px;
  --width-content4: 700px;
  --width-content5: 980px;
  --width1: min(var(--width-base), var(--width-content1));
  --full-width1: min(100% , var(--width-content1));
  --width2: min(var(--width-base), var(--width-content2));
  --full-width2: min(100% , var(--width-content2));
  --width3: min(var(--width-base), var(--width-content3));
  --full-width3: min(100% , var(--width-content3));
  --width4: min(var(--width-base), var(--width-content4));
  --full-width4: min(100% , var(--width-content4));
  --width5: min(var(--width-base), var(--width-content5));
  --full-width5: min(100% , var(--width-content5));
  --height__adminbar: 32px;
  --height__header: 100px;
  --zindex__hamburger: 1000;
  --zindex__hamburger-mask: 950;
  --zindex__header: 900;
  --zindex__modal: 800;
  --shadow: 0px 3px 6px #00000029;
}

@media (max-width: 1024px) {
  :root {
    --height__header: 50px;
  }
}
@media (max-width: 782px) {
  :root {
    --height__adminbar: 46px;
  }
}
html {
  font-size: 62.5%;
}

@media (max-width: 1440px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media (max-width: 1024px) {
  html {
    font-size: 2.6666666667vw;
  }
}
body {
  font-size: 1.6rem;
  font-family: var(--font-family);
  font-weight: var(--font-weight__medium);
  color: var(--black);
  background-color: var(--white);
  line-height: 1.2;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

* {
  box-sizing: border-box;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--black);
  cursor: pointer;
}

a:hover {
  opacity: 0.5;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

input[type=submit] {
  cursor: pointer;
}

input[type=submit]:hover {
  opacity: 0.5;
}

/****************************************************/
/* standard-iinner                                  */
/****************************************************/
.standard-inner1 {
  width: var(--width1);
  margin: 0 auto;
}

.fullwidth.standard-inner1 {
  width: var(--full-width1);
}

.standard-inner2 {
  width: var(--width2);
  margin: 0 auto;
}

.fullwidth.standard-inner2 {
  width: var(--full-width2);
}

.standard-inner3 {
  width: var(--width3);
  margin: 0 auto;
}

.fullwidth.standard-inner3 {
  width: var(--full-width3);
}

.standard-inner4 {
  width: var(--width4);
  margin: 0 auto;
}

.fullwidth.standard-inner4 {
  width: var(--full-width4);
}

.standard-inner5 {
  width: var(--width5);
  margin: 0 auto;
}

.fullwidth.standard-inner5 {
  width: var(--full-width5);
}

.header__dummy {
  height: var(--height__header);
}

.header {
  position: fixed;
  width: 100%;
  height: var(--height__header);
  top: 0;
  z-index: var(--zindex__header);
  background-color: var(--white);
}

.header__inner {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-right: 65px;
  padding-left: 96px;
}

.header__icon {
  width: 50px;
  margin-right: 50px;
}

.home .header__icon {
  display: none;
}

.header__translate {
  margin-right: auto;
}

.header__logo {
  width: 215px;
  margin-right: 98px;
}

.header__menu {
  padding-right: 7px;
  /* height: 100%; */
}

.header__menu-list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  /* height: 100%; */
}

.header__menu-item {
  margin-right: 22.5px;
}

.header__menu-item.instagram {
  width: 26.5px;
}

.header__menu-item.cart {
  width: 30.8px;
}

.header__gnavi-btn {
  position: relative;
  width: 34px;
  height: 22px;
  cursor: pointer;
}

.header__gnavi-btn span {
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: var(--green);
}

.header__gnavi-btn span::before, .header__gnavi-btn span::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--green);
}

.header__gnavi-btn span::before {
  top: -10px;
}

.header__gnavi-btn span::after {
  top: 10px;
}

.gnavi__mask {
  position: fixed;
  width: 100vw;
  height: 100vh;
  right: -100vw;
  top: 0;
  z-index: var(--zindex__hamburger-mask);
}

.gnavi {
  position: fixed;
  top: 0;
  right: -600px;
  width: 100%;
  max-width: 600px;
  height: 100%;
  max-height: 800px;
  transition: right 0.5s ease;
  z-index: var(--zindex__hamburger);
}

.gnavi::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background-color: var(--green);
  opacity: 0.9;
  z-index: -1;
}

.gnavi__header {
  display: flex;
  width: 100%;
  height: var(--height__header);
  justify-content: flex-end;
  flex-wrap: wrap;
  align-items: center;
  padding-right: 65px;
}

.gnavi__logo {
  width: 215px;
  margin-right: 98px;
}

.gnavi__menu {
  padding-right: 7px;
}

.gnavi__menu-list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
}

.gnavi__menu-item {
  margin-right: 22.5px;
}

.gnavi__menu-item.instagram {
  width: 26.5px;
}

.gnavi__menu-item.cart {
  width: 30.8px;
}

.gnavi__close {
  position: relative;
  width: 34px;
  height: 22px;
  cursor: pointer;
}

.gnavi__close span {
  display: block;
  width: 42px;
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
  left: -4px;
}

.gnavi__close span::before,
.gnavi__close span::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  bottom: 0;
  top: 0;
  margin: auto;
}

.gnavi__close span::before {
  transform: rotate(45deg);
}

.gnavi__close span::after {
  transform: rotate(-45deg);
}

.gnavi__body {
  padding-top: 93px;
  padding-left: 65px;
  padding-right: 100px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-shippori);
  color: var(--white);
}

.gnavi__body a {
  color: var(--white);
}

.gnavi__navi-link {
  display: block;
  font-size: 19px;
  line-height: 2.3684210526;
}

.gnavi__store {
  width: 160px;
  height: 27px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px var(--white);
  font-size: 18px;
  margin-bottom: 20px;
}

.gnavi__instagram-link {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  font-size: 18px;
}

.gnavi__instagram-link img {
  display: block;
  width: 18.9px;
  margin-right: 7px;
}

/* Gナビオープン時 */
.gnavi_open .gnavi__mask {
  right: 0;
}

.gnavi_open .gnavi {
  right: 0;
}

.gnavi_open {
  overflow: hidden !important;
}

@media (max-width: 1024px) {
  .header__inner {
    padding-right: 19px;
  }
  .header__icon {
    display: none;
  }
  .header__translate {
    position: absolute;
    right: 5px;
    top: 55px;
  }
  .header__gnavi-btn {
    width: 22px;
    height: 14px;
  }
  .header__gnavi-btn span {
    height: 1.3px;
  }
  .header__gnavi-btn span::before,
.header__gnavi-btn span::after {
    height: 1.3px;
  }
  .header__gnavi-btn span::before {
    top: -6px;
  }
  .header__gnavi-btn span::after {
    top: 6px;
  }
  .header__menu-item {
    margin-right: 12px;
  }
  .header__menu-item img {
    vertical-align: middle;
  }
  .header__menu-item.cart {
    width: 20px;
  }
  .header__menu-item.instagram {
    width: 17px;
  }
  .header__logo {
    width: 125px;
    margin-right: 20px;
  }
  .header__logo img {
    vertical-align: middle;
  }
  .gnavi {
    width: 280px;
    right: -280px;
    height: 100vh;
    max-height: 560px;
    overflow-y: scroll;
  }
  .gnavi::before {
    opacity: 1;
  }
  .gnavi__header {
    padding-right: 19px;
  }
  .gnavi__close span {
    width: 24px;
  }
  .gnavi__close span::before, .gnavi__close span::after {
    height: 1.3px;
  }
  .gnavi__close {
    width: 20px;
  }
  .gnavi__menu-item {
    margin-right: 12px;
  }
  .gnavi__menu-item.cart {
    width: 20px;
  }
  .gnavi__menu-item.instagram {
    width: 17px;
  }
  .gnavi__logo {
    width: 125px;
    margin-right: 20px;
  }
  .gnavi__menu {
    padding-right: 9px;
  }
  .gnavi__body {
    padding-top: 17px;
    padding-left: 28px;
    display: block;
  }
  .gnavi__navi-link {
    font-size: 14px;
    line-height: 2.4285714286;
  }
  .gnavi__row1 {
    padding-bottom: 20px;
  }
  .gnavi__store {
    width: 128px;
    height: 23px;
    font-size: 14px;
    margin-bottom: 15px;
  }
  .gnavi__instagram-link {
    font-size: 14px;
  }
  .gnavi__instagram-link img {
    width: 13px;
    margin-right: 4px;
  }
}
.footer-contact {
  background-image: url(../img/footer-contact__bg.jpg);
  padding: 100px 0;
  background-size: cover;
}

.footer-contact__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 75px;
  border: solid 1px var(--white);
  margin: 0 auto;
  font-family: var(--font-mincho);
  color: var(--white);
  font-size: 25px;
  font-weight: 600;
}

.footer-box {
  background-image: url(../img/footer-box__bg.jpg);
  background-size: cover;
  padding-top: 50px;
  padding-bottom: 100px;
}

.footer-box__logo {
  width: 248px;
  padding-bottom: 10px;
}

.footer-box__name {
  font-size: 13px;
  font-family: var(--font-mincho);
  padding-bottom: 25px;
}

.footer-box__address {
  font-size: 13px;
  font-family: var(--font-mincho);
  line-height: 1.4615384615;
}

.footer-box__tel {
  font-size: 13px;
  font-family: var(--font-mincho);
  line-height: 1.4615384615;
}

.footer-box__inner {
  width: calc(100% - 50px);
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  color: var(--white);
}

.footer-box a {
  color: var(--white);
}

.footer-box__right {
  display: flex;
  -moz-column-gap: 50px;
       column-gap: 50px;
}

.footer__navi-item {
  padding-bottom: 20px;
}

.footer__navi-link {
  font-family: var(--font-shippori);
  font-size: 16px;
  line-height: 1.25;
}

.footer__store-link {
  display: flex;
  width: 165px;
  height: 27px;
  justify-content: center;
  align-items: center;
  border: solid 1px var(--white);
  font-size: 18px;
  font-family: var(--font-shippori);
}

.footer__instagram-link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 18px;
  font-weight: var(--font-weight__bold);
  font-family: var(--font-shippori);
}

.footer__instagram-link img {
  width: 19px;
  margin-right: 10px;
}

.footer__store {
  padding-bottom: 20px;
}

.footer-box__col2 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 200px;
  font-family: var(--font-mincho);
}

.footer-box__row1 {
  width: 100%;
}

.footer-box__row2 {
  margin-top: auto;
  font-size: 16px;
  line-height: 1.2857142857;
}

.footer__tokusho {
  padding-bottom: 10px;
}

.footer-box__sp {
  display: none;
  font-size: 16px;
  font-family: var(--font-mincho);
  line-height: 28px;
  padding: 28px 0;
}

.footer-sp__privacy {
  padding-bottom: 28px;
}

@media (max-width: 1024px) {
  .top-mainview::before {
    content: "";
    display: block;
    position: absolute;
    width: calc(100% - 90px);
    height: 100%;
    top: 0;
    background-color: var(--gray);
    z-index: -1;
  }
  .footer-contact {
    padding: 70px 0;
  }
  .footer-contact__link {
    width: 100%;
    max-width: 250px;
    height: 60px;
    font-size: 18px;
  }
  .footer-box__inner {
    display: block;
    padding: 0 20px;
  }
  .footer-box {
    padding-top: 20px;
    padding-bottom: 35px;
  }
  .footer-box__logo {
    width: 200px;
  }
  .footer-box__name {
    display: none;
  }
  .footer-box__address {
    display: none;
  }
  .footer-box__tel {
    display: none;
  }
  .footer__navi-item {
    font-size: 16px;
  }
  .footer-box__right {
    padding-top: 40px;
  }
  .footer-box__row2 {
    display: none;
  }
  .footer__instagram-link {
    font-size: 16px;
  }
  .footer__store-link {
    font-size: 16px;
  }
  .footer-box__sp {
    display: block;
  }
}
/****************************************************/
/* the-content__type1                               */
/****************************************************/
.the-content__type1 h2 {
  font-size: 28px;
  line-height: 1.5;
  padding-bottom: 12px;
}

.the-content__type1 p {
  font-size: 20px;
  line-height: 1.5;
  padding-bottom: 20px;
}

.the-content__type1 ul {
  font-size: 20px;
  line-height: 1.5;
}

.the-content__type1 ul li {
  padding-left: 1em;
  position: relative;
}

.the-content__type1 ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}

@media (max-width: 1024px) {
  .the-content__type1 h2 {
    font-size: 20px;
    padding-bottom: 10px;
  }
  .the-content__type1 p {
    font-size: 16px;
    padding-bottom: 15px;
  }
  .the-content__type1 ul {
    font-size: 16px;
  }
}
/****************************************************/
/* section-type1                                    */
/****************************************************/
.section-type1 {
  padding-bottom: 100px;
}

.section-type1__title {
  padding-bottom: 40px;
}

.section-type1__content {
  padding-bottom: 18px;
}

.section-type1__figure-wrap {
  margin-right: max(-260px, (100vw - 980px) * -1 / 2);
}

.section-type1__figure {
  -moz-column-gap: 20px !important;
       column-gap: 20px !important;
  display: grid !important;
  grid-template-columns: 600px 1fr;
}

.section-type1__img {
  width: 100% !important;
}

.section-type1__img2 {
  margin-top: -75px !important;
}

.section-type1__text {
  margin-right: max(-130px, (100vw - 1030px) * -1 / 2);
  font-size: 18px;
  line-height: 1.7222222222;
  font-family: var(--font-mincho);
  padding-bottom: 50px;
}

@media (max-width: 1024px) {
  .section-type1 {
    padding-bottom: 50px;
  }
  .section-type1__title {
    padding-bottom: 15px;
  }
  .section-type1__figure-wrap {
    margin: 0 -25px;
  }
  .section-type1__figure {
    grid-template-columns: 100%;
  }
  .section-type1__img2 {
    margin-top: 0 !important;
  }
  .section-type1__text {
    margin: 0;
    padding-bottom: 23px;
  }
}
/****************************************************/
/* section-type2                                    */
/****************************************************/
.section-type2 {
  padding-bottom: 100px;
}

.section-type2__title {
  padding-bottom: 40px;
}

.section-type2__content {
  padding-bottom: 30px;
}

.section-type2__grid > div {
  display: grid;
  grid-template-columns: 600px 1fr;
  -moz-column-gap: 23px;
       column-gap: 23px;
  row-gap: 30px;
}

.section-type2__grid-item1 {
  grid-column: 1/2;
  grid-row: 1/3;
}

.section-type2__grid-item2 {
  font-family: var(--font-mincho);
  font-size: 18px;
  line-height: 1.7222222222;
  margin-right: max(-130px, (100vw - 1030px) * -1 / 2) !important;
  display: block;
}

@media (max-width: 1024px) {
  .section-type2 {
    padding-bottom: 50px;
  }
  .section-type2__title {
    padding-bottom: 15px;
  }
  .section-type2__grid > div {
    grid-template-columns: 100%;
    margin: 0 -25px;
    row-gap: 10px;
  }
  .section-type2__grid-item1 {
    grid-column: auto !important;
    grid-row: 1/2 !important;
  }
  .section-type2__grid-item2 {
    grid-column: auto;
    margin: 0 25px !important;
    grid-row: 3/4 !important;
    font-size: 16px;
  }
  .section-type2__grid-item3 {
    padding-left: 75px;
    padding-bottom: 10px;
  }
  .section-type2__content {
    padding-bottom: 20px;
  }
}
/****************************************************/
/* section-type3                                    */
/****************************************************/
.section-type3 {
  padding-bottom: 100px;
}

.section-type3__title {
  padding-bottom: 40px;
}

.section-type3__content {
  padding-bottom: 30px;
}

.section-type3__figure {
  display: grid !important;
  grid-template-columns: 1fr 600px;
  -moz-column-gap: 17px !important;
       column-gap: 17px !important;
}

.section-type3__img {
  width: 100% !important;
}

.section-type3__img > img {
  width: 100% !important;
  height: auto !important;
  flex: unset !important;
  margin-top: auto;
}

.section-type3__text {
  font-family: var(--font-mincho);
  font-size: 18px;
  line-height: 1.7222222222;
  margin-right: max(-130px, (100vw - 1030px) * -1 / 2);
}

@media (max-width: 1024px) {
  .section-type3 {
    padding-bottom: 50px;
  }
  .section-type3__title {
    padding-bottom: 15px;
  }
  .section-type3__figure {
    grid-template-columns: 100%;
    margin: 0 -25px;
    row-gap: 10px !important;
  }
  .section-type3__img1 {
    grid-row: 2/3 !important;
  }
  .section-type3__img1 {
    padding-right: 75px;
  }
  .section-type3__text {
    margin: 0;
    font-size: 16px;
    padding-bottom: 20px;
  }
}
/****************************************************/
/* section-type4                                    */
/****************************************************/
.section-type4 {
  padding: 100px 0;
  background-color: var(--gray);
}

.section-type4__title {
  padding-bottom: 40px;
}

@media (max-width: 1024px) {
  .section-type4 {
    padding: 50px 0;
  }
  .section-type4__title {
    padding-bottom: 15px;
  }
}
/****************************************************/
/* h2-type1                                         */
/****************************************************/
.h2-type1 {
  font-family: var(--font-mincho);
  font-size: 30px;
  color: var(--green);
  font-weight: var(--font-weight__bold);
  line-height: 1.2666666667;
}

@media (max-width: 1024px) {
  .h2-type1 {
    font-size: 26px;
  }
}
/****************************************************/
/* btn-type1                                        */
/****************************************************/
.btn-type1 {
  display: flex;
  justify-content: flex-end;
}

.btn-type1 a {
  display: block;
  position: relative;
  font-size: 16px;
  padding-right: 28px;
  color: var(--black);
  font-family: var(--font-mincho);
}

.btn-type1 a::before {
  content: "";
  position: absolute;
  display: block;
  width: 24.5px;
  height: 1px;
  background-color: var(--black);
  right: 0;
  top: 9px;
}

.btn-type1 a::after {
  content: "";
  position: absolute;
  display: block;
  width: 8.8px;
  height: 1px;
  background-color: var(--black);
  transform: rotate(36deg);
  right: 0;
  top: 6px;
}

.btn-type1 a span::after {
  border-bottom: solid 1px #333;
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  height: 2px;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  width: 100%;
  transform-origin: right top;
  transform: scale(0, 1);
}

.btn-type1 a:hover span::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

.btn-type1.white a {
  color: var(--white);
}

.btn-type1.white a::before,
.btn-type1.white a::after {
  background-color: var(--white);
}

.btn-type1.white a span::after {
  border-color: #fff;
}

@media (max-width: 1024px) {
  .btn-type1 a {
    font-size: 16px;
  }
}
/****************************************************/
/* btn-type2                                        */
/****************************************************/
.btn-type2 a {
  display: flex;
  width: 170px;
  justify-content: center;
  align-items: center;
  height: 37px;
  border: solid 1px var(--black);
  margin: 0 auto;
  font-family: var(--font-mincho);
  font-weight: var(--font-weight__bold);
  position: relative;
  padding-right: 28px;
  font-size: 16px;
}

.btn-type2 a::before {
  content: "";
  position: absolute;
  display: block;
  width: 24.5px;
  height: 1px;
  background-color: var(--black);
  right: 29px;
  top: 18px;
}

.btn-type2 a::after {
  content: "";
  position: absolute;
  display: block;
  width: 8.8px;
  height: 1px;
  background-color: var(--black);
  transform: rotate(36deg);
  right: 29px;
  top: 14.5px;
}

/****************************************************/
/* list-news                                        */
/****************************************************/
.list-news__link {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 20px 0;
  border-bottom: solid 1px #6e6e6e;
}

.list-news__category {
  width: 100px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--green);
  color: var(--white);
  font-family: var(--font-shippori);
  font-size: 14px;
  font-weight: 600;
  margin-right: 10px;
}

.list-news__date {
  font-size: 14px;
  line-height: 1.4285714286;
  width: 95px;
}

.list-news__title {
  flex: 1;
  font-size: 16px;
  line-height: 1.25;
}

@media (max-width: 1024px) {
  .list-news__date {
    flex: 1;
    font-size: max(16px, 1.2rem);
  }
  .list-news__category {
    width: 90px;
    height: 18px;
    font-size: 12px;
  }
  .list-news__title {
    width: 100%;
    flex: auto;
    font-size: max(16px, 1.4rem);
  }
  .list-news__link {
    padding: 2rem 0;
  }
  .list-news {
    border-top: solid 1px #6e6e6e;
  }
}
/****************************************************/
/* list-blogs                                       */
/****************************************************/
.list-blogs__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 50px;
       column-gap: 50px;
  row-gap: 25px;
}

.list-blogs__thumbnail {
  padding-bottom: 17px;
}

.list-blogs__date {
  font-size: 14px;
  line-height: 1.25;
  padding-bottom: 5px;
}

.list-blogs__title {
  font-size: 16px;
  line-height: 1.1875;
}

@media (max-width: 1024px) {
  .list-blogs__list {
    grid-template-columns: 100%;
    place-content: center;
  }
  .list-blogs__date {
    font-size: min(16px, 1.2rem);
  }
  .list-blogs__title {
    font-size: min(16px, 1.4rem);
  }
}
/****************************************************/
/* list-type1                                       */
/****************************************************/
.list-type1 {
  counter-set: cnt 0;
}

.list-type1__item {
  width: 100%;
  height: 100px;
  display: grid;
  background-color: var(--white);
  grid-template-columns: 320px 1fr;
  align-items: center;
  padding: 0 40px;
  border: solid 1px var(--black);
  margin-bottom: 80px;
  counter-increment: cnt 1;
  position: relative;
}

.list-type1__item::after {
  content: "";
  background-image: url("../img/icon__arrow-bottom.svg");
  width: 27px;
  display: block;
  position: absolute;
  height: 19px;
  background-position: top;
  background-repeat: no-repeat;
  left: 0;
  right: 0;
  bottom: -50px;
  margin: auto;
}

.list-type1__item:last-child:after {
  content: none;
}

.list-type1__th {
  position: relative;
  padding-left: 38px;
  color: var(--green);
}

.list-type1__th::before {
  content: counter(cnt) ".";
  position: absolute;
  left: 0;
  font-family: var(--font-mincho);
  font-size: 24px;
  font-weight: var(--font-weight__bold);
}

.list-type1__th-p {
  font-family: var(--font-mincho);
  font-size: 24px;
  font-weight: var(--font-weight__bold);
}

.list-type1__td-p {
  font-family: var(--font-mincho);
  font-size: 18px;
}

@media (max-width: 1024px) {
  .list-type1__item {
    padding: 15px;
    height: auto;
    grid-template-columns: 100%;
    margin-bottom: 40px;
  }
  .list-type1__item::after {
    width: 22px;
    bottom: -32px;
  }
  .list-type1__th {
    padding-left: 19px;
    padding-bottom: 10px;
  }
  .list-type1__th::before {
    font-size: 18px;
  }
  .list-type1__th-p {
    font-size: 18px;
  }
  .list-type1__td-p {
    font-size: 16px;
    line-height: 27px;
  }
}
/****************************************************/
/* list-type2                                       */
/****************************************************/
.list-type2__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 85px;
       column-gap: 85px;
  font-family: var(--font-mincho);
  row-gap: 100px;
  padding-bottom: 150px;
}

.list-type2__link:hover {
  opacity: 1;
}

.list-type2__thumbnail {
  padding-bottom: 20px;
}

.list-type2__thumbnail img {
  filter: grayscale(100%);
  transition: all 0.5s ease;
}

.list-type2__thumbnail img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.list-type2__name {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  padding-bottom: 10px;
}

.list-type2__name-ja {
  font-weight: var(--font-weight__bold);
  font-size: 34px;
  letter-spacing: 0.05em;
}

.list-type2__name-en {
  padding-left: 1em;
}

.list-type2__name-en-p {
  font-size: 17px;
  letter-spacing: 0.1em;
}

.list-type2__profile {
  display: flex;
}

.list-type2__profile-p {
  display: block;
  position: relative;
  padding-right: 28px;
  font-size: 16px;
  letter-spacing: 0.05em;
  padding-bottom: 20px;
}

.list-type2__profile-p::before {
  content: "";
  position: absolute;
  display: block;
  width: 24.5px;
  height: 1px;
  background-color: var(--black);
  right: 0;
  top: 9px;
}

.list-type2__profile-p::after {
  content: "";
  position: absolute;
  display: block;
  width: 8.8px;
  height: 1px;
  background-color: var(--black);
  transform: rotate(36deg);
  right: 0;
  top: 6px;
}

.list-type2__excerpt {
  font-size: 16px;
  line-height: 1.75;
}

@media (max-width: 1024px) {
  .list-type2__list {
    margin: 0 -25px;
    grid-template-columns: 100%;
    row-gap: 50px;
    padding-bottom: 80px;
  }
  .list-type2__name-ja {
    order: 2;
    width: 100%;
    font-size: 29px;
    padding-top: 6px;
  }
  .list-type2__name {
    flex-wrap: wrap;
    padding-bottom: 30px;
  }
  .list-type2__name-en {
    padding: 0;
  }
  .list-type2__name-en-p {
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 0.1em;
  }
  .list-type2__box {
    padding: 0 25px;
  }
}
/****************************************************/
/* list-type3                                       */
/****************************************************/
.list-type3__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 55px;
  padding-bottom: 95px;
}

.list-type3__photo {
  padding-bottom: 20px;
}

.list-type3__name {
  font-size: 28px;
  line-height: 26px;
  font-weight: var(--font-weight__medium);
}

.list-type3__list {
  grid-template-columns: repeat(3, 1fr);
}

.list-type3__price-p {
  font-size: 20px;
  line-height: 26px;
}

@media (max-width: 1024px) {
  .list-type3__list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .sp-col1 .list-type3__list {
    grid-template-columns: 100%;
  }
}
/****************************************************/
/* form-type1                                       */
/****************************************************/
.form-type1__item {
  padding-bottom: 40px;
}

.form-type1__label {
  display: block;
  font-family: var(--font-mincho);
  font-size: 18px;
  line-height: 1.7222222222;
  font-weight: var(--font-weight__bold);
  letter-spacing: 0.05em;
  color: var(--green);
}

.form-type1__item input {
  width: 100%;
  height: 40px;
  border-radius: 0;
  border: solid 1px var(--black);
  padding: 0 10px;
  font-size: 18px;
}

.form-type1__item textarea {
  width: 100%;
  height: 150px;
  border-radius: 0;
  border: solid 1px var(--black);
  padding: 10px;
  font-size: 18px;
}

.form-type1__submit input {
  width: 180px;
  height: 37px;
  border: solid 1px var(--black);
  background-color: var(--white);
  font-family: var(--font-mincho);
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--green);
  margin: 0 auto;
  display: block;
}

/****************************************************/
/* modal-news                                        */
/****************************************************/
.modal-type1__show {
  overflow: hidden !important;
}

.modal-type1 {
  cursor: pointer;
}

.modal-type1__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
  transition: all 0.3s;
  z-index: -1;
  opacity: 0;
  cursor: pointer;
}

.modal-type1__figure {
  width: 100%;
  max-width: 800px;
}

.modal-type1__close {
  width: 50px;
  height: 50px;
  background: var(--black);
  position: absolute;
  top: calc(var(--height__header) + 20px);
  right: 30px;
}

.modal-type1__close::before,
.modal-type1__close::after {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 4px;
  background-color: var(--white);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.modal-type1__close::before {
  transform: rotate(45deg);
}

.modal-type1__close::after {
  transform: rotate(-45deg);
}

.modal-type1__wrapper.show {
  z-index: var(--zindex__modal);
  opacity: 1;
}

@media (max-width: 1024px) {
  .modal-type1__wrapper {
    padding: 50px 10px;
  }
}
.br-sm {
  display: none;
}
@media (max-width: 600px) {
  .br-sm {
    display: block;
  }
}

.br-md {
  display: none;
}
@media (max-width: 1024px) {
  .br-md {
    display: block;
  }
}

.br-mdn {
  display: block;
}
@media (max-width: 1024px) {
  .br-mdn {
    display: none;
  }
}

.br-lg {
  display: block;
}
@media (max-width: 1024px) {
  .br-lg {
    display: none;
  }
}

.br-ftsm {
  display: none;
}
@media (max-width: 980px) {
  .br-ftsm {
    display: block;
  }
}

/****************************************************/
/* top-mainview                                     */
/****************************************************/
.top-mainview {
  padding-bottom: 100px;
}

.top-mainview__left {
  position: absolute;
  width: 356px;
  height: 100vh;
  min-height: 570px;
}

.top-mainview__right {
  padding-left: 356px;
  min-height: 700px;
  height: 100vh;
  width: 100%;
}

.top-mainview__slide-item {
  height: 100%;
}

.top-mainview__slide {
  height: 100%;
}

.top-mainview__slide-img {
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 700px;
  height: 100vh;
  width: 100%;
}

.top-mainview__logo {
  width: 110px;
  margin: 0 auto;
  padding-bottom: 6px;
}

.top-mainview__copy {
  writing-mode: vertical-rl;
  margin: 0 auto;
  position: relative;
  padding-bottom: 10px;
}

.top-mainview__copy-p {
  font-family: var(--font-mincho);
  font-weight: var(--font-weight__medium);
  font-size: 26px;
}

@media (max-width: 1024px) {
  .top-mainview {
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
  }
  .top-mainview::before {
    content: "";
    display: block;
    position: absolute;
    width: 30rem;
    height: 100%;
    top: 0;
    background-color: var(--gray);
    z-index: -1;
  }
  .top-mainview__left {
    width: 95px;
  }
  .top-mainview__logo {
    width: 50px;
  }
  .top-mainview__copy-p {
    font-size: 16px;
  }
  .top-mainview__right {
    padding-left: 95px;
    min-height: 400px;
    height: calc(100vh - var(--height__header) - 50px);
  }
  .top-mainview__slide-img {
    min-height: 400px;
    height: calc(100vh - var(--height__header) - 50px);
  }
}
/****************************************************/
/* top-overview                                     */
/****************************************************/
.top-overview__item {
  padding-top: 10rem;
  position: relative;
}

.top-overview__item-h2 {
  padding-right: 10rem;
  padding-left: 10rem;
  font-family: var(--font-shippori);
  font-weight: var(--font-weight__bold);
  font-size: max(20px, 3.3rem);
  line-height: 1;
  text-align: right;
  padding-bottom: 6.7rem;
  color: var(--green);
}

.top-overview__item-box {
  width: 100%;
  max-width: 90rem;
  aspect-ratio: 900/400;
  background-color: var(--gray);
  margin-left: auto;
  padding-right: 10rem;
  padding-left: 38rem;
  text-align: right;
  padding-top: 4.8rem;
  padding-bottom: 10rem;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.top-overview__item-figure {
  position: absolute;
  width: 90rem;
  max-width: 90rem;
  aspect-ratio: 900/400;
  left: 0;
  top: 10rem;
}

.top-overview__item-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-overview__item-text {
  width: 100%;
}

.top-overview__item-text-p {
  font-size: max(16px, 1.8rem);
  font-weight: var(--font-weight__medium);
  font-family: var(--font-mincho);
  line-height: 1.7777777778;
}

.top-overview__item-btn {
  margin-top: auto;
}

.top-overview__item-link {
  font-size: max(16px, 1.6rem);
  position: relative;
  padding-right: 2.8rem;
  font-family: var(--font-mincho);
}

.top-overview__item-link::before {
  content: "";
  position: absolute;
  display: block;
  width: 2.45rem;
  height: 0.1rem;
  background-color: var(--black);
  right: 0;
  top: 0.9rem;
}

.top-overview__item-link::after {
  content: "";
  position: absolute;
  display: block;
  width: 0.88rem;
  height: 0.1rem;
  background-color: var(--black);
  transform: rotate(36deg);
  right: 0;
  top: 0.6rem;
}

.top-overview__item-link span::after {
  border-bottom: solid 1px #333;
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  height: 2px;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  width: 100%;
  transform-origin: right top;
  transform: scale(0, 1);
}

.top-overview__item-link:hover span::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

/* 逆順 */
.top-overview__item.reverse .top-overview__item-h2 {
  text-align: left;
}

.top-overview__item.reverse .top-overview__item-figure {
  right: 0;
  left: auto;
}

.top-overview__item.reverse .top-overview__item-box {
  margin-right: auto;
  margin-left: 0;
  text-align: left;
  justify-content: flex-start;
  padding-right: 38rem;
  padding-left: 10rem;
}

@media (max-width: 1024px) {
  .top-overview__item-figure {
    width: 30rem;
    aspect-ratio: 300/250;
    position: unset;
  }
  .top-overview__item {
    padding-top: 5rem;
  }
  .top-overview__item-h2 {
    padding-right: 2rem;
    padding-left: 2rem;
    padding-bottom: 2rem;
    font-size: max(16px, 2.2rem);
  }
  .top-overview__item-box {
    width: calc(100% - 7.5rem);
    margin-top: -16rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 17.2rem;
    padding-bottom: 5rem;
    font-size: 16px;
    text-align: left;
  }
  .top-overview__item.reverse .top-overview__item-box {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .top-overview__item-text {
    padding-bottom: 22px;
  }
  .top-overview__item-text-p {
    font-size: max(16px, 1rem);
  }
  .top-overview__item-link {
    font-size: max(16px, 1rem);
  }
  .top-overview__item.reverse .top-overview__item-figure {
    margin-left: auto;
  }
  .top-overview__item::before {
    content: "";
    width: 30rem;
    display: block;
    position: absolute;
    height: 10rem;
    background-color: var(--gray);
    top: 0;
    z-index: -1;
  }
  .top-overview__item.reverse::before {
    right: 0;
  }
  .top-overview__item:last-child .top-overview__item-box {
    background: unset;
  }
}
/****************************************************/
/* top-products                                     */
/****************************************************/
.top-products {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.top-products__h2 {
  padding-right: 10rem;
  padding-left: 10rem;
  font-family: var(--font-shippori);
  font-weight: var(--font-weight__bold);
  font-size: max(20px, 3.3rem);
  line-height: 1;
  padding-bottom: 1.7rem;
  color: var(--green);
  max-width: 1440px;
  margin: 0 auto;
}

.top-products__link {
  display: block;
  width: 100%;
  aspect-ratio: 550/350;
  position: relative;
}

.top-products__figure {
  width: 100%;
  height: 100%;
}

.top-products__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-products__text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: linear-gradient(90deg, rgb(35, 24, 21) 0%, rgb(35, 24, 21) 54%, rgba(35, 24, 21, 0) 100%);
  padding: 0 10px;
}

.top-products__text-p {
  line-height: 30px;
  font-size: 17px;
  font-family: var(--font-mincho);
  color: var(--white);
}

.top-product__btn {
  text-align: right;
  max-width: 1440px;
  margin: 0 auto;
  font-size: max(16px, 1.6rem);
  padding-right: 2.6rem;
  font-family: var(--font-mincho);
  padding-top: 3rem;
}

.top-product__link {
  padding-right: 2.6rem;
  position: relative;
}

.top-product__link::before {
  content: "";
  position: absolute;
  display: block;
  width: 2.45rem;
  height: 0.1rem;
  background-color: var(--black);
  right: 0;
  top: 0.9rem;
}

.top-product__link::after {
  content: "";
  position: absolute;
  display: block;
  width: 0.88rem;
  height: 0.1rem;
  background-color: var(--black);
  transform: rotate(36deg);
  right: 0;
  top: 0.6rem;
}

.top-product__link span::after {
  border-bottom: solid 1px #333;
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  height: 2px;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  width: 100%;
  transform-origin: right top;
  transform: scale(0, 1);
}

.top-product__link:hover span::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

@media (max-width: 1024px) {
  .top-products__h2 {
    padding-right: 2rem;
    padding-left: 2rem;
    padding-bottom: 2rem;
    font-size: clamp(16px, 2.2rem, 25px);
  }
  .top-product__btn {
    padding-right: 2rem;
  }
  .top-product__link {
    font-size: max(16px, 1rem);
  }
  .top-products {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
/****************************************************/
/* top-blogs                                        */
/****************************************************/
.top-blogs {
  background-color: var(--gray);
  padding-top: 100px;
  padding-bottom: 100px;
}

.top-blogs__h2 {
  font-family: var(--font-shippori);
  font-weight: var(--font-weight__bold);
  font-size: max(20px, 3.3rem);
  line-height: 1;
  padding-bottom: 3.4rem;
  color: var(--green);
  max-width: 1440px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .top-blogs {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  .top-blogs__h2 {
    padding-bottom: 2rem;
    font-size: clamp(16px, 2.2rem, 25px);
  }
  .top-blogs__list {
    grid-template-columns: 100%;
    place-content: center;
  }
  .top-blogs__date {
    font-size: min(16px, 1.2rem);
  }
  .top-blogs__title {
    font-size: min(16px, 1.4rem);
  }
}
/****************************************************/
/* top-news                                         */
/****************************************************/
.top-news {
  padding-top: 100px;
  padding-bottom: 100px;
}

.top-news__h2 {
  font-family: var(--font-shippori);
  font-weight: var(--font-weight__bold);
  font-size: max(20px, 3.3rem);
  line-height: 1;
  padding-bottom: 3.4rem;
  color: var(--green);
  max-width: 1440px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .top-news {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  .top-news__h2 {
    padding-bottom: 2rem;
    font-size: clamp(16px, 2.2rem, 25px);
  }
}
/****************************************************/
/* page-mv                                          */
/****************************************************/
.page-mv {
  width: 100%;
  min-height: 700px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 87px;
  padding-bottom: 55px;
  color: var(--white);
}

.page-mv__title-en {
  padding-bottom: 105px;
}

.page-mv__title-en-p {
  font-family: var(--font-shippori);
  font-size: 50px;
  font-weight: var(--font-weight__bold);
}

.page-mv__title-ja {
  font-family: var(--font-mincho);
  font-size: 20px;
  /* font-weight: var(--font-weight__bold); */
  padding-bottom: 55px;
}

.page-mv__text1 {
  padding-bottom: 35px;
}

.page-mv__text1-p {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.6);
  font-size: 39px;
  font-family: var(--font-mincho);
  line-height: 1.5641025641;
}

.page-mv__text2 {
  padding-bottom: 70px;
}

.page-mv__text2-p {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.6);
  font-family: var(--font-mincho);
  font-size: 18px;
  line-height: 1.7222222222;
}

.page-mv__btn {
  display: flex;
  justify-content: flex-end;
}

.page-mv__link {
  display: block;
  position: relative;
  padding-right: 28px;
  color: var(--white);
}

.page-mv__link::before {
  content: "";
  position: absolute;
  display: block;
  width: 24.5px;
  height: 1px;
  background-color: var(--white);
  right: 0;
  top: 9px;
}

.page-mv__link::after {
  content: "";
  position: absolute;
  display: block;
  width: 8.8px;
  height: 1px;
  background-color: var(--white);
  transform: rotate(36deg);
  right: 0;
  top: 6px;
}

@media (max-width: 1024px) {
  .page-mv {
    padding-top: 5px;
    min-height: 540px;
    padding-bottom: 24px;
  }
  .page-mv__title-en {
    padding-bottom: 40px;
  }
  .page-mv__title-en-p {
    font-size: 30px;
  }
  .page-mv__title-ja {
    font-size: 16px;
    padding-bottom: 8px;
  }
  .page-mv__text1 {
    font-size: 26px;
    padding-bottom: 14px;
    line-height: 35px;
  }
  .page-mv__text1-p {
    font-size: 26px;
  }
  .page-mv__text2 {
    font-size: 16px;
    padding-bottom: 210px;
  }
  .page-mv__text2-p {
    font-size: 16px;
  }
}
/****************************************************/
/* page-content                                     */
/****************************************************/
.page-content {
  padding-top: 200px;
  padding-bottom: 100px;
}

@media (max-width: 1024px) {
  .page-content {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
/****************************************************/
/* template-b                                       */
/****************************************************/
.page-mv__template-b.page-mv {
  min-height: unset;
  color: var(--green);
  padding-top: 150px;
  padding-bottom: 0;
}

.page-mv__template-b .page-mv__title-ja {
  font-size: 33px;
  text-align: center;
  padding-bottom: 0;
}

.page-content__template-b {
  font-family: var(--font-mincho);
  line-height: 1.7222222222;
  padding-top: 80px;
}

.page-content__template-b p {
  font-size: 18px;
  padding-bottom: 31px;
}

.page-content__template-b h3 {
  font-size: 22px;
}

.page-content__template-b ul {
  padding-left: 1em;
  font-size: 18px;
  line-height: 1.7222222222;
  padding-bottom: 31px;
}

.page-content__template-b ul li {
  list-style: disc;
}

@media (max-width: 1024px) {
  .page-mv__template-b.page-mv {
    padding-top: 70px;
  }
  .page-mv__template-b .page-mv__title-ja {
    font-size: 22px;
  }
  .page-content__template-b p {
    font-size: 16px;
    padding-bottom: 25px;
  }
  .page-content__template-b h3 {
    font-size: 20px;
  }
  .page-content__template-b ul {
    font-size: 16px;
    padding-bottom: 25px;
  }
}
/****************************************************/
/* about-firstview                                  */
/****************************************************/
.about-firstview {
  width: 100%;
  min-height: 880px;
  position: relative;
}

.about-firstview__bg {
  position: fixed;
  padding-top: 48.6111111111%;
  width: 100%;
  z-index: -1;
}

.about-firstview__bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-firstview .standard-inner2 {
  display: grid;
  grid-template-columns: 1fr 360px;
  color: var(--white);
}

.about-firstview__title {
  font-family: var(--font-shippori);
  font-size: 50px;
  position: fixed;
  top: 190px;
}

.about-firstview__text1 {
  position: fixed;
  top: 355px;
}

.about-firstview__text1-p {
  font-family: var(--font-mincho);
  font-size: 20px;
}

.about-firstview__text2 {
  padding-left: 95px;
  position: fixed;
  top: 440px;
}

.about-firstview__text2-p {
  font-size: 40px;
  line-height: 1.5;
  font-family: var(--font-mincho);
}

.about-firstview__text3 {
  grid-column: 2/3;
  padding-top: 53.4722222222vw;
}

.about-firstview__text3-p {
  font-size: 18px;
  font-weight: var(--font-weight__medium);
  font-family: var(--font-mincho);
  line-height: 2.4444444444;
}

.about-firstview__btns {
  grid-column: 1/3;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  justify-content: flex-end;
  font-family: var(--font-mincho);
  -moz-column-gap: 40px;
       column-gap: 40px;
}

.about-firstview__btns-link {
  color: var(--white);
  position: relative;
  padding-right: 30px;
  font-size: 16px;
}

.about-firstview__btns-link::before {
  content: "";
  display: block;
  position: absolute;
  width: 25px;
  height: 1px;
  background-color: var(--white);
  right: 0;
  top: 9px;
}

.about-firstview__btns-link::after {
  content: "";
  position: absolute;
  display: block;
  width: 0.88rem;
  height: 0.1rem;
  background-color: var(--white);
  transform: rotate(36deg);
  right: 0;
  top: 6px;
}

@media (max-width: 1024px) {
  .about-firstview__bg {
    padding-top: 144.385026738%;
  }
  .about-firstview .standard-inner2 {
    display: block;
    padding-top: 13px;
  }
  .about-firstview__title {
    font-size: 22px;
    padding-bottom: 45px;
    position: static;
  }
  .about-firstview__text1 {
    padding-top: 0;
    font-size: 11px;
    padding-bottom: 20px;
    position: static;
  }
  .about-firstview__text2 {
    padding-left: 0;
    font-size: 19px;
    padding-bottom: 25px;
    position: static;
  }
  .about-firstview__text3 {
    font-size: 11px;
    line-height: 2;
    padding-top: 0;
  }
  .about-firstview__btns {
    padding-top: 25px;
  }
  .about-firstview__btns-link {
    font-size: 11px;
  }
  .about-firstview {
    min-height: 600px;
  }
}
/****************************************************/
/* about-message                                    */
/****************************************************/
.about-message {
  position: relative;
  padding-top: 200px;
  padding-bottom: 200px;
  background-color: var(--white);
}

.about-message .standard-inner3 {
  display: grid;
  position: relative;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 40px;
       column-gap: 40px;
}

.about-message__text1 {
  font-family: var(--font-mincho);
  font-size: 28px;
  padding-bottom: 60px;
  color: var(--green);
}

.about-message__text2 {
  grid-column: 1/3;
  padding-bottom: 40px;
}

.about-message__text2-p {
  font-size: 40px;
  font-family: var(--font-mincho);
  line-height: 1.5;
}

.about-message__text3-p {
  font-size: 16px;
  line-height: 2.5;
  font-family: var(--font-mincho);
}

.about-message__text4-p {
  font-size: 16px;
  line-height: 2.5;
  font-family: var(--font-mincho);
}

.about-message__sign {
  grid-column: 1/3;
  text-align: right;
  padding-top: 36px;
  font-family: var(--font-mincho);
}

.about-message__sign-company {
  font-size: 13px;
  padding-bottom: 10px;
  padding-right: 4em;
}

.about-message__sign-name {
  font-size: 29px;
}

@media (max-width: 1024px) {
  .about-message {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .about-message__text1 {
    font-size: 16px;
    padding-bottom: 10px;
  }
  .about-message .standard-inner3 {
    display: block;
  }
  .about-message__text2 {
    padding-bottom: 28px;
  }
  .about-message__text2-p {
    font-size: 19px;
  }
  .about-message__text3-p {
    font-size: 16px;
    line-height: 2;
  }
  .about-message__text4-p {
    font-size: 16px;
    line-height: 2;
  }
  .about-message__sign {
    padding-top: 22px;
  }
  .about-message__sign-company {
    font-size: 11px;
    padding-right: 1.2em;
  }
  .about-message__sign-name {
    font-size: 18px;
  }
}
/****************************************************/
/* about-company                                    */
/****************************************************/
.about-company {
  background-color: var(--gray);
  padding-top: 50px;
  padding-bottom: 70px;
  position: relative;
}

.about-company__table {
  width: 100%;
  font-family: var(--font-mincho);
  border-top: solid 1px var(--black);
}

.about-company__table-th {
  width: 390px;
  text-align: left;
  padding: 24px 0px;
  padding-left: 45px;
  font-size: 16px;
  border-bottom: solid 1px var(--black);
}

.about-company__table-td {
  text-align: left;
  padding: 24px 0px;
  font-size: 16px;
  border-bottom: solid 1px var(--black);
  line-height: 1.5;
}

.about-company__text1 {
  font-size: 20px;
  color: var(--green);
  font-family: var(--font-mincho);
  padding-bottom: 60px;
}

@media (max-width: 1024px) {
  .about-company {
    padding-top: 30px;
    padding-bottom: 40px;
  }
  .about-company__text1 {
    font-size: 16px;
    padding-bottom: 10px;
  }
  .about-company__table-th {
    width: 100px;
    padding: 17px 0;
    font-size: 16px;
    line-height: 1.2307692308;
    vertical-align: middle;
  }
  .about-company__table-td {
    font-size: 16px;
    padding: 17px 0;
    line-height: 1.2307692308;
  }
  .about-company__table-map {
    display: block;
  }
}
.page-id-2 .footer {
  position: relative;
}

/****************************************************/
/* page-mv__designers                               */
/****************************************************/
.page-mv__designers.page-mv {
  background-image: url("../img/page-mv__designers.jpg");
}

/****************************************************/
/* designers                                        */
/****************************************************/
.designers__profile-title {
  font-family: var(--font-shippori);
  font-size: 33px;
  font-weight: var(--font-weight__bold);
  color: var(--green);
  padding-bottom: 80px;
}

@media (max-width: 1024px) {
  .designers__profile-title {
    padding-bottom: 35px;
  }
}
/****************************************************/
/* page-mv__news                                    */
/****************************************************/
.page-mv__news.page-mv {
  background-image: url("../img/page-mv__designers.jpg");
  min-height: 500px;
}

@media (max-width: 1024px) {
  .page-mv__news.page-mv {
    min-height: auto;
  }
}
/****************************************************/
/* page-mv__blogs                                   */
/****************************************************/
.page-mv__blogs.page-mv {
  background-image: url("../img/page-mv__designers.jpg");
  color: var(--black);
  min-height: 500px;
}

/****************************************************/
/* single-header                                    */
/****************************************************/
.single-header {
  padding-top: 90px;
  padding-bottom: 65px;
}

.single-header__title {
  font-family: var(--font-shippori);
  font-weight: var(--font-weight__bold);
  font-size: 33px;
  color: var(--green);
}

@media (max-width: 1024px) {
  .single-header {
    padding-top: 45px;
    padding-bottom: 15px;
  }
  .single-header__title {
    font-size: 25px;
  }
}
/****************************************************/
/* single-content                                   */
/****************************************************/
.single-content {
  padding-bottom: 95px;
  font-family: var(--font-mincho);
}

/****************************************************/
/* single-footer                                    */
/****************************************************/
.single-footer {
  padding-bottom: 100px;
}

.single-footer__title {
  font-family: var(--font-shippori);
  font-weight: var(--font-weight__bold);
  color: var(--green);
  font-size: 33px;
  padding-bottom: 40px;
}

@media (max-width: 1024px) {
  .single-footer__title {
    font-size: 25px;
    padding-bottom: 15px;
  }
}
/****************************************************/
/* single-designer                                  */
/****************************************************/
.single-designer {
  display: grid;
  grid-template-columns: 450px 1fr;
  -moz-column-gap: 70px;
       column-gap: 70px;
  font-family: var(--font-mincho);
}

.single-designer__photo img {
  filter: grayscale(100%);
}

.single-designer__name-en {
  font-size: 20px;
  letter-spacing: 0.1em;
  padding-bottom: 11px;
}

.single-designer__name-ja {
  padding-bottom: 28px;
}

.single-designer__name-ja-p {
  font-size: 34px !important;
  font-weight: var(--font-weight__bold);
  letter-spacing: 0.05em;
}

.single-designer__company {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.8333333333;
}

.single-designer__job {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.8333333333;
  padding-bottom: 70px;
}

.single-designer__profile-title {
  font-size: 16px;
  letter-spacing: 0.05em;
  font-weight: var(--font-weight__bold);
  padding-bottom: 15px;
}

.single-designer__profile-text {
  font-size: 18px;
  line-height: 1.7222222222;
}

@media (max-width: 1024px) {
  .single-designer {
    grid-template-columns: 100%;
  }
  .single-designer__photo {
    padding-bottom: 10px;
  }
  .single-designer__name-en {
    font-size: 16px;
  }
  .single-designer__name-ja {
    font-size: 30px;
    padding-bottom: 23px;
  }
  .single-designer__company {
    font-size: 16px;
  }
  .single-designer__job {
    font-size: 16px;
    padding-bottom: 40px;
  }
  .single-designer__profile-title {
    font-size: 16px;
  }
  .single-designer__profile-text {
    font-size: 16px;
  }
}
/*# sourceMappingURL=style.css.map */