@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Noto+Serif+JP&display=swap");
/* ---------------------------------------------------------------------
レスポンシブ
--------------------------------------------------------------------- */
/* ---------------------------------------------------------------------
共通
--------------------------------------------------------------------- */
body {
  color: #52504F;
  background-color: #FEFEFE;
  font-family: YuGothic, "Yu Gothic", sans-serif;
}

.inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2%;
}

.sec-title {
  text-align: center;
  margin-bottom: 120px;
}
@media only screen and (max-width: 1080px) {
  .sec-title {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 768px) {
  .sec-title {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 428px) {
  .sec-title {
    margin-bottom: 40px;
  }
}
.sec-title h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  font-weight: 300;
}
@media only screen and (max-width: 768px) {
  .sec-title h1 {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 428px) {
  .sec-title h1 {
    font-size: 3rem;
  }
}

.btn a {
  width: 200px;
  height: 40px;
  border: 1px solid #52504F;
  background-color: #FEFEFE;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #52504F;
  text-decoration: none;
}
.btn a:hover {
  background-color: #52504F;
  color: #FEFEFE;
  transition: 400ms ease-out;
}
.btn a p {
  margin-right: 1em;
  font-family: "Cormorant Garamond", serif;
}
.btn a p:last-child {
  font-size: 0.8rem;
}

.line-l {
  width: 1px;
  height: 200px;
  background-color: #52504F;
  margin: 200px auto;
}

/* ------------------------------------------------------------
ページトップボタン
------------------------------------------------------------ */
.pagetop {
  cursor: pointer;
  position: fixed;
  right: 1em;
  bottom: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  transition: 0.3s;
  background: #496157;
  z-index: 1000;
  /*   デフォルトは非表示 */
  opacity: 0;
}
.pagetop a {
  color: #FEFEFE;
  font-size: 0.8rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  text-decoration: none;
}
.pagetop a:hover {
  border-bottom: #FEFEFE 1px solid;
  transition: 50ms ease-in;
}

/* ------------------------------------------------------------
scroll animation
------------------------------------------------------------ */
.slide-right.is-animated {
  -webkit-animation: slide-right 2000ms both;
          animation: slide-right 2000ms both;
}

@-webkit-keyframes slide-right {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-right {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.slide-left.is-animated {
  -webkit-animation: slide-left 2000ms both;
          animation: slide-left 2000ms both;
}

@-webkit-keyframes slide-left {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-left {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.slide-up.is-animated {
  -webkit-animation: slide-up 2000ms both;
          animation: slide-up 2000ms both;
}

@-webkit-keyframes slide-up {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.slide-down.is-animated {
  -webkit-animation: slide-down 2000ms both;
          animation: slide-down 2000ms both;
}

@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.scale-y.is-animated {
  -webkit-animation: scale-y 2000ms ease-out;
          animation: scale-y 2000ms ease-out;
}

@-webkit-keyframes scale-y {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  100% {
    transform: scaleY(1);
  }
}

@keyframes scale-y {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  100% {
    transform: scaleY(1);
  }
}
.scale-x.is-animated {
  -webkit-animation: scale-x 2000ms ease-out;
          animation: scale-x 2000ms ease-out;
}

@-webkit-keyframes scale-x {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  100% {
    transform: scaleX(1);
  }
}

@keyframes scale-x {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  100% {
    transform: scaleX(1);
  }
}
/* ---------------------------------------------------------------------
共通ヘッダー PC
--------------------------------------------------------------------- */
#header {
  position: fixed; /*fixedを設定して固定*/
  top: 0;
  height: 100px;
  width: 100%; /*横幅指定*/
  z-index: 999; /*最前面へ*/
  background-color: #FEFEFE;
}
#header .hamburger-menu {
  display: none;
}
@media only screen and (max-width: 1080px) {
  #header .hamburger-menu {
    display: initial;
  }
}
#header .pc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1%;
}
@media only screen and (max-width: 1080px) {
  #header .pc-header {
    display: none;
  }
}
#header .pc-header .logo h1 {
  text-indent: 1;
}
#header .pc-header .logo h1 img {
  width: 100px;
  margin: 1em auto;
}
#header .pc-header nav {
  display: flex;
  align-items: center;
}
#header .pc-header nav .nav {
  display: flex;
}
#header .pc-header nav .nav li {
  margin-right: 2em;
}
#header .pc-header nav .nav li a {
  font-size: 1.15rem;
  font-family: "Cormorant Garamond", serif;
  text-decoration: none;
  font-weight: 700;
  color: #52504F;
}
#header .pc-header nav .nav li a:hover {
  border-bottom: #496157 1px solid;
  transition: 50ms ease-in;
}
#header .pc-header nav .booking li a {
  background-color: #496157;
  display: block;
  padding: 1em 2.5em;
  color: #FEFEFE;
  text-decoration: none;
}
#header .pc-header nav .booking li a:hover {
  opacity: 0.8;
  transition: 300ms ease-in;
}

/*==ふわっと出現させるためのCSS*/
/*　上に上がる動き　*/
#header.UpMove {
  position: fixed;
  width: 100%;
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}

