@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v5.0.2 | 20191019
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
  display: none;
}

body {
  line-height: 1;
}

menu,
ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

/* 一般的に電話番号や住所が勝手に装飾されるのを防ぐ */
* {
  -webkit-touch-callout: none;
  -webkit-user-select: text;
  -webkit-text-size-adjust: 100%;
}

/* 自動リンクで挿入される要素に対して強制的に装飾を無効にする */
a[href^=tel],
a[href^=mailto],
a[href^=geo],
a[href^=http]:has(span[data-detected=true]) {
  text-decoration: none !important;
  color: inherit !important;
}

* {
  box-sizing: border-box;
  font-family: "Noto Serif JP", serif;
  color: #333333;
}

@media only screen and (min-width: 769px) {
  .pcHide {
    display: none !important;
  }
}

@media only screen and (max-width: 768px) {
  .spHide {
    display: none !important;
  }
}

.fadein {
  opacity: 0;
  transition: opacity 1s ease;
}

.fadein.active {
  opacity: 1;
}

@font-face {
  font-family: "HiraKakuPro";
  src: url("./../fonts/HiraKakuPro-W3-AlphaNum.woff2") format("woff2");
  font-weight: 300; /* または normal（W3） */
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HiraKakuPro";
  src: url("./../fonts/HiraKakuPro-W6-AlphaNum.woff2") format("woff2");
  font-weight: 600; /* または bold（W6） */
  font-style: normal;
  font-display: swap;
}
.fade-in-section {
  opacity: 0;
  transition: opacity 1s ease;
}

.fade-in-section.visible {
  opacity: 1;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9999;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.loader .line {
  height: 1px;
  background-color: black;
  width: 0;
  animation: lineExpand 1s ease-out forwards;
}

/* 線を70%まで伸ばす */
@keyframes lineExpand {
  to {
    width: 100%;
  }
}
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.6s ease;
}

.page-transition.active {
  opacity: 1;
  pointer-events: auto;
}

header .header__inner {
  width: min(1200px, 100vw);
  margin-left: auto;
  margin-right: auto;
  height: 50px;
  display: flex;
  align-items: center;
}
header .header__inner .hamburger {
  display: none;
}
header .header__inner.bottomborder {
  border-bottom: 1px solid #cccccc;
}
@media only screen and (max-width: 768px) {
  header .header__inner {
    width: 88.9679715302vw;
    height: 16.0142348754vw;
    margin-left: auto;
    margin-right: auto;
  }
  header .header__inner .hamburger {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 99999;
    top: 6.4056939502vw;
    right: 5.6939501779vw;
    width: 6.7615658363vw;
    height: 3.1138790036vw;
  }
  header .header__inner .hamburger span {
    height: 1px;
    background: #000000;
    display: block;
    transition: all 0.5s ease;
  }
  header .header__inner .hamburger.active span {
    background: #ffffff;
  }
  header .header__inner .hamburger.active span:first-child {
    transform: rotate(45deg);
    margin-left: 0vw;
    margin-top: 1.2455516014vw;
    width: 6.7615658363vw;
  }
  header .header__inner .hamburger.active span:nth-child(2) {
    transform: rotate(-45deg);
    margin-left: 0vw;
    margin-bottom: 1.2455516014vw;
    width: 6.7615658363vw;
  }
}
header .header__inner--logo {
  width: min(124px, 10.3333333333vw);
}
header .header__inner--logo img {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  header .header__inner--logo {
    width: 35.5871886121vw;
  }
}
header .header__inner--menu {
  margin-left: auto;
}
header .header__inner--menu .sp_menu_logo {
  display: none;
}
header .header__inner--menu ul {
  display: flex;
  gap: min(120px, 10vw);
}
header .header__inner--menu ul li a {
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  color: #333333;
  font-size: min(12px, 1vw);
}
@media only screen and (max-width: 768px) {
  header .header__inner--menu {
    opacity: 0;
    z-index: -1;
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
  }
  header .header__inner--menu .sp_menu_logo {
    display: flex;
    align-items: center;
    height: 16.0142348754vw;
    margin-left: 5.5160142349vw;
  }
  header .header__inner--menu .sp_menu_logo img {
    width: 35.5871886121vw;
  }
  header .header__inner--menu ul {
    flex-direction: column;
    width: 88.9679715302vw;
    margin-left: auto;
    margin-right: auto;
    margin-top: 16.0142348754vw;
  }
  header .header__inner--menu ul li {
    padding: 5.3380782918vw 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  header .header__inner--menu ul li a {
    color: #ffffff;
    font-size: 2.846975089vw;
    transform: translateY(-100%);
  }
  header .header__inner--menu.active {
    opacity: 1;
    z-index: 1;
    background: rgba(0, 0, 0, 0.58);
    z-index: 9999;
  }
  header .header__inner--menu.active ul li {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
  }
}

.firstview .firstview__inner {
  width: min(1300px, 108.3333333333vw);
  margin-left: auto;
  margin-right: auto;
  padding-bottom: min(69px, 5.75vw);
  position: relative;
}
.firstview .firstview__inner--img {
  width: 100%;
}
.firstview .firstview__inner .firstview__inner--img--sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .firstview .firstview__inner {
    width: 88.9679715302vw;
    padding-bottom: 24.1992882562vw;
  }
  .firstview .firstview__inner .firstview__inner--img--pc {
    display: none;
  }
  .firstview .firstview__inner .firstview__inner--img--sp {
    display: block;
    width: 88.9679715302vw;
    margin-left: auto;
    margin-right: auto;
  }
}
.firstview .firstview__inner .view_articles_area {
  position: absolute;
  bottom: min(109px, 9.0833333333vw);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .firstview .firstview__inner .view_articles_area {
    bottom: 13.5231316726vw;
  }
}
.firstview .firstview__inner .view_articles_area .label {
  font-size: min(12px, 1vw);
  font-family: "HiraKakuPro", sans-serif;
  font-weight: 300;
}
@media only screen and (max-width: 768px) {
  .firstview .firstview__inner .view_articles_area .label {
    font-size: 2.4911032028vw;
  }
}
.firstview .firstview__inner .view_articles_area .icon {
  width: min(8.7307px, 0.7275583333vw);
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 768px) {
  .firstview .firstview__inner .view_articles_area .icon {
    width: 1.5535053381vw;
  }
}
.firstview .firstview__inner .view_articles_area .icon img {
  width: 100%;
}

