@charset "UTF-8";
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
@import url("https://fonts.googleapis.com/css2?family=Besley:wght@400&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: #0c0e0f;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #0c0e0f;
  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;
}

.besley {
  font-family: "Besley", serif;
}

header {
  height: 80px;
  background-color: #fff;
  position: relative;
}
header .header_logo {
  padding: 30px 0 0 30px;
  position: fixed;
  z-index: 11;
  transition-property: filter;
  transition-duration: 0.3s;
}
header .header_logo img {
  width: 40px;
}

.globalNav {
  padding-top: 160px;
  padding-left: 145px;
  width: calc(100vw - 165px);
}
.globalNav_wrapper {
  background-color: #63706d;
  width: 0%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  overflow: hidden;
  transition-property: width;
  transition-duration: 0.5s;
}
.globalNav a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.14em;
  padding: 14px 0;
  transition-property: color;
  transition-duration: 0.3s;
}
.globalNav a:hover {
  color: #999;
}
.globalNav a::after {
  content: " /";
}

.snsNav {
  padding-left: 145px;
  padding-top: 90px;
}
.snsNav ul {
  display: flex;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.snsNav a {
  display: block;
  width: 20px;
}
@media screen and (max-width: 750px) {
  header {
    height: 14vw;
  }
  header .header_logo {
    width: 7vw;
    height: 7vw;
    padding: 3.7vw 0 0 3.7vw;
  }
  header .header_logo img {
    width: 100%;
  }
  .globalNav {
    padding-top: 25vw;
    padding-left: 9vw;
  }
  .globalNav a {
    padding: 3vw 0;
  }
  .snsNav {
    padding-top: 10vw;
    padding-left: 9vw;
    width: 80vw;
  }
  .snsNav ul {
    justify-content: center;
    -moz-column-gap: 9vw;
         column-gap: 9vw;
  }
  .snsNav a {
    width: 7.7vw;
  }
}
/* -----------------------------------------------------------------------------
モバイルメニュー
----------------------------------------------------------------------------- */
.button_spmenu {
  display: block;
  width: 42px;
  height: 42px;
  position: fixed;
  top: 25px;
  right: 25px;
  z-index: 11;
  cursor: pointer;
}

.icon-animation {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  transition-property: filter;
  transition-duration: 0.3s;
}
.icon-animation span {
  width: 34px;
  height: 2px;
  display: block;
  background: #515365;
  position: absolute;
  left: 50%;
  top: calc(50% - 1px);
  margin-left: -17px;
  transition: all 0.3s;
}
.icon-animation .top {
  transform: translateY(-13px) scale(1);
}
.icon-animation .middle {
  background: none;
  position: relative;
}
.icon-animation .middle:before, .icon-animation .middle:after {
  transition: all 0.3s;
  content: "";
  width: 34px;
  height: 2px;
  background: #515365;
  display: block;
  transform: rotate(0deg);
  position: absolute;
}
.icon-animation .bottom {
  transform: translateY(13px) scale(1);
}

@media screen and (max-width: 750px) {
  .button_spmenu {
    width: 7vw;
    height: 7vw;
    top: 3.7vw;
    right: 3.7vw;
  }
  .icon-animation span {
    width: 7vw;
    margin-left: -3.5vw;
  }
  .icon-animation .top {
    transform: translateY(-1.75vw) scale(1);
  }
  .icon-animation .middle:before, .icon-animation .middle:after {
    width: 7vw;
  }
  .icon-animation .bottom {
    transform: translateY(1.75vw) scale(1);
  }
}
/* -----------------------------------------------------------------------------
BODYの状態
----------------------------------------------------------------------------- */
body.is_spmenu .icon-animation {
  filter: brightness(0) invert(1);
}
body.is_spmenu .icon-animation .top {
  transform: translateY(0px) scale(0);
}
body.is_spmenu .icon-animation .bottom {
  transform: translateY(0px) scale(0);
}
body.is_spmenu .icon-animation .middle:before {
  transform: rotate(45deg) scaleX(1.001);
}
body.is_spmenu .icon-animation .middle:after {
  transform: rotate(-45deg) scaleX(1.001);
}
body.is_spmenu .header_logo {
  filter: brightness(0) invert(1);
}
body.is_spmenu .globalNav {
  width: calc(100vw - 165px);
}
body.is_spmenu .globalNav_wrapper {
  width: 100%;
}

/* -----------------------------------------------------------------------------
フッタ
----------------------------------------------------------------------------- */
footer {
  background-color: #63706d;
  color: #fff;
}
footer > .inner {
  padding-top: 100px;
  padding-bottom: 115px;
  width: 85%;
  max-width: 1020px;
  margin: auto;
}
footer a {
  color: #fff;
}

.footer_logo {
  width: 100px;
  margin: 0 auto 15px auto;
}

.footer_content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer_right {
  text-align: right;
}
.footer_right .copy {
  font-size: 0.75rem;
  letter-spacing: 0.03em;
}

.company_data dt {
  font-size: 0.75rem;
}
.company_data small {
  font-size: 0.75rem;
}

.company_data + .company_data, .company_data + .company_datas,
.company_datas + .company_data,
.company_datas + .company_datas {
  margin-top: 16px;
}

.company_datas .company_data + .company_data {
  margin-top: 0;
}

@media screen and (min-width: 751px) {
  .company_datas {
    display: flex;
    gap: 16px;
  }
}
.company_address dd:not(.company_name) {
  font-size: 0.75rem;
}

.company_name {
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}

.company_mail dd img {
  height: 17px;
  width: auto;
  margin-top: -0.3em;
}

.takasago_logo {
  width: 146px;
  margin: 0 0 25px auto;
}

@media screen and (max-width: 750px) {
  footer > .inner {
    padding-top: 23vw;
    padding-bottom: 23vw;
    width: 85%;
    margin: auto;
  }
  .footer_logo {
    width: 12vw;
    margin-bottom: 10vw;
  }
  .footer_content {
    flex-direction: column;
    align-items: center;
  }
  .footer_right {
    margin-top: 10vw;
    text-align: center;
  }
  .footer_right .copy {
    font-size: 0.8rem;
  }
  .company_data {
    text-align: center;
  }
  .company_data dt {
    font-size: 0.8rem;
  }
  .company_data dd {
    font-size: 1rem;
  }
  .company_data small {
    font-size: 0.8rem;
    display: block;
  }
  .company_data + .company_data {
    margin-top: 10vw;
  }
  .company_address dd {
    font-size: 0.8rem;
  }
  .company_name {
    font-size: 1rem;
  }
  .company_tel dd {
    font-size: 1.2rem;
  }
  .company_mail dd img {
    height: 1rem;
  }
  .takasago_logo {
    width: 17.5vw;
    margin: 0 auto 6vw auto;
  }
}
/* -----------------------------------------------------------------------------
共通
----------------------------------------------------------------------------- */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  letter-spacing: 0.14em;
  line-height: 1.875;
  font-family: "Times New Roman", "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
  -webkit-font-smoothing: antialiased;
  background-color: #fff;
  color: #63706d;
}