@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
/*　下に下がる動き　*/
#header.DownMove {
  position: fixed;
  width: 100%;
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ------------------------------------------------------------
ハンバーガー
------------------------------------------------------------ */
@media only screen and (max-width: 1080px) {
  .hamburger-menu {
    /*ヘッダーを固定*/
    position: fixed;
    width: 100%;
    height: 80px;
    z-index: 999;
  }
  .logo h1 {
    text-indent: 1;
  }
  .logo h1 img {
    width: 100px;
    margin: 1em;
  }
  #nav {
    text-align: center;
    position: absolute;
    top: 0;
    /*ナビメニューを左に隠した状態になる*/
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #FEFEFE;
    /*０.7秒かけてナビメニューがスライドする*/
    transition: 0.7s;
  }
  #nav ul {
    padding-top: 80px;
  }
  #nav ul li {
    list-style-type: none;
    font-size: 1.5rem;
    font-weight: 600;
  }
  #nav a {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: #52504F;
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    margin-bottom: 0.8em;
    padding: 0.5em;
    transition: 0.5s;
  }
  #nav a:last-child {
    color: #496157;
    font-weight: 700;
  }
  #nav li a:hover {
    border-bottom: #496157 1px solid;
    transition: 50ms ease-in;
  }
  #hamburger {
    display: block;
    position: absolute;
    top: 1.75em;
    right: 1em;
    width: 3em;
    height: 3em;
    cursor: pointer;
    transition: 1s;
  }
  .inner_line {
    display: block;
    position: absolute;
    right: 0;
    width: 3em;
    height: 0.15em;
    background-color: #52504F;
    transition: 0.8s;
    border-radius: 4px;
  }
  #line1 {
    top: 0;
  }
  #line2 {
    top: 20px;
  }
  #line3 {
    bottom: 4px;
  }
  .in {
    transform: translateX(-100%);
  }
  .line_1, .line_2, .line_3 {
    background: #52504F;
  }
  .line_1 {
    /*-45度回転させる*/
    transform: rotate(45deg);
    top: 0;
  }
  .line_2 {
    opacity: 0;
  }
  .line_3 {
    /*45度回転させる*/
    transform: rotate(-45deg);
    bottom: 0;
  }
}
/* ---------------------------------------------------------------------
共通banner
--------------------------------------------------------------------- */
#banner {
  background-color: #F6F1ED;
  padding: 2.5em 0;
}
#banner a {
  text-decoration: none;
}
#banner a:hover {
  opacity: 0.8;
}
#banner .banner_flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1080px) {
  #banner .banner_flex {
    flex-direction: column;
  }
}
#banner .banner_flex .banner-limited {
  background-color: #496157;
  color: #FEFEFE;
  text-align: center;
  padding: 1.25em;
  margin-right: 1.5em;
}
@media only screen and (max-width: 1080px) {
  #banner .banner_flex .banner-limited {
    margin-right: 0;
    margin-bottom: 2em;
  }
}
#banner .banner_flex .banner-limited h4 {
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  margin-bottom: 0.5em;
  font-weight: 400;
}
#banner .banner_flex .banner-limited p {
  font-size: 0.75rem;
  margin-bottom: 0.5em;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  font-weight: 600;
}
#banner .banner_flex .banner-limited p:last-child {
  margin-bottom: 0;
}
#banner .banner_flex .banner_paragraph {
  margin-right: 1.5em;
  color: #52504F;
}
@media only screen and (max-width: 1080px) {
  #banner .banner_flex .banner_paragraph {
    margin-right: 0;
    margin-bottom: 1em;
  }
}
#banner .banner_flex .banner_paragraph h1 {
  font-size: 3rem;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  #banner .banner_flex .banner_paragraph h1 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 428px) {
  #banner .banner_flex .banner_paragraph h1 {
    font-size: 1.5rem;
  }
}
#banner .banner_flex .banner_paragraph p {
  font-size: 0.75rem;
  text-align: left;
}
@media only screen and (max-width: 1080px) {
  #banner .banner_flex .banner_paragraph p {
    text-align: right;
  }
}
@media only screen and (max-width: 428px) {
  #banner .banner_flex .banner_paragraph p {
    font-size: 0.5rem;
  }
}
#banner .banner_flex .banner_discount h1 {
  color: #496157;
  font-size: 4rem;
  font-weight: bold;
}
@media only screen and (max-width: 1080px) {
  #banner .banner_flex .banner_discount h1 {
    font-size: 5rem;
  }
}
@media only screen and (max-width: 768px) {
  #banner .banner_flex .banner_discount h1 {
    font-size: 3rem;
  }
}
#banner .banner_flex .banner_discount p {
  color: #52504F;
  font-size: 0.75rem;
  text-align: right;
}
@media only screen and (max-width: 428px) {
  #banner .banner_flex .banner_discount p {
    font-size: 0.5rem;
  }
}