.about .common__section {
  padding-top: min(80px, 6.6666666667vw);
  padding-bottom: min(144px, 12vw);
}
@media only screen and (max-width: 768px) {
  .about .common__section {
    padding-top: 13.1672597865vw;
    padding-bottom: 17.2597864769vw;
  }
}
.about .common__section--left {
  font-size: min(14px, 1.1666666667vw);
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}
@media only screen and (max-width: 768px) {
  .about .common__section--left {
    font-size: 2.846975089vw;
  }
}
.about .common__section--left span {
  font-weight: 400;
}
.about .common__section--right .en {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: min(12px, 1vw);
  line-height: min(30px, 2.5vw);
  color: #333333;
}
@media only screen and (max-width: 768px) {
  .about .common__section--right .en {
    font-size: 2.846975089vw;
    line-height: 4.8042704626vw;
    padding-top: 26.6903914591vw;
    width: 88.9679715302vw;
  }
}
.about .common__section--right .ja {
  margin-top: min(40px, 3.3333333333vw);
  font-size: min(11px, 0.9166666667vw);
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: min(30px, 2.5vw);
  color: #333333;
}
@media only screen and (max-width: 768px) {
  .about .common__section--right .ja {
    font-size: 2.846975089vw;
    line-height: 4.8042704626vw;
    padding-top: 0vw;
    width: 88.9679715302vw;
  }
}
.about .common__section--right .link a {
  color: #333333;
  font-size: min(11px, 0.9166666667vw);
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  margin-top: min(25px, 2.0833333333vw);
  text-underline-offset: min(2px, 0.1666666667vw);
}
@media only screen and (max-width: 768px) {
  .about .common__section--right .link a {
    font-size: 2.4911032028vw;
    line-height: 4.2704626335vw;
    padding-top: 0vw;
    width: 88.9679715302vw;
  }
}