.sans {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

a {
  color: #63706d;
}

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

section {
  padding-top: 130px;
}

.section_title {
  font-family: "Besley", serif;
  font-size: 24px;
  font-weight: 600;
  color: #63706d;
  letter-spacing: 0.166em;
  margin-bottom: 10px;
}

.button_center {
  text-align: center;
}

.button_arrow .button_inner {
  border: solid 1px #63706d;
  color: #63706d;
  display: inline-block;
  font-size: 0.8125rem;
  line-height: 1;
  min-width: 280px;
  padding: 1em 0;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition-property: background color;
  transition-duration: 0.3s;
}
.button_arrow .button_inner::after {
  content: "";
  width: 6px;
  height: 12px;
  background: url(../images/common/arrow.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% - 6px);
  right: 16px;
  transition-property: filter transform;
  transition-duration: 0.3s;
}
.button_arrow .button_inner:hover {
  background-color: #63706d;
  color: #fff;
}
.button_arrow .button_inner:hover::after {
  filter: brightness(0) invert(1);
  transform: translateX(5px);
}

@media screen and (max-width: 750px) {
  html {
    font-size: 3.5vw;
  }
  section {
    padding-top: 33vw;
  }
  .section_title {
    font-size: 1.2rem;
    margin-bottom: 8vw;
  }
  .button_arrow .button_inner {
    min-width: 65%;
  }
  .button_arrow .button_inner::after {
    content: "";
    width: 1.25vw;
    height: 2.5vw;
    top: calc(50% - 1.25vw);
    right: 1rem;
  }
}
@media screen and (min-width: 751px) {
  .disp_sp {
    display: none !important;
  }
}
@media screen and (max-width: 750px) {
  .disp_pc {
    display: none !important;
  }
}
/* -----------------------------------------------------------------------------
アニメ
----------------------------------------------------------------------------- */
.scrollanim {
  opacity: 0;
  transition-property: opacity transform;
  transition-duration: 1s;
}

.scrollanim.scrollanim_slidein {
  transform: translateY(20px);
}

.scrollanim.scrollanim_fired {
  opacity: 1;
  transform: translateY(0px);
}

/* -----------------------------------------------------------------------------
メインビジュアル
----------------------------------------------------------------------------- */
.index header {
  position: absolute;
  top: 0;
  left: 0;
}

.mainvisual {
  background-color: #000;
  position: relative;
}
.mainvisual .swiper-container {
  position: relative;
}
.mainvisual .swiper-slide {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}
.mainvisual .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mainvisual .mainvisual_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.mainvisual .swiper-pagination-bullets {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  left: auto;
  right: 30px;
  width: auto;
}
.mainvisual .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.75);
  border: solid 1px rgba(255, 255, 255, 0.75);
  display: block;
}
.mainvisual .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-top: 15px;
}
.mainvisual .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: transparent;
  border: solid 1px rgba(255, 255, 255, 0.75);
}