/* ---------------------------------------------------------------------
共通footer
--------------------------------------------------------------------- */
#footer {
  margin: 3em auto;
}
#footer .footer_flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (max-width: 1080px) {
  #footer .footer_flex {
    flex-direction: column;
  }
}
#footer .footer_flex .footer_flex-box {
  display: flex;
  align-items: flex-start;
}
@media only screen and (max-width: 1080px) {
  #footer .footer_flex .footer_flex-box {
    flex-direction: column;
  }
}
#footer .footer_flex .footer_flex-box .footer_flex-box_img h1 img {
  width: 100px;
  margin-right: 1.5em;
}
@media only screen and (max-width: 1080px) {
  #footer .footer_flex .footer_flex-box .footer_flex-box_img h1 img {
    margin-right: 0;
    margin-bottom: 1.5em;
  }
}
#footer .footer_flex .footer_flex-box .footer_flex-box_paragraph p {
  font-size: 0.75rem;
  margin-bottom: 1em;
}
#footer .footer_flex .footer_flex-box .footer_flex-box_paragraph a img {
  margin-right: 0.2em;
  width: 20px;
}
@media only screen and (max-width: 1080px) {
  #footer .footer_flex .footer_flex-box .footer_flex-box_paragraph a img {
    margin-right: 0;
    margin-bottom: 1.5em;
  }
}
#footer .footer_flex .footer_flex-nav {
  display: flex;
}
@media only screen and (max-width: 1080px) {
  #footer .footer_flex .footer_flex-nav {
    flex-direction: column;
  }
}
#footer .footer_flex .footer_flex-nav ul {
  margin-right: 3em;
}
@media only screen and (max-width: 1080px) {
  #footer .footer_flex .footer_flex-nav ul {
    margin-right: 0;
    margin-bottom: 1em;
  }
}
#footer .footer_flex .footer_flex-nav ul li {
  margin-bottom: 1.25em;
}
@media only screen and (max-width: 1080px) {
  #footer .footer_flex .footer_flex-nav ul li {
    margin-bottom: 1em;
  }
}
#footer .footer_flex .footer_flex-nav ul li:last-child {
  margin-bottom: 0;
}
#footer .footer_flex .footer_flex-nav ul li a {
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  color: #52504F;
}
#footer .footer_flex .footer_flex-nav ul li a:hover {
  border-bottom: #496157 1px solid;
  transition: 50ms ease-in;
}
#footer .footer_flex .footer_flex-nav ul:nth-child(3) {
  margin-right: 0;
}
@media only screen and (max-width: 1080px) {
  #footer .footer_flex .footer_flex-nav ul:nth-child(3) {
    margin-bottom: 0;
  }
}

small p {
  font-size: 0.5rem;
  text-align: right;
  margin-bottom: 0.1em;
}
@media only screen and (max-width: 1080px) {
  small p {
    text-align: center;
  }
}

/* ---------------------------------------------------------------------
MV
--------------------------------------------------------------------- */
.mv {
  margin-top: 100px;
  margin-bottom: 20%;
}

.slider {
  position: relative;
  z-index: 1;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  height: 80vw; /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  /*　背景画像設定　*/
}
.slider .slider-item01 {
  background: url(../images/mv1.png);
}
.slider .slider-item02 {
  background: url(../images/mv2.png);
}
.slider .slider-item03 {
  background: url(../images/mv3.png);
}
.slider .slider-item {
  width: 100%; /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  height: 80vw; /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  background-repeat: no-repeat; /*背景画像をリピートしない*/
  background-position: center; /*背景画像の位置を中央に*/
  background-size: cover; /*背景画像が.slider-item全体を覆い表示*/
}

/* ---------------------------------------------------------------------
home about 
--------------------------------------------------------------------- */
#home_about {
  margin-bottom: 400px;
}
@media only screen and (max-width: 768px) {
  #home_about {
    margin-bottom: 200px;
  }
}
#home_about .home_about-flex {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1080px) {
  #home_about .home_about-flex {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
#home_about .home_about-flex .home_about_img {
  margin-right: 160px;
}
@media only screen and (max-width: 1080px) {
  #home_about .home_about-flex .home_about_img {
    margin-right: 0;
    margin-bottom: 160px;
  }
}
@media only screen and (max-width: 768px) {
  #home_about .home_about-flex .home_about_img {
    margin-bottom: 80px;
  }
}
#home_about .home_about-flex .home_about_img img {
  filter: drop-shadow(1px 3px 5px rgb(160, 160, 160));
}
@media only screen and (max-width: 1080px) {
  #home_about .home_about-flex .home_about_img img {
    width: 90vw;
  }
}
#home_about .home_about-flex .home_about-box {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
#home_about .home_about-flex .home_about-box .about-box_title h2 {
  margin-bottom: 1em;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  font-size: 2rem;
  font-weight: 600;
}
@media only screen and (max-width: 1080px) {
  #home_about .home_about-flex .home_about-box .about-box_title h2 {
    text-align: center;
    margin-bottom: 2em;
  }
}
@media only screen and (max-width: 768px) {
  #home_about .home_about-flex .home_about-box .about-box_title h2 {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 428px) {
  #home_about .home_about-flex .home_about-box .about-box_title h2 {
    font-size: 1.25rem;
  }
}
#home_about .home_about-flex .home_about-box .home_about-box_paragraph p {
  text-rendering: 0.5em;
  line-height: 1.75rem;
  margin-bottom: 2em;
}
@media only screen and (max-width: 768px) {
  #home_about .home_about-flex .home_about-box .home_about-box_paragraph p {
    font-size: 0.9rem;
  }
}
#home_about .home_about-flex .home_about-box .btn_about {
  margin: 3em 0 0 auto;
}
@media only screen and (max-width: 1080px) {
  #home_about .home_about-flex .home_about-box .btn_about {
    margin: 5em auto 0;
  }
}
#home_about .home_about-flex .home_about-box .btn_about a {
  margin: 0 auto;
}