.top_collencions_pc_img {
  width: min(1370px, 114.1666666667vw);
  margin-left: auto;
  margin-right: auto;
  padding-top: min(47px, 3.9166666667vw);
  padding-bottom: min(62px, 5.1666666667vw);
  position: relative;
}
.top_collencions_pc_img img {
  width: 100%;
}
.top_collencions_pc_img .top_collencions_sp_img--sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .top_collencions_pc_img {
    padding-top: 4.9822064057vw;
    padding-bottom: 7.1174377224vw;
    width: 88.9679715302vw;
  }
  .top_collencions_pc_img .top_collencions_pc_img--pc {
    display: none;
  }
  .top_collencions_pc_img .top_collencions_sp_img--sp {
    display: block;
  }
}
.top_collencions_pc_img--clickarea {
  position: absolute;
  text-align: center;
  bottom: min(208px, 17.3333333333vw);
  left: 50%;
  transform: translateX(-50%);
  font-size: min(11px, 0.9166666667vw);
  font-family: "Roboto", sans-serif;
  color: #ffffff;
  z-index: 100;
}
@media only screen and (max-width: 768px) {
  .top_collencions_pc_img--clickarea {
    font-size: 2.846975089vw;
  }
}
.top_collencions_pc_img--clickarea--label {
  color: #ffffff;
}
.top_collencions_pc_img--clickarea a {
  font-size: min(11px, 0.9166666667vw);
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  padding-top: min(24px, 2vw);
  display: block;
  color: #ffffff;
}
@media only screen and (max-width: 768px) {
  .top_collencions_pc_img--clickarea a {
    padding-top: 4.2704626335vw;
    font-size: 2.846975089vw;
  }
}
.top_collencions_pc_img .top_collencions_pc_img--imgwrap {
  position: relative;
}
.top_collencions_pc_img .top_collencions_pc_img--imgwrap .top_collencions_pc_img--mask {
  background-color: rgba(0, 0, 0, 0.32);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
}

.collencions .common__section {
  padding-bottom: min(86px, 7.1666666667vw);
}
@media only screen and (max-width: 768px) {
  .collencions .common__section {
    padding-bottom: 38.256227758vw;
  }
}
.collencions .common__section--left {
  font-size: min(14px, 1.1666666667vw);
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  padding-top: min(31px, 2.5833333333vw);
}
@media only screen and (max-width: 768px) {
  .collencions .common__section--left {
    font-size: 2.846975089vw;
    padding-top: 12.9893238434vw;
  }
}
.collencions .common__section--left span {
  font-weight: 400;
}
.collencions .common__section--left--img {
  width: min(204px, 17vw);
  margin-top: min(23px, 1.9166666667vw);
}
@media only screen and (max-width: 768px) {
  .collencions .common__section--left--img {
    padding-top: 23.1316725979vw;
    width: 53.3807829181vw;
  }
}
.collencions .common__section--left--img img {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .collencions .common__section--right ul {
    width: 88.9679715302vw;
  }
}
.collencions .common__section--right ul li {
  display: flex;
  justify-content: space-between;
  padding-top: min(31px, 2.5833333333vw);
  padding-bottom: min(36px, 3vw);
  position: relative;
  font-size: min(12px, 1vw);
  font-family: "Roboto", sans-serif;
}
.collencions .common__section--right ul li a {
  color: #333333;
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  .collencions .common__section--right ul li {
    padding-top: 7.8291814947vw;
    padding-bottom: 8.3629893238vw;
    font-size: 2.846975089vw;
  }
}
.collencions .common__section--right ul li::after {
  position: absolute;
  content: "";
  width: min(625.5px, 52.125vw);
  height: min(1px, 0.0833333333vw);
  background: #cccccc;
  right: 0;
  bottom: 0;
}
@media only screen and (max-width: 768px) {
  .collencions .common__section--right ul li::after {
    width: 88.9679715302vw;
  }
}
.collencions .common__section--right .all_collection_link {
  margin-left: auto;
  font-size: min(12px, 1vw);
}
@media only screen and (max-width: 768px) {
  .collencions .common__section--right .all_collection_link {
    width: 88.9679715302vw;
    font-size: 2.846975089vw;
  }
}
.collencions .common__section--right .all_collection_link a {
  display: flex;
  margin-left: auto;
  text-decoration: none;
  color: #333333;
  gap: min(8px, 0.6666666667vw);
  margin-top: min(25px, 2.0833333333vw);
  font-family: "Roboto", sans-serif;
  align-items: end;
}
@media only screen and (max-width: 768px) {
  .collencions .common__section--right .all_collection_link a {
    margin-top: 4.6263345196vw;
    gap: 2.846975089vw;
  }
}
.collencions .common__section--right .all_collection_link a p {
  margin-left: auto;
}
.collencions .common__section--right .all_collection_link a img {
  display: block;
  width: min(83px, 6.9166666667vw);
}
@media only screen and (max-width: 768px) {
  .collencions .common__section--right .all_collection_link a img {
    width: 14.768683274vw;
  }
}