.mainvisual_scroll {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  z-index: 9;
}
.mainvisual_scroll a {
  color: #fff;
  text-decoration: none;
  transition-property: filter;
  transition-duration: 0.3s;
}
.mainvisual_scroll span {
  display: inline-block;
  position: relative;
  padding-bottom: 20px;
}
.mainvisual_scroll span::after {
  content: "";
  display: block;
  width: 6px;
  height: 11px;
  background: url(../images/common/arrow.svg) center center no-repeat;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  filter: brightness(0) invert(1);
  transition-property: transform;
  transition-duration: 0.3s;
}
.mainvisual_scroll:hover {
  filter: brightness(0.6);
}
.mainvisual_scroll:hover span::after {
  transform: translateX(-50%) translateY(5px) rotate(90deg);
}

.button_cart {
  position: fixed;
  left: 36px;
  bottom: 36px;
  writing-mode: vertical-rl;
  z-index: 9;
  mix-blend-mode: difference;
  padding-bottom: 25px;
}
.button_cart a {
  color: #fff;
  text-decoration: none;
  display: block;
  transition-property: color;
  transition-duration: 0.3s;
}
.button_cart a::after {
  width: 21px;
  height: 19px;
  content: "";
  background: url(../images/common/icon_cart.svg) center center no-repeat;
  position: absolute;
  bottom: 0;
  left: calc(50% - 13px);
  mix-blend-mode: difference;
}
.button_cart a:hover {
  color: #666;
}

@media screen and (max-width: 750px) {
  .mainvisual .mainvisual_logo {
    top: 58vw;
    width: 27vw;
  }
  .mainvisual .swiper-pagination-bullets {
    left: 4.5vw;
    right: auto;
  }
  .mainvisual .swiper-pagination-bullet + .swiper-pagination-bullet {
    margin-top: 2.333vw;
  }
  .mainvisual + section {
    padding-top: 0;
  }
  .button_cart {
    display: none;
  }
}
/* -----------------------------------------------------------------------------
NEWS
----------------------------------------------------------------------------- */
.index .sectionNews {
  padding-bottom: 90px;
}
@media screen and (max-width: 750px) {
  .index .sectionNews {
    padding-bottom: 5rem;
  }
}