/* ---------------------------------------------------------------------
home product 
--------------------------------------------------------------------- */
#home_product {
  margin-bottom: 200px;
}
@media only screen and (max-width: 768px) {
  #home_product {
    margin-bottom: 100px;
  }
}
#home_product .home_product-flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 160px;
}
@media only screen and (max-width: 1080px) {
  #home_product .home_product-flex {
    flex-direction: column;
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 768px) {
  #home_product .home_product-flex {
    margin-bottom: 40px;
  }
}
#home_product .home_product-flex a {
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  color: #52504F;
}
@media only screen and (max-width: 1080px) {
  #home_product .home_product-flex a {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 428px) {
  #home_product .home_product-flex a img {
    width: 90vw;
  }
}
#home_product .home_product-flex a:hover {
  opacity: 0.5;
}
#home_product .home_product-flex a p {
  color: red;
  font-size: 0.9rem;
  margin-bottom: 0.5em;
}
#home_product .home_product-flex a h5 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  margin-bottom: 0.5em;
}
#home_product .home_product-flex a small {
  color: rgb(123, 123, 123);
}
#home_product .btn_product a {
  margin: 0 auto;
}

/* ---------------------------------------------------------------------
home commitment
---------------------------------------------------------------------*/
#home_commitment {
  background-color: #C0B2AE;
  padding: 100px;
}
@media only screen and (max-width: 768px) {
  #home_commitment {
    padding: 100px 0;
  }
}
#home_commitment .home_commitment_flex {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1440px) {
  #home_commitment .home_commitment_flex {
    align-items: center;
  }
}
@media only screen and (max-width: 1080px) {
  #home_commitment .home_commitment_flex {
    flex-direction: column;
  }
}
#home_commitment .home_commitment_flex .home_commitment_flex-box {
  margin-right: 3em;
}
@media only screen and (max-width: 1440px) {
  #home_commitment .home_commitment_flex .home_commitment_flex-box {
    margin-right: 5em;
  }
}
@media only screen and (max-width: 1080px) {
  #home_commitment .home_commitment_flex .home_commitment_flex-box {
    margin-right: 0;
    margin-bottom: 3em;
  }
}
#home_commitment .home_commitment_flex .home_commitment_flex-box .sec-title-sub {
  color: #FEFEFE;
}
@media only screen and (max-width: 1080px) {
  #home_commitment .home_commitment_flex .home_commitment_flex-box .sec-title-sub {
    text-align: center;
  }
}
#home_commitment .home_commitment_flex .home_commitment_flex-box .sec-title-sub h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.25rem;
  font-weight: 400;
  margin-bottom: 1em;
}
#home_commitment .home_commitment_flex .home_commitment_flex-box .sec-title-sub p {
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 2em;
}
#home_commitment .home_commitment_flex .home_commitment_flex-box .line-w {
  width: 200px;
  height: 1px;
  border-top: #52504F solid 1px;
  margin-bottom: 2em;
}
@media only screen and (max-width: 1080px) {
  #home_commitment .home_commitment_flex .home_commitment_flex-box .line-w {
    margin: 0 auto 3em;
  }
}
@media only screen and (max-width: 1080px) {
  #home_commitment .home_commitment_flex .home_commitment_flex-box .sec-paragraph {
    text-align: center;
  }
}
#home_commitment .home_commitment_flex .home_commitment_flex-box .sec-paragraph h4 {
  font-size: 1.25rem;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  font-weight: 400;
  margin-bottom: 0.6em;
}
#home_commitment .home_commitment_flex .home_commitment_flex-box .sec-paragraph p {
  line-height: 1.75rem;
  text-align: justify;
  margin-bottom: 2em;
}
@media only screen and (max-width: 768px) {
  #home_commitment .home_commitment_flex .home_commitment_flex-box .sec-paragraph p {
    font-size: 0.9rem;
  }
}
#home_commitment .home_commitment_flex .home_commitment_flex-box .sec-paragraph p a {
  text-decoration: none;
  color: #FEFEFE;
  font-weight: 500;
}
#home_commitment .home_commitment_flex .home_commitment_flex-img img {
  filter: drop-shadow(1px 3px 5px rgb(160, 160, 160));
}
@media only screen and (max-width: 1080px) {
  #home_commitment .home_commitment_flex .home_commitment_flex-img img {
    width: 90vw;
  }
}

/* ---------------------------------------------------------------------
home situations
--------------------------------------------------------------------- */
#home_situations {
  padding: 0%;
  margin-bottom: 200px;
}
@media only screen and (max-width: 768px) {
  #home_situations {
    margin-bottom: 100px;
  }
}
#home_situations .home_situations_flex {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  #home_situations .home_situations_flex {
    flex-direction: column;
  }
}
#home_situations .home_situations_flex .home_situations_flex-box {
  position: relative;
}
#home_situations .home_situations_flex .home_situations_flex-box .home_situation-1 {
  background-image: url(../images/home_chill.png);
}
#home_situations .home_situations_flex .home_situations_flex-box .home_situation-2 {
  background-image: url(../images/home_cool.png);
}
#home_situations .home_situations_flex .home_situations_flex-box .home_situation-3 {
  background-image: url(../images/home_fun.png);
}
#home_situations .home_situations_flex .home_situations_flex-box:hover .home_situations_flex-box__text {
  opacity: 1;
}
#home_situations .home_situations_flex .home_situations_flex-box__img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; /*背景画像が.slider-item全体を覆い表示*/
  width: 30vw;
  height: 70vh;
  filter: drop-shadow(1px 3px 5px rgb(160, 160, 160));
}
@media only screen and (max-width: 768px) {
  #home_situations .home_situations_flex .home_situations_flex-box__img {
    width: 100%;
    height: 100vw;
  }
}
#home_situations .home_situations_flex .home_situations_flex-box__text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  color: #FEFEFE;
  background-color: rgba(220, 220, 220, 0.6);
  transition: 300ms ease-in-out;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#home_situations .home_situations_flex .home_situations_flex-box__text p {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
}