.form .common__section {
  padding-top: min(40px, 3.3333333333vw);
  padding-bottom: min(72px, 6vw);
}
@media only screen and (max-width: 768px) {
  .form .common__section {
    padding-top: 13.1672597865vw;
    padding-bottom: 25.6227758007vw;
  }
}
.form .common__section--left {
  font-size: min(14px, 1.1666666667vw);
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}
@media only screen and (max-width: 768px) {
  .form .common__section--left {
    font-size: 2.846975089vw;
  }
}
.form .common__section--left span {
  font-weight: 400;
}
.form .common__section--right {
  font-weight: 500;
  font-family: "yu-gothic-pr6n", sans-serif;
}
@media only screen and (max-width: 768px) {
  .form .common__section--right {
    width: 88.9679715302vw;
    margin-top: 16.3701067616vw;
  }
}
.form .common__section--right .box {
  margin-bottom: min(24px, 2vw);
}
@media only screen and (max-width: 768px) {
  .form .common__section--right .box {
    margin-bottom: 4.4483985765vw;
  }
}
.form .common__section--right .box .label {
  color: #333333;
  font-size: min(11px, 0.9166666667vw);
  margin-bottom: min(7px, 0.5833333333vw);
}
.form .common__section--right .box .label .required {
  position: relative;
}
.form .common__section--right .box .label .required::after {
  content: "*";
  position: absolute;
  font-size: min(8px, 0.6666666667vw);
  top: min(2px, 0.1666666667vw);
  right: max(-4px, -0.3333333333vw);
}
@media only screen and (max-width: 768px) {
  .form .common__section--right .box .label .required::after {
    font-size: 1.7793594306vw;
    top: 0.3558718861vw;
    right: -0.7117437722vw;
  }
}
@media only screen and (max-width: 768px) {
  .form .common__section--right .box .label {
    font-size: 2.846975089vw;
    margin-bottom: 2.6690391459vw;
  }
}
.form .common__section--right .box .input input,
.form .common__section--right .box .input textarea {
  width: 100%;
  padding: min(10px, 0.8333333333vw);
  font-size: min(11px, 0.9166666667vw);
}
.form .common__section--right .box .input input::placeholder,
.form .common__section--right .box .input textarea::placeholder {
  color: #dddddd;
}
.form .common__section--right .box .input textarea {
  height: min(229px, 19.0833333333vw);
}
.form .common__section--right .box .input input[type=submit] {
  background: #4d4d4d;
  color: #c5c5c5;
  border: #4d4d4d;
  border: 2px solid #4d4d4d;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .form .common__section--right .box .input input,
  .form .common__section--right .box .input textarea {
    padding: 1.7793594306vw;
    font-size: 2.846975089vw;
  }
  .form .common__section--right .box .input textarea {
    height: 64.4128113879vw;
  }
}
.form .common__section--right #thank-you-message {
  color: #333333;
  font-size: min(11px, 0.9166666667vw);
  line-height: min(39px, 3.25vw);
}
@media only screen and (max-width: 768px) {
  .form .common__section--right #thank-you-message {
    font-size: 2.846975089vw;
    line-height: 6.9395017794vw;
    text-align: center;
  }
}

.company_first_view {
  width: 100vw;
}
.company_first_view img {
  width: 100%;
}
.company_first_view .company_top_sp {
  display: none;
}
.company_first_view .company_top {
  display: block;
}

@media only screen and (max-width: 768px) {
  .company_first_view {
    height: 56.2277580071vw;
    width: 100vw;
  }
  .company_first_view img {
    height: 100%;
  }
  .company_first_view .company_top_sp {
    display: block;
  }
  .company_first_view .company_top {
    display: none;
  }
}
.company .common__section {
  padding-top: min(35px, 2.9166666667vw);
  padding-bottom: min(72px, 6vw);
}
@media only screen and (max-width: 768px) {
  .company .common__section {
    padding-top: 13.1672597865vw;
  }
}
.company .common__section--left {
  font-size: min(14px, 1.1666666667vw);
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  line-height: min(39px, 3.25vw);
}
@media only screen and (max-width: 768px) {
  .company .common__section--left {
    font-size: 2.846975089vw;
  }
}
.company .common__section--left span {
  font-weight: 400;
}
.company .common__section--right {
  font-size: min(11px, 0.9166666667vw);
  line-height: min(39px, 3.25vw);
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .company .common__section--right {
    margin-top: 26.512455516vw;
    margin-bottom: 21.3523131673vw;
    font-size: 2.846975089vw;
    line-height: 3.7366548043vw;
    width: 88.9679715302vw;
  }
  .company .common__section--right .company_page_space {
    height: 1.7793594306vw;
  }
}