/* -----------------------------------------------------------------------------
2カラムセクション
----------------------------------------------------------------------------- */
.section_two_columns {
  display: flex;
  -moz-column-gap: 4%;
       column-gap: 4%;
}
.section_two_columns.is_image_left {
  flex-direction: row-reverse;
}
.section_two_columns.is_image_left .two_columns_header,
.section_two_columns.is_image_left .two_columns_body {
  padding-left: 0;
  padding-right: 80px;
}
.section_two_columns .section_catch {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.two_columns_content {
  flex-basis: 48%;
  max-width: 670px;
}

.two_columns_header,
.two_columns_body {
  padding-left: 80px;
}

.two_columns_image {
  background-color: #000;
  flex-grow: 1;
  flex-basis: 48%;
  position: relative;
  overflow: hidden;
}
.two_columns_image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: initial;
}

@media screen and (min-width: 1280px) {
  .two_columns_image {
    min-height: 31.25vw;
  }
}
@media screen and (max-width: 750px) {
  .section_two_columns {
    flex-direction: column-reverse;
  }
  .section_two_columns .two_columns_header,
  .section_two_columns .two_columns_body {
    padding-left: 0;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
  }
  .section_two_columns .section_title {
    margin-bottom: 1.5vw;
  }
  .section_two_columns.is_image_left {
    flex-direction: column-reverse;
  }
  .section_two_columns.is_image_left .two_columns_header,
  .section_two_columns.is_image_left .two_columns_body {
    padding-left: 0;
    padding-right: 0;
  }
  .section_two_columns .section_catch {
    font-size: 1.333rem;
    margin-bottom: 6vw;
  }
  .two_columns_content {
    margin-top: 5vw;
    flex-basis: 100%;
    max-width: initial;
    line-height: 1.6;
  }
  .two_columns_image {
    width: 100%;
  }
  .two_columns_image img {
    position: static;
    transform: translate(0, 0);
    height: auto;
    width: 100%;
  }
}
/* -----------------------------------------------------------------------------
LINEUP
----------------------------------------------------------------------------- */
.sectionLineup {
  margin-bottom: 150px;
}

.sectionLineup .section_title {
  text-align: center;
  margin-bottom: 40px;
}

.lineup_items {
  width: 85%;
  max-width: 1020px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 auto;
  list-style-type: none;
  margin-bottom: -60px;
}

.lineup_item {
  flex-basis: 48.5%;
  margin-right: 3%;
  margin-bottom: 60px;
}
.lineup_item:nth-child(2n) {
  margin-right: 0;
}
.lineup_item > span,
.lineup_item > a > span {
  display: block;
}
.lineup_item .item_thumbnail {
  background-color: #999;
  height: 0;
  padding-bottom: 62.5%;
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
}
.lineup_item .item_thumbnail img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.01);
  height: 100%;
  width: auto;
  max-width: initial;
}
.lineup_item .item_subject {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 10px;
}
.lineup_item .item_exerpt {
  font-size: 0.875rem;
}

@media screen and (max-width: 750px) {
  .sectionLineup {
    margin-bottom: 35vw;
  }
  .sectionLineup .section_title {
    margin-bottom: 8vw;
  }
  .lineup_items {
    margin-bottom: 0;
  }
  .lineup_item {
    flex-basis: 100%;
    margin-right: 0;
    margin-bottom: 0;
  }
  .lineup_item + .lineup_item {
    margin-top: 15vw;
  }
  .lineup_item .item_thumbnail {
    margin-bottom: 3vw;
  }
  .lineup_item .item_subject {
    font-size: 1.2rem;
    margin-bottom: 3vw;
  }
}
/* -----------------------------------------------------------------------------
ムービー
----------------------------------------------------------------------------- */
.sectionMovie {
  padding-top: 140px;
  padding-bottom: 150px;
  text-align: center;
}
.sectionMovie .section_title {
  margin-bottom: 45px;
}
.sectionMovie .movie_item {
  width: 85%;
  max-width: 1020px;
  margin: auto;
}
.sectionMovie .movie_item::after {
  content: "";
  width: 110px;
  height: 110px;
  display: block;
  background: url(../images/common/icon_play.svg) center center no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.3s;
}
.sectionMovie .movie_item:hover::after {
  opacity: 1;
}
@media screen and (max-width: 750px) {
  .sectionMovie .movie_item::after {
    width: 15vw;
    height: 15vw;
    background-size: contain;
    opacity: 1;
  }
}