/* ---------------------------------------------------------------------
about main
--------------------------------------------------------------------- */
#about_main {
  margin-top: 300px;
  margin-bottom: 200px;
}
@media only screen and (max-width: 768px) {
  #about_main {
    margin-bottom: 100px;
  }
}
#about_main .about_main-img {
  text-align: center;
  margin: 200px auto;
}
#about_main .about_main-img img {
  filter: drop-shadow(1px 3px 5px rgb(160, 160, 160));
}
@media only screen and (max-width: 1080px) {
  #about_main .about_main-img img {
    width: 90vw;
  }
}
#about_main .about_main-text {
  text-align: center;
  margin: 0 100px 160px;
}
@media only screen and (max-width: 1080px) {
  #about_main .about_main-text {
    margin: 0 auto 80px;
  }
}
#about_main .about_main-text h1 {
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 768px) {
  #about_main .about_main-text h1 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 428px) {
  #about_main .about_main-text h1 {
    font-size: 1.5rem;
  }
}
#about_main .about_main-paragraph {
  margin: 0 5% 200px;
}
#about_main .about_main-paragraph p {
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  font-size: 1.25rem;
  line-height: 3rem;
  text-align: justify;
}
@media only screen and (max-width: 768px) {
  #about_main .about_main-paragraph p {
    font-size: 0.9rem;
  }
}
#about_main .about_main-flex {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1080px) {
  #about_main .about_main-flex {
    flex-direction: column-reverse;
  }
}
#about_main .about_main-flex .about_main-flex-img img {
  width: 100%;
  filter: drop-shadow(1px 3px 5px rgb(160, 160, 160));
}
@media only screen and (max-width: 1080px) {
  #about_main .about_main-flex .about_main-flex-img img {
    width: 90vw;
  }
}
#about_main .about_main-flex .about_main-flex-box {
  margin-right: 160px;
}
@media only screen and (max-width: 1080px) {
  #about_main .about_main-flex .about_main-flex-box {
    margin-right: 0;
    margin-bottom: 80px;
  }
}
#about_main .about_main-flex .about_main-flex-box .about_main-flex-box_paragraph {
  display: flex;
  margin-bottom: 80px;
}
@media only screen and (max-width: 1080px) {
  #about_main .about_main-flex .about_main-flex-box .about_main-flex-box_paragraph {
    text-align: center;
    justify-content: center;
  }
}
#about_main .about_main-flex .about_main-flex-box h2 {
  border-bottom: 1px dotted #496157;
  padding-bottom: 5px;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  font-weight: 400;
  font-size: 2rem;
}
@media only screen and (max-width: 1440px) {
  #about_main .about_main-flex .about_main-flex-box h2 {
    font-size: 1.75rem;
  }
}
@media only screen and (max-width: 768px) {
  #about_main .about_main-flex .about_main-flex-box h2 {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 428px) {
  #about_main .about_main-flex .about_main-flex-box h2 {
    font-size: 1.15rem;
  }
}

/* ---------------------------------------------------------------------
about quality
--------------------------------------------------------------------- */
#quality {
  background-color: #C0B2AE;
  padding: 100px;
}
@media only screen and (max-width: 768px) {
  #quality {
    padding: 100px 0;
  }
}
#quality .quality_flex {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1440px) {
  #quality .quality_flex {
    align-items: center;
  }
}
@media only screen and (max-width: 1080px) {
  #quality .quality_flex {
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 1080px) {
  #quality .quality_flex .quality_flex-box {
    margin-bottom: 3em;
  }
}
#quality .quality_flex .quality_flex-box .sec-title-sub {
  color: #FEFEFE;
}
@media only screen and (max-width: 1080px) {
  #quality .quality_flex .quality_flex-box .sec-title-sub {
    text-align: center;
  }
}
#quality .quality_flex .quality_flex-box .sec-title-sub h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.25rem;
  font-weight: 400;
  margin-bottom: 1em;
}
#quality .quality_flex .quality_flex-box .sec-title-sub p {
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 2em;
}
#quality .quality_flex .quality_flex-box .line-w {
  width: 200px;
  height: 1px;
  border-top: #52504F solid 1px;
  margin-bottom: 2em;
}
@media only screen and (max-width: 1080px) {
  #quality .quality_flex .quality_flex-box .line-w {
    margin: 0 auto 3em;
  }
}
@media only screen and (max-width: 1080px) {
  #quality .quality_flex .quality_flex-box .sec-paragraph {
    text-align: center;
  }
}
#quality .quality_flex .quality_flex-box .sec-paragraph h4 {
  font-size: 1.25rem;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  font-weight: 400;
  margin-bottom: 0.6em;
}
#quality .quality_flex .quality_flex-box .sec-paragraph p {
  line-height: 1.75rem;
  text-align: justify;
  margin-bottom: 2em;
}
#quality .quality_flex .quality_flex-img {
  margin-right: 3em;
}
@media only screen and (max-width: 1440px) {
  #quality .quality_flex .quality_flex-img {
    margin-right: 5rem;
  }
}
@media only screen and (max-width: 1080px) {
  #quality .quality_flex .quality_flex-img {
    margin-right: 0;
  }
}
#quality .quality_flex .quality_flex-img img {
  filter: drop-shadow(1px 3px 5px rgb(160, 160, 160));
}
@media only screen and (max-width: 1080px) {
  #quality .quality_flex .quality_flex-img img {
    width: 90vw;
  }
}