.aboutpage_first_view {
  width: 100vw;
}
.aboutpage_first_view img {
  width: 100%;
}
.aboutpage_first_view .about_top_sp {
  display: none;
}
.aboutpage_first_view .about_top {
  display: block;
}

@media only screen and (max-width: 768px) {
  .aboutpage_first_view {
    height: 56.2277580071vw;
    width: 100vw;
  }
  .aboutpage_first_view img {
    height: 100%;
  }
  .aboutpage_first_view .about_top_sp {
    display: block;
  }
  .aboutpage_first_view .about_top {
    display: none;
  }
}
.aboutpage .common__section {
  padding-top: min(70px, 5.8333333333vw);
  padding-bottom: min(144px, 12vw);
}
@media only screen and (max-width: 768px) {
  .aboutpage .common__section {
    padding-top: 13.1672597865vw;
    width: 90.7473309609vw;
  }
}
.aboutpage .common__section--left {
  font-size: min(14px, 1.1666666667vw);
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  line-height: min(30px, 2.5vw);
}
@media only screen and (max-width: 768px) {
  .aboutpage .common__section--left {
    font-size: 2.846975089vw;
  }
}
.aboutpage .common__section--left span {
  font-weight: 400;
}
.aboutpage .common__section--right .en {
  font-size: min(12px, 1vw);
  line-height: min(30px, 2.5vw);
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}
@media only screen and (max-width: 768px) {
  .aboutpage .common__section--right .en {
    font-size: 2.846975089vw;
    line-height: 4.8042704626vw;
    margin-top: 26.6903914591vw;
  }
}
.aboutpage .common__section--right .ja {
  font-size: min(11px, 0.9166666667vw);
  line-height: min(39px, 3.25vw);
  margin-top: min(45px, 3.75vw);
  font-weight: 500;
  font-family: "yu-gothic-pr6n", sans-serif;
}
@media only screen and (max-width: 768px) {
  .aboutpage .common__section--right .ja {
    margin-top: 3.7366548043vw;
    margin-bottom: 21.3523131673vw;
    font-size: 2.846975089vw;
    line-height: 3.7366548043vw;
  }
}
@media only screen and (max-width: 768px) {
  .aboutpage .common__section--right {
    width: 100%;
  }
}