.product_detail_movie_area {
  width: 100%;
  aspect-ratio: 1.77;
}
.product_detail_movie_area iframe {
  width: 100%;
  height: 100%;
}

/* -----------------------------------------------------------------------------
コンタクト
----------------------------------------------------------------------------- */
.sectionContact {
  background-color: #f5f5f5;
  padding-top: 140px;
  padding-bottom: 150px;
  text-align: center;
}
.sectionContact .section_title {
  margin-bottom: 22px;
}
.sectionContact .section_text {
  margin-bottom: 50px;
}

@media screen and (max-width: 750px) {
  .sectionContact {
    padding-top: 20vw;
    padding-bottom: 20vw;
  }
  .sectionContact .section_body {
    width: 85%;
    margin: 0 auto;
  }
  .sectionContact .section_text {
    margin-bottom: 10vw;
  }
  .sectionContact .button_arrow .button_inner {
    min-width: 76%;
  }
}
/* -----------------------------------------------------------------------------
モーダル
----------------------------------------------------------------------------- */
.modal {
  position: fixed;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background-color: rgba(255, 255, 255, 0.9);
  top: 0;
  left: 0;
  z-index: 5;
  display: none;
}
.modal > .inner {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.modal_logo {
  position: fixed;
  top: 20px;
  left: 30px;
  filter: brightness(0);
}
.modal_close {
  border: solid 1px #63706d;
  color: #63706d;
  font-size: 0.8125rem;
  max-width: 290px;
  width: 90%;
  margin: 3rem auto 0 auto;
  line-height: 1;
  padding: 0.8em 0;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition-property: background color;
  transition-duration: 0.3s;
}
.modal_close:hover {
  background-color: #63706d;
  color: #fff;
}
.modal_close:hover::after {
  filter: brightness(0) invert(1);
}
.modal_close::after {
  content: "";
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  background: url(../images/common/close.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 0.7rem;
  right: 0.75rem;
  transition-property: filter;
  transition-duration: 0.3s;
}

.modal_contents {
  max-width: 1080px;
  width: 85%;
}

.button_modal {
  cursor: pointer;
}

@media screen and (max-width: 750px) {
  .modal > .inner {
    display: block;
  }
  .modal_close {
    margin-top: 3.333rem;
  }
  .modal_contents {
    margin: 14vw auto 0 auto;
    height: calc(100% - 28vw);
    overflow-y: auto;
    width: 100%;
    padding-bottom: 14vw;
  }
}
/* -----------------------------------------------------------------------------
プロダクト詳細
----------------------------------------------------------------------------- */
.product_detail {
  display: flex;
  width: 100%;
}
.product_detail_pictures .swiper-container {
  position: relative;
}
.product_detail_pictures .swiper-slide {
  max-width: 540px;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
}
.product_detail_pictures .swiper-slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  max-width: initial;
  width: auto;
}
.product_detail_pictures .swiper-slide img.vlong {
  width: 100%;
  height: auto;
}
.product_detail_pictures .swiper-pagination-bullets {
  bottom: 30px;
  transform: translateX(-50%);
  left: 50%;
  width: auto;
}
.product_detail_pictures .swiper-pagination-bullet {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.25);
  border: solid 1px rgba(0, 0, 0, 0);
  display: inline-block;
  line-height: 1;
}
.product_detail_pictures .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 0.5rem;
}
.product_detail_pictures .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: solid 1px rgba(0, 0, 0, 0.25);
  background-color: rgba(255, 255, 255, 0.25);
}
.product_detail_pictures .swiper-button-prev::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.25);
  width: 10px;
  height: 15px;
  -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
          clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