/* ---------------------------------------------------------------------
about situations
--------------------------------------------------------------------- */
#situations {
  margin-bottom: 200px;
}
@media only screen and (max-width: 768px) {
  #situations {
    margin-bottom: 100px;
  }
}
#situations .situations_flex {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  margin-bottom: 160px;
}
@media only screen and (max-width: 1080px) {
  #situations .situations_flex {
    flex-direction: column;
    align-items: center;
  }
}
#situations .situations_flex .situations_flex-box {
  width: 40%;
}
@media only screen and (max-width: 1440px) {
  #situations .situations_flex .situations_flex-box {
    width: 30%;
  }
}
@media only screen and (max-width: 1080px) {
  #situations .situations_flex .situations_flex-box {
    width: 80%;
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 768px) {
  #situations .situations_flex .situations_flex-box {
    text-align: center;
  }
}
#situations .situations_flex .situations_flex-box h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 3rem;
  border-bottom: #496157 solid 2px;
  padding-bottom: 0.2em;
  display: inline-block;
  margin-bottom: 1em;
}
@media only screen and (max-width: 768px) {
  #situations .situations_flex .situations_flex-box h2 {
    font-size: 2rem;
  }
}
#situations .situations_flex .situations_flex-box h3 {
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 2em;
}
@media only screen and (max-width: 768px) {
  #situations .situations_flex .situations_flex-box h3 {
    font-size: 1.25rem;
  }
}
#situations .situations_flex .situations_flex-box p {
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  font-size: 1rem;
  line-height: 1.25rem;
  text-align: justify;
  margin-bottom: 1.5em;
}
@media only screen and (max-width: 768px) {
  #situations .situations_flex .situations_flex-box p {
    font-size: 0.9rem;
  }
}
#situations .situations_flex .situations_flex-box .btn_situations a {
  margin: 3em 0 0 auto;
}
@media only screen and (max-width: 1440px) {
  #situations .situations_flex .situations_flex-box .btn_situations a {
    margin: 3em auto 0;
  }
}
#situations .situations_flex .situations_flex-box .btn_situations p {
  margin: 20px auto;
}
#situations .situations_flex .situations_flex-img img {
  filter: drop-shadow(1px 3px 5px rgb(160, 160, 160));
}
@media only screen and (max-width: 768px) {
  #situations .situations_flex .situations_flex-img img {
    width: 90vw;
  }
}
#situations .situations_flex-reverse {
  flex-direction: row-reverse;
  justify-content: space-around;
}
@media only screen and (max-width: 1080px) {
  #situations .situations_flex-reverse {
    flex-direction: column;
  }
}

/* ---------------------------------------------------------------------
product main
--------------------------------------------------------------------- */
#product {
  margin: 200px auto;
}
@media only screen and (max-width: 768px) {
  #product {
    margin-bottom: 100px;
  }
}
#product .home_product-flex {
  display: grid;
  grid-auto-rows: 1fr;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  gap: 3em 2em;
  margin-bottom: 100px;
}
#product .home_product-flex a {
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  color: #52504F;
}
@media only screen and (max-width: 1080px) {
  #product .home_product-flex a img {
    width: 80%;
  }
}
#product .home_product-flex a:hover {
  opacity: 0.5;
}
#product .home_product-flex a p {
  color: red;
  font-size: 0.9rem;
  margin-bottom: 0.5em;
}
#product .home_product-flex a h5 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  margin-bottom: 0.5em;
}
#product .home_product-flex a small {
  color: rgb(123, 123, 123);
}