.collections .common__section {
  padding-top: min(40px, 3.3333333333vw);
  padding-bottom: min(72px, 6vw);
}
@media only screen and (max-width: 768px) {
  .collections .common__section {
    padding-top: 8.3629893238vw;
  }
}
.collections .common__section.listpage {
  padding-bottom: 0;
}
.collections .common__section.listpagebottom {
  margin-bottom: min(68px, 5.6666666667vw);
}
.collections .common__section--left {
  font-size: min(14px, 1.1666666667vw);
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  width: min(210px, 17.5vw);
}
.collections .common__section--left span {
  font-weight: 400;
}
.collections .common__section--left .subtitle {
  font-size: min(12px, 1vw);
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .collections .common__section--left .subtitle {
    font-size: 2.1352313167vw;
  }
}
.collections .common__section--left .subtitle a {
  color: #333333;
  text-decoration: none;
}
.collections .common__section--left .subtitlelink {
  font-size: min(11px, 0.9166666667vw);
  margin-top: min(10px, 0.8333333333vw);
  font-weight: 400;
  font-family: "Roboto", sans-serif;
}
.collections .common__section--left .subtitlelink a {
  color: #333333;
  text-decoration: none;
  display: block;
  width: min(80px, 6.6666666667vw);
  padding-bottom: min(2px, 0.1666666667vw);
  border-bottom: min(1px, 0.0833333333vw) solid #333333;
}
@media only screen and (max-width: 768px) {
  .collections .common__section--left .subtitlelink {
    font-size: 2.1352313167vw;
    margin-top: 1.7793594306vw;
  }
  .collections .common__section--left .subtitlelink a {
    width: min(200px, 16.6666666667vw);
  }
}
@media only screen and (max-width: 768px) {
  .collections .common__section--left {
    font-size: 2.846975089vw;
    width: 88.9679715302vw;
  }
}
.collections .common__section--center {
  width: min(974px, 81.1666666667vw);
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: min(68px, 5.6666666667vw);
}
.collections .common__section--center img {
  width: min(451px, 37.5833333333vw);
  display: block;
}
@media only screen and (max-width: 768px) {
  .collections .common__section--center {
    width: 88.9679715302vw;
    margin-top: 16.0142348754vw;
    margin-bottom: 14.0569395018vw;
    gap: 14.0569395018vw;
  }
  .collections .common__section--center img {
    width: 88.9679715302vw;
  }
}
.collections .common__section--center--list {
  width: min(974px, 81.1666666667vw);
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: min(68px, 5.6666666667vw);
}
.collections .common__section--center--list img {
  width: min(451px, 37.5833333333vw);
  display: block;
}
@media only screen and (max-width: 768px) {
  .collections .common__section--center--list {
    width: 88.9679715302vw;
    margin-top: min(26px, 2.1666666667vw);
    margin-bottom: 6.7615658363vw;
    gap: 14.0569395018vw;
  }
  .collections .common__section--center--list img {
    width: 88.9679715302vw;
  }
}
@media only screen and (max-width: 768px) {
  .collections .common__section .subtitlelink {
    margin-bottom: 14.0569395018vw;
    margin-left: auto;
    font-size: 2.4911032028vw;
  }
  .collections .common__section .subtitlelink a {
    font-family: "Roboto", sans-serif;
    color: #000000;
  }
}

footer .footer__inner {
  padding-bottom: min(12px, 1vw);
  display: flex;
  justify-content: space-between;
  width: min(1200px, 100vw);
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 768px) {
  footer .footer__inner {
    width: 88.9679715302vw;
    flex-direction: column;
  }
}
footer .footer__inner--menu ul {
  display: flex;
}
@media only screen and (max-width: 768px) {
  footer .footer__inner--menu ul {
    justify-content: space-between;
  }
}
footer .footer__inner--menu ul li:not(:first-child)::before {
  content: "　/　";
  font-size: min(11px, 0.9166666667vw);
  color: #333333;
}
@media only screen and (max-width: 768px) {
  footer .footer__inner--menu ul li:not(:first-child)::before {
    display: none;
  }
}
footer .footer__inner--menu ul li a {
  text-decoration: none;
  color: #333333;
  font-size: min(11px, 0.9166666667vw);
  font-family: "Roboto", sans-serif;
}
@media only screen and (max-width: 768px) {
  footer .footer__inner--menu ul li a {
    font-size: 2.4911032028vw;
  }
}
footer .footer__inner--copyright {
  color: #333333;
  font-size: min(11px, 0.9166666667vw);
  font-family: "Roboto", sans-serif;
}
@media only screen and (max-width: 768px) {
  footer .footer__inner--copyright {
    font-size: 2.1352313167vw;
    padding-top: 3.2028469751vw;
    margin-top: 1.2455516014vw;
    text-align: center;
    border-top: 1px solid #cccccc;
  }
}

@media only screen and (max-width: 768px) {
  .common__separate__line.footer {
    display: none;
  }
}
body {
  padding-bottom: min(18px, 1.5vw);
  width: 100vw;
}

.common__section {
  display: flex;
  width: min(1200px, 100vw);
  margin-left: auto;
  margin-right: auto;
}
.common__section--left {
  width: 50%;
}
.common__section--right {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .common__section {
    flex-direction: column;
    width: 88.9679715302vw;
  }
}

.common__separate__line {
  width: min(1200px, 100vw);
  height: 0.5px;
  background: #cccccc;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 768px) {
  .common__separate__line {
    width: 88.9679715302vw;
  }
}
.common__separate__line--long {
  width: min(1300px, 108.3333333333vw);
}
@media only screen and (max-width: 768px) {
  .common__separate__line--long {
    width: 88.9679715302vw;
  }
}

.link__cover {
  position: relative;
}
.link__cover a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
}

/*# sourceMappingURL=style.css.map */