.product_detail_pictures .swiper-button-next::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.25);
  width: 10px;
  height: 15px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.product_detail_body {
  flex-basis: 50%;
  margin-left: 60px;
  padding-top: 15px;
  max-width: 400px;
}
.product_detail_body:only-child {
  flex-basis: 100%;
  margin-left: 0;
  max-width: initial;
}
.product_detail_item + .product_detail_item {
  margin-top: 3rem;
}
.product_detail_item dt {
  color: #db9c55;
  font-size: 0.75rem;
}
.product_detail_name dd {
  font-size: 1.125rem;
}
.product_detail_concept dd {
  font-size: 0.875rem;
}
.product_detail .button_onlineshop {
  margin-top: 3rem;
  width: 80%;
}

@media screen and (max-width: 750px) {
  .product_detail {
    flex-direction: column;
  }
  .product_detail_pictures {
    flex-basis: 100%;
    max-width: 100%;
    margin-bottom: 6vw;
  }
  .product_detail_pictures .swiper-slide {
    max-width: 100%;
    width: 100%;
  }
  .product_detail_pictures .swiper-pagination-bullets {
    left: 4.5vw;
  }
  .product_detail_pictures .swiper-pagination-bullet + .swiper-pagination-bullet {
    margin-top: 2.333vw;
  }
  .product_detail_body {
    flex-basis: auto;
    padding: 0 7.5%;
    margin: auto;
    max-width: initial;
  }
  .product_detail_item + .product_detail_item {
    margin-top: 3.5vw;
  }
  .product_detail_item dt {
    color: #db9c55;
    font-size: 0.8rem;
  }
  .product_detail_name dd {
    font-size: 1.333rem;
  }
  .product_detail .button_onlineshop {
    margin-top: 3.333rem;
    width: 100%;
  }
}
/* -----------------------------------------------------------------------------
ニュース
----------------------------------------------------------------------------- */
.news_list .sectionNews {
  padding-top: 100px;
  margin-bottom: 100px;
}

.sectionNews .section_title {
  text-align: center;
  margin-bottom: 80px;
}

.news_categories {
  border-top: solid 1px #777;
  border-bottom: solid 1px #777;
  margin-bottom: 50px;
  line-height: 1;
}
.news_categories ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  -moz-column-gap: 36px;
       column-gap: 36px;
  list-style-type: none;
}
.news_categories ul .is_current a span::after {
  border-top: solid 1px #000;
  content: "";
  display: block;
  font-size: 0;
  height: 0;
  line-height: 0;
  width: 15px;
  position: absolute;
  bottom: 0;
  left: calc(50% - 7.5px);
}
.news_categories ul a {
  color: #000;
  display: inline-block;
  text-decoration: none;
  padding: 1em 0;
}
.news_categories ul a span {
  display: inline-block;
  position: relative;
  padding-bottom: 6px;
}

.news_items {
  width: 85%;
  max-width: 1020px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 auto 60px auto;
  list-style-type: none;
}

.news_item {
  flex-basis: 31.372%;
  margin-right: 2.941%;
  margin-bottom: 65px;
}
.news_item:nth-child(3n) {
  margin-right: 0;
}
.news_item > a {
  text-decoration: none;
  transition-property: opacity;
  transition-duration: 0.3s;
}
.news_item > a:hover {
  opacity: 0.8;
}
.news_item > a > span {
  display: block;
}
.news_item .item_thumbnail {
  background-color: #999;
  height: 0;
  padding-bottom: 63%;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.8rem;
}
.news_item .item_thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news_item .item_thumbnail .no_image {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
}
.news_item .item_thumbnail .no_image::after {
  content: "no image";
  color: #ccc;
}
.news_item .item_meta {
  display: block;
  margin-bottom: 0.5rem;
}
.news_item .item_date {
  display: inline;
}
.news_item .item_cats::before {
  display: inline;
  content: " /";
}
.news_item .item_cats ul {
  display: inline;
  list-style-type: none;
}
.news_item .item_cats li {
  display: inline;
}
.news_item .item_exerpt {
  font-size: 0.875rem;
  color: #000;
  display: block;
  line-height: 1.571;
}