/* ---------------------------------------------------------------------
product detail main
--------------------------------------------------------------------- */
#product-detail {
  margin: 200px auto 400px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #product-detail {
    margin-bottom: 200px;
  }
}
#product-detail .product-detail-img {
  margin-bottom: 200px;
}
#product-detail .product-detail-img ul {
  /*画像の横幅を100%にしてレスポンシブ化*/
}
#product-detail .product-detail-img ul img {
  width: 100%;
  height: auto;
  vertical-align: bottom; /*画像の下にできる余白を削除*/
}
#product-detail .product-detail-img p {
  color: red;
  font-size: 0.9rem;
  margin-bottom: 0.5em;
}
#product-detail .product-detail-img h5 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  margin-bottom: 0.5em;
}
#product-detail .product-detail-img small {
  color: rgb(123, 123, 123);
}
#product-detail .product-detail_flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 200px;
}
@media only screen and (max-width: 768px) {
  #product-detail .product-detail_flex {
    flex-direction: column;
    align-items: center;
  }
}
#product-detail .product-detail_flex .product-detail_flex-box {
  width: 60%;
  text-align: left;
}
@media only screen and (max-width: 1080px) {
  #product-detail .product-detail_flex .product-detail_flex-box {
    width: 100%;
    margin-bottom: 80px;
  }
}
#product-detail .product-detail_flex .product-detail_flex-box h1 {
  font-size: 3rem;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  font-weight: 400;
  border-bottom: #496157 solid 2px;
  padding-bottom: 0.3em;
  display: inline-block;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  #product-detail .product-detail_flex .product-detail_flex-box h1 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 428px) {
  #product-detail .product-detail_flex .product-detail_flex-box h1 {
    font-size: 1.75rem;
  }
}
#product-detail .product-detail_flex .product-detail_flex-box p {
  font-size: 1rem;
  line-height: 1.75rem;
  text-align: justify;
}
@media only screen and (max-width: 768px) {
  #product-detail .product-detail_flex .product-detail_flex-box p {
    font-size: 0.9rem;
  }
}
#product-detail .product-detail_flex .product-detail_flex-dl {
  margin-left: 160px;
  width: 40%;
  text-align: left;
}
@media only screen and (max-width: 1080px) {
  #product-detail .product-detail_flex .product-detail_flex-dl {
    width: 100%;
    margin-left: 0;
  }
}
#product-detail .product-detail_flex .product-detail_flex-dl h1 {
  font-size: 3rem;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  font-weight: 400;
  border-bottom: #496157 solid 2px;
  padding-bottom: 0.3em;
  display: inline-block;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  #product-detail .product-detail_flex .product-detail_flex-dl h1 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 428px) {
  #product-detail .product-detail_flex .product-detail_flex-dl h1 {
    font-size: 1.75rem;
  }
}
#product-detail .product-detail_flex .product-detail_flex-dl dl {
  display: flex;
  flex-wrap: wrap;
}
#product-detail .product-detail_flex .product-detail_flex-dl dl dt {
  width: 20%;
  border-bottom: dotted 1px #52504F;
  padding: 10px 0;
}
@media only screen and (max-width: 428px) {
  #product-detail .product-detail_flex .product-detail_flex-dl dl dt {
    width: 40%;
  }
}
@media only screen and (max-width: 768px) {
  #product-detail .product-detail_flex .product-detail_flex-dl dl dt {
    font-size: 0.9rem;
  }
}
#product-detail .product-detail_flex .product-detail_flex-dl dl dd {
  width: 80%;
  border-bottom: dotted 1px #52504F;
  padding: 10px 0;
}
@media only screen and (max-width: 428px) {
  #product-detail .product-detail_flex .product-detail_flex-dl dl dd {
    width: 60%;
  }
}
@media only screen and (max-width: 768px) {
  #product-detail .product-detail_flex .product-detail_flex-dl dl dd {
    font-size: 0.9rem;
  }
}
#product-detail .product-sub-detail_flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 80px;
}
@media only screen and (max-width: 1080px) {
  #product-detail .product-sub-detail_flex {
    flex-direction: column;
    align-items: center;
  }
}
#product-detail .product-sub-detail_flex .product-sub-detail_flex-box {
  width: 25%;
  text-align: center;
}
@media only screen and (max-width: 1080px) {
  #product-detail .product-sub-detail_flex .product-sub-detail_flex-box {
    width: 100%;
    margin-bottom: 160px;
  }
  #product-detail .product-sub-detail_flex .product-sub-detail_flex-box:last-child {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 768px) {
  #product-detail .product-sub-detail_flex .product-sub-detail_flex-box {
    margin-bottom: 80px;
  }
}
#product-detail .product-sub-detail_flex .product-sub-detail_flex-box h2 {
  font-size: 1.5rem;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  font-weight: 400;
  margin-bottom: 2em;
}
#product-detail .product-sub-detail_flex .product-sub-detail_flex-box img {
  width: 40px;
  margin: 0 auto 40px;
}
#product-detail .product-sub-detail_flex .product-sub-detail_flex-box p {
  text-align: left;
  line-height: 1.5em;
  text-align: justify;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1080px) {
  #product-detail .product-sub-detail_flex .product-sub-detail_flex-box p {
    text-align: left;
    padding: 0 10%;
  }
}
@media only screen and (max-width: 768px) {
  #product-detail .product-sub-detail_flex .product-sub-detail_flex-box p {
    font-size: 0.9rem;
  }
}
#product-detail .btn_product a {
  margin: 0 auto;
}

/*メイン画像下に余白をつける*/
.gallery {
  margin: 0 0 0.3em 0;
}

.gallery li {
  list-style: none;
}

/*選択するサムネイル画像の設定*/
.choice-btn li {
  cursor: pointer;
  outline: none;
  background: #FEFEFE;
  width: 100px;
  list-style: none;
  margin-bottom: 3em;
}

.choice-btn li img {
  opacity: 0.4; /*選択されていないものは透過40%*/
}

.choice-btn li.slick-current img {
  opacity: 1; /*選択されているものは透過しない*/
}

.choice-btn .slick-track {
  transform: unset !important; /*画面幅サイズ変更に伴うサムネイル固定*/
}

/* ---------------------------------------------------------------------
product other
--------------------------------------------------------------------- */
#product-other {
  margin-bottom: 200px;
}
@media only screen and (max-width: 768px) {
  #product-other {
    margin-bottom: 100px;
  }
}
#product-other .product-other-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 100px;
}
@media only screen and (max-width: 1080px) {
  #product-other .product-other-flex {
    flex-direction: column;
  }
}
#product-other .product-other-flex a {
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  color: #52504F;
}
@media only screen and (max-width: 1080px) {
  #product-other .product-other-flex a {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 768px) {
  #product-other .product-other-flex a img {
    width: 90vw;
  }
}
#product-other .product-other-flex a:hover {
  opacity: 0.5;
}
#product-other .product-other-flex a p {
  color: red;
  font-size: 0.9rem;
  margin-bottom: 0.5em;
}
#product-other .product-other-flex a h5 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  margin-bottom: 0.5em;
}
#product-other .product-other-flex a small {
  color: rgb(123, 123, 123);
}
#product-other .btn_product a {
  margin: 0 auto;
}

/* ---------------------------------------------------------------------
info company
--------------------------------------------------------------------- */
#company {
  margin: 200px auto 400px;
}
@media only screen and (max-width: 768px) {
  #company {
    font-size: 0.9rem;
  }
}
@media only screen and (max-width: 768px) {
  #company {
    margin-bottom: 200px;
  }
}
#company .company_flex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media only screen and (max-width: 1080px) {
  #company .company_flex {
    flex-direction: column;
    align-items: center;
  }
}
#company .company_flex .company_flex-img {
  margin-right: 4em;
  width: 30%;
}
@media only screen and (max-width: 1080px) {
  #company .company_flex .company_flex-img {
    margin-right: 0;
    margin-bottom: 4em;
    width: 90vw;
  }
}
#company .company_flex .company_flex-img img {
  width: 100%;
  filter: drop-shadow(1px 3px 5px rgb(160, 160, 160));
}
#company .company_flex .company_flex-box {
  width: 50%;
}
@media only screen and (max-width: 1080px) {
  #company .company_flex .company_flex-box {
    width: 90vw;
  }
}
#company .company_flex .company_flex-box dl {
  display: flex;
  flex-wrap: wrap;
}
#company .company_flex .company_flex-box dl dt {
  width: 25%;
  border-bottom: dotted 1px #52504F;
  padding: 1em 0;
}
@media only screen and (max-width: 768px) {
  #company .company_flex .company_flex-box dl dt {
    width: 40%;
  }
}
#company .company_flex .company_flex-box dl dd {
  width: 75%;
  border-bottom: dotted 1px #52504F;
  padding: 1em 0;
}
@media only screen and (max-width: 768px) {
  #company .company_flex .company_flex-box dl dd {
    width: 60%;
  }
}
#company .company_flex .company_flex-box dl dd a {
  font-weight: 600;
  text-decoration: none;
  color: #496157;
}
#company .company_flex .company_flex-box dl dd a:hover {
  opacity: 0.8;
}

/* ---------------------------------------------------------------------
info store
--------------------------------------------------------------------- */
#store {
  margin-bottom: 200px;
}
@media only screen and (max-width: 768px) {
  #store {
    font-size: 0.9rem;
  }
}
@media only screen and (max-width: 768px) {
  #store {
    margin-bottom: 100px;
  }
}
#store .store_flex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 160px;
}
@media only screen and (max-width: 1080px) {
  #store .store_flex {
    flex-direction: column;
    align-items: center;
  }
}
#store .store_flex .store_flex-img {
  margin-right: 3em;
  width: 30%;
}
@media only screen and (max-width: 1080px) {
  #store .store_flex .store_flex-img {
    margin-right: 0;
    margin-bottom: 4em;
    width: 90vw;
  }
}
#store .store_flex .store_flex-img img {
  width: 100%;
  filter: drop-shadow(1px 3px 5px rgb(160, 160, 160));
}
#store .store_flex .store_flex-box {
  width: 50%;
}
@media only screen and (max-width: 1080px) {
  #store .store_flex .store_flex-box {
    width: 90vw;
  }
}
#store .store_flex .store_flex-box dl {
  display: flex;
  flex-wrap: wrap;
}
#store .store_flex .store_flex-box dl dt {
  width: 20%;
  border-bottom: dotted 1px #52504F;
  padding: 10px 0;
}
@media only screen and (max-width: 768px) {
  #store .store_flex .store_flex-box dl dt {
    width: 40%;
  }
}
#store .store_flex .store_flex-box dl dd {
  width: 80%;
  border-bottom: dotted 1px #52504F;
  padding: 10px 0;
}
@media only screen and (max-width: 768px) {
  #store .store_flex .store_flex-box dl dd {
    width: 60%;
  }
}
#store .store_flex .store_flex-box dl dd a {
  font-weight: 600;
  text-decoration: none;
  color: #496157;
}
#store .store_flex .store_flex-box dl dd a:hover {
  opacity: 0.8;
}

/* ---------------------------------------------------------------------
contact
--------------------------------------------------------------------- */
#contact {
  margin: 200px auto;
}
@media only screen and (max-width: 768px) {
  #contact {
    margin-bottom: 100px;
  }
}
#contact a {
  text-align: center;
  text-decoration: none;
}
#contact a:hover {
  opacity: 0.8;
}
#contact a .contact-box {
  background-color: #F6F1ED;
  padding: 100px 120px;
  margin-bottom: 160px;
}
@media only screen and (max-width: 768px) {
  #contact a .contact-box {
    padding: 80px 30px;
    margin-bottom: 80px;
  }
}
#contact a .contact-box h2 {
  color: #52504F;
  font-size: 2rem;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  #contact a .contact-box h2 {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 428px) {
  #contact a .contact-box h2 {
    font-size: 1rem;
  }
}/*# sourceMappingURL=style.css.map */