.navigation {
  line-height: 1;
}
.navigation.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.navigation.pagination a {
  color: #000;
  text-decoration: none;
}
.navigation.pagination .page-numbers,
.navigation.pagination .post_link {
  padding: 0.6em;
  position: relative;
}
.navigation.pagination .page-numbers.current::after,
.navigation.pagination .post_link.current::after {
  border-top: solid 1px #000;
  content: "";
  display: block;
  font-size: 0;
  height: 0;
  line-height: 0;
  width: 15px;
  position: absolute;
  bottom: 0;
  left: calc(50% - 7.5px);
}
.navigation.pagination .page-numbers.disabled,
.navigation.pagination .post_link.disabled {
  opacity: 0.2;
}
.navigation.pagination .page-numbers.prev, .navigation.pagination .page-numbers.next,
.navigation.pagination .post_link.prev,
.navigation.pagination .post_link.next {
  border: solid 1px #000;
}
.navigation.pagination .page-numbers.prev::after, .navigation.pagination .page-numbers.next::after,
.navigation.pagination .post_link.prev::after,
.navigation.pagination .post_link.next::after {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  width: 13px;
  height: 10px;
  background: url(../images/common/arrow_double.svg) center center no-repeat;
  background-size: contain;
}
.navigation.pagination .page-numbers.prev,
.navigation.pagination .post_link.prev {
  margin-right: 1rem;
  padding-left: 3em;
  padding-right: 1.5em;
}
.navigation.pagination .page-numbers.prev::after,
.navigation.pagination .post_link.prev::after {
  left: 0.5em;
  transform: rotate(180deg);
}
.navigation.pagination .page-numbers.next,
.navigation.pagination .post_link.next {
  margin-left: 1rem;
  padding-right: 3em;
  padding-left: 1.5em;
}
.navigation.pagination .page-numbers.next::after,
.navigation.pagination .post_link.next::after {
  right: 0.5em;
}
.navigation.pagination .page_list {
  margin-left: 130px;
  margin-right: 130px;
}

@media screen and (max-width: 750px) {
  .sectionNews {
    padding-top: 6vw;
    margin-bottom: 20vw;
  }
  .sectionNews .section_title {
    margin-bottom: 10vw;
  }
  .news_categories {
    border-top: none;
    border-bottom: none;
    margin: 0 auto 12vw auto;
    position: relative;
    width: 85%;
  }
  .news_categories::after {
    content: "";
    width: 1.25vw;
    height: 2.5vw;
    top: calc(50% - 1.25vw);
    right: 1rem;
    background: url(../images/common/arrow.svg) center center no-repeat;
    background-size: contain;
    position: absolute;
    transform: rotate(90deg);
  }
  .news_categories select {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background: #e8e8e8;
    border: none;
    border-radius: 0.25em;
    width: 100%;
    padding: 0.5em;
  }
  .news_items {
    flex-direction: column;
    margin-bottom: 12vw;
  }
  .news_item {
    flex-basis: 100%;
    margin-bottom: 0;
    margin-right: 0%;
  }
  .news_item + .news_item {
    margin-top: 7vw;
  }
  .news_item > a {
    display: flex;
    justify-content: space-between;
  }
  .news_item .item_thumbnail {
    flex-basis: 54%;
    padding-bottom: 29vw;
    margin-bottom: 0;
  }
  .news_item .item_body {
    flex-basis: 41%;
  }
  .news_item .item_date {
    font-size: 0.8rem;
  }
  .news_item .item_cats {
    display: none;
  }
  .news_item .item_exerpt {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-height: 1.46;
  }
  .navigation.pagination .nav-links {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
  .navigation.pagination .page-numbers.current::after {
    width: 1rem;
    left: calc(50% - 0.5rem);
  }
  .navigation.pagination .page_list {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .index .sectionNews {
    padding-top: 33vw;
    margin-bottom: 2vw;
  }
}
/* -----------------------------------------------------------------------------
ニュース詳細
----------------------------------------------------------------------------- */
.news_detail .sectionNews {
  padding-top: 100px;
  padding-bottom: 100px;
}
.news_detail .entry_header {
  width: 85%;
  max-width: 800px;
  margin: 0 auto 50px auto;
}
.news_detail .entry_cats {
  margin-bottom: 8px;
}
.news_detail .entry_cats ul {
  display: flex;
  -moz-column-gap: 1em;
       column-gap: 1em;
  list-style-type: none;
}
.news_detail .entry_cats ul li a {
  color: #000;
  text-decoration: none;
  transition-property: filter;
  transition-duration: 0.3s;
}
.news_detail .entry_cats ul li a span::before {
  content: "/";
}
.news_detail .entry_title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.333;
}
.news_detail .entry_date {
  color: #db9c55;
  font-size: 0.75rem;
}
.news_detail .entry_body {
  font-size: 0.866rem;
  width: 85%;
  max-width: 800px;
  margin: 0 auto 110px auto;
  letter-spacing: 0.05em;
  line-height: 2;
}
.news_detail .entry_body p {
  margin: 1em 0;
}
.news_detail .entry_body img {
  display: block;
  margin: 1em 0;
}
.news_detail .entry_body img.alignleft {
  width: calc(50% - 0.75em);
  margin-right: 1.5em;
  float: left;
}
.news_detail .entry_body img.alignright {
  width: calc(50% - 0.75em);
  margin-left: 1.5em;
  float: right;
}
.news_detail .entry_body img.aligncenter {
  width: calc(50% - 0.75em);
  margin-left: auto;
  margin-right: auto;
}
.news_detail .entry_body img.alignnone {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.news_detail .entry_body ul,
.news_detail .entry_body ol {
  margin: 1em 0;
  padding-left: 1.5em;
}
.news_detail .entry_body blockquote {
  border: solid 1px #ddd;
  padding: 2em;
  margin: 1em 0;
}
.news_detail .entry_body h1 {
  font-size: 150%;
}
.news_detail .entry_body h2 {
  font-size: 140%;
}
.news_detail .entry_body h3 {
  font-size: 130%;
}
.news_detail .entry_body h4 {
  font-size: 120%;
}
.news_detail .entry_body h5 {
  font-size: 110%;
}
.news_detail .entry_body h6 {
  font-size: 105%;
}
.news_detail .entry_body iframe[src^="https://www.youtube.com/embed"] {
  width: 100%;
}
@media screen and (min-width: 942px) {
  .news_detail .entry_body iframe[src^="https://www.youtube.com/embed"] {
    height: 450px;
  }
}
@media screen and (max-width: 941px) {
  .news_detail .entry_body iframe[src^="https://www.youtube.com/embed"] {
    height: 47.8vw;
  }
}
.news_detail .sectionNews_recent {
  border-top: solid 1px #000;
  padding-top: 80px;
}
@media screen and (max-width: 750px) {
  .news_detail .sectionNews {
    padding-bottom: 13vw;
    margin-bottom: 0;
  }
  .news_detail .entry_header {
    margin-bottom: 1rem;
  }
  .news_detail .entry_cats {
    font-size: 0.86rem;
  }
  .news_detail .entry_date {
    font-size: 0.86rem;
  }
  .news_detail .entry_title {
    font-size: 1rem;
    margin-bottom: 0.5em;
  }
  .news_detail .entry_body {
    margin-bottom: 20vw;
  }
  .news_detail .entry_body img.alignleft, .news_detail .entry_body img.alignright, .news_detail .entry_body img.aligncenter, .news_detail .entry_body img.alignnone {
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .news_detail .sectionNews_recent {
    padding-top: 10vw;
    padding-bottom: 8vw;
    margin-bottom: 0;
  }
}/*# sourceMappingURL=style.css.map */