@charset "utf-8";
/* Box sizing rules */
/* Box sizingの定義 */
*,
*::before,
*::after {
  box-sizing: border-box;
}


/* Remove default padding */
/* デフォルトのpaddingを削除 */
ul[class],
ol[class] {
  padding: 0;
}
ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;

}
/* Remove default margin */
/* デフォルトのmarginを削除 */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
/* bodyのデフォルトを定義 */
body {
  width: 100%;
  font-family: "游ゴシック体", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
  position: relative;
  font-feature-settings: "palt";
  /* background-color: #fff; */
}
body::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("/image/background-image.jpg");
  background-repeat: repeat;
  position: fixed;
  top: 0;
  z-index: -10;
}

/* タイトルフォント */
.ttl-font {
  font-family: "源ノ角ゴシックJP", sans-serif;
}

@font-face {
  font-family: "Gotham";
  src: url("/font/GothamMediumRegular.ttf");
}
@font-face {
  font-family: "Lato";
  src: url("/font/Lato-Bold.ttf");
}

/* Remove list styles on ul, ol elements with a class attribute */
/* class属性を持つul、ol要素のリストスタイルを削除 */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
/* classを持たない要素はデフォルトのスタイルを取得 */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
/* img要素の扱いを簡単にする */
img {
  width: 100%;
  vertical-align: bottom;
}

/* Inherit fonts for inputs and buttons */
/* inputやbuttonなどのフォントは継承を定義 */
input,
button,
textarea,
select {
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
}

/* その他 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
hr {
  margin: 0px;
  padding: 0px;
}
a {
  color: #ffffff;
  outline: none;
  text-decoration: none;
}

.scroll-lock {
  overflow: hidden;
}

/* マルシェフェード切り替え */
.js-fade01 {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.take-out-fade {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.fade-off {
  opacity: 0;
  transition: 2s;
}
.fade-on {
  opacity: 1;
  transition: 2s;
}
.js-fade02 {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* country */
.denmark {
  background-color: #c42828;
  color: #ffffff;
}
.sweden {
  background-color: #1762ba;
  color: #ffd800;
}
.finland {
  background-color: #ffffff;
  color: #1762ba;
  border: 1px solid #1762ba;
  padding: 4px 4px !important;
  margin-right: 5px !important;
}

.top-btn {
  position: fixed;
  bottom: 35px;
  right: 26px;
  width: 50px;
  z-index: 10;
}
.footerLayoutMap {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 10;
}
.footerLayoutMap a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #a0d8ef;
  border-radius: 100%;
  color: #ffffff;
  font-size: 11px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}
/* google font====================== */
.instrument-serif-regular {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: normal;
font-size: 2em;
}

/* PC ================================================== */
@media all and (min-width: 960px) {
  .tablet,
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }

  body {
  }
  h1 {
  }
  h2 {
  }
  h3 {
  }
  h4 {
  }
  h5 {
  }

  .detail-btn {
    display: inline-block;
    margin: 10px 0 0 0;
    background-color: #a9d06b;
    border-radius: 25px;
    transition: all 0.5s;
  }
  .detail-btn a {
    display: block !important;
    width: 100%;
    height: 100%;
    padding: 10px 35px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.075em;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
  }
  .detail-btn a::after {
    content: ">";
    margin-left: 10px;
  }
  .detail-btn a:hover {
    opacity: 0.8;
    transition: all 0.5s;
  }

  .must-apply {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .must-apply::after {
    content: "要申込み";
    display: inline-block;
    padding: 4px 4px;
    margin-left: 10px;
    background-color: #d02d2d;
    color: #ffffff;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.04em;
  }

	.beerTitle {
		max-width: 80%;
		text-align: center;
		margin: 0 auto;
	}
  /* ヘッダー */
  .header {
    width: 100%;
    height: 100px;
    position: fixed;
    top: 0;
    z-index: 50;
  }
  .header.header-detail {
    width: 15%;
  }
  .header-inner {
    width: 100%;
    height: 100%;
    padding: 40px 36px;
  }
	 .logo-area {
    display: flex;
	justify-content: space-between;
    align-items: center;
  }
  .logo {
    width: 94px;
  }
  .thanks {
    font-size: 14px;
    color: #a9d06b;
    line-height: 1.7;
    margin-left: 20px;
  }
.stamp {
	max-width: 80px;
}
  /* フッター */
  footer {
    width: 100%;
    padding: 30px 0;
  }
  .footer-inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
  }
  .footer-ttl-unit {
    width: 600px;
  }
  .copyright {
    font-size: 12px;
    margin: 40px 0 0;
    text-align: center
  }
  .pic-footer-image {
    width: 135px;
    position: absolute;
    bottom: 0;
    right: 0;
  }

  
.pc-only {
  display: block;
}

/* google font====================== */
.instrument-serif-regular {
font-size: 2em;
}
	
}

/* Tablet ================================================== */
@media all and (min-width: 560px) and (max-width: 959px) {
  .pc,
  .sp {
    display: none;
  }
  .tablet {
    display: block;
  }

  body {
  }

  h1 {
  }
  h2 {
  }
  h3 {
  }
  h4 {
  }
  h5 {
  }
  .detail-btn {
    height: 40px;
    margin: 30px 0 0;
  }
  .detail-btn a {
    width: 380px;
    height: 100%;
    background-color: #a9d06b;
    border-radius: 18px;
    padding: 10px 35px;
    margin: 15px auto;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.03em;
    color: #ffffff;
    letter-spacing: 0.15em;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
  }
  .detail-btn a::after {
    content: ">";
    margin-left: 10px;
  }
  .detail-btn a:hover {
    opacity: 0.8;
    transition: all 0.5s;
  }

  .must-apply {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .must-apply::after {
    content: "要申込み";
    display: inline-block;
    padding: 4px 4px;
    margin-left: 10px;
    background-color: #d02d2d;
    color: #ffffff;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.04em;
  }

  /* ヘッダー */
  .header {
    width: 100%;
    height: 100px;
    position: fixed;
    top: 0;
    z-index: 15;
  }
  .header.header-detail {
    width: 20%;
  }
  .header-inner {
    width: 100%;
    height: 100%;
    padding: 40px 20px;
    align-items: center;
  }
  .logo-area {
    display: flex;
	justify-content: space-between;
    align-items: center;
  }
	

  .logo {
    width: 70px;
  }
	.stamp {
	max-width: 60px;
}

  .thanks {
    text-align: center;
    font-size: 14px;
    color: #a9d06b;
    line-height: 1.7;
    margin: 20px 0 30px;
  }
  .header-second-ani-image {
    width: 40px;
    margin-left: 10px;
  }

  /* ハンバーガー */
  .header-hamburger {
    width: 50px;
    height: 50px;
    z-index: 30;
  }
  .hbg_btn {
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    outline: none;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  .open .hbg_btn-line {
    width: 40px;
    height: 1px;
    background-color: #000000;
    position: relative;
    transition: all 0.3s;
  }

  .open .hbg_btn-line::before,
  .open .hbg_btn-line::after {
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #000000;
    position: absolute;
    transition: all 0.3s;
  }
  .open .hbg_btn-line::before {
    top: -14px;
  }
  .open .hbg_btn-line::after {
    bottom: -14px;
  }

  /* openナビメニュー */
  .global-nav {
    display: none;
    width: 100%;
    height: 100vh;
    margin: auto auto;
    background-color: #ffffff;
    background-size: cover;
    background-position: 46% 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    overflow: scroll;
  }
  .global-nav-contents {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .nav-contents {
  }
  .global-nav-contents li {
    margin-bottom: 35px;
    font-weight: bold;
  }
  .global-nav-contents a {
    color: #000000;
    font-size: 20px;
  }

  .gnav-sns-block {
    width: 227px;
    margin: 40px auto 0;
  }
  .gnav-sns-block ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .gnav-sns-block li {
    width: 33px;
  }

  .hbg_btn.close {
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    outline: none;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
  }
  .close .hbg_btn-line {
    width: 25px;
    height: 1px;
    position: relative;
    background-color: #000;
    visibility: hidden;
    transition: all 0.3s;
  }
  .close .hbg_btn-line::before,
  .close .hbg_btn-line::after {
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #000;
    position: absolute;
    left: 50%;
    visibility: visible;
    transition: all 0.3s;
  }
  .close .hbg_btn-line::before {
    top: 0;
    transform: translate(-50%, -50%) rotate(-45deg);
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  }
  .close .hbg_btn-line::after {
    bottom: 0;
    transform: translate(-50%, -50%) rotate(45deg);
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
  }

  /* フッター */
  footer {
    width: 100%;
    padding: 30px 0;
  }
  .footer-inner {
    width: 88%;
    margin: 0 auto;
    position: relative;
  }
  .footer-ttl-unit {
    width: 60%;
  }
  .copyright {
    font-size: 10px;
    margin: 30px auto 0;
    text-align: center
  }
  .pic-footer-image {
    display: none;
  }

  .pc-only {
    display: none;
  }
}

/* SP ================================================== */
@media all and (max-width: 559px) {
  .pc,
  .tablet {
    display: none;
  }
  .sp {
    display: block;
  }
  body {
  }
  h1 {
  }
  h2 {
  }
  h3 {
  }
  h4 {
  }
  h5 {
  }

  .detail-btn {
    display: inline-block;
    margin-left: 65px;
    background-color: #a9d06b;
    border-radius: 26px;
    transition: all 0.5s;
  }
  .workshop-btn {
    display: block;
    width: 80%;
    margin: 30px auto;
  }
  .detail-btn a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 10px 35px;
    font-size: 14px;
    color: #ffffff;
    font-weight: bold;
    letter-spacing: 0.01em;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
  }
  .detail-btn a::after {
    content: ">";
    margin-left: 10px;
  }
  .detail-btn a:hover {
    opacity: 0.8;
    transition: all 0.5s;
  }

  .must-apply {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .must-apply::after {
    content: "要申込み";
    display: inline-block;
    padding: 4px 3px;
    margin-left: 10px;
    background-color: #d02d2d;
    color: #ffffff;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.04em;
  }

  /* ヘッダー */
  .header {
    width: 100%;
    height: 100px;
    position: fixed;
    top: 0;
    z-index: 15;
  }
  .header.header-detail {
    width: 20%;
  }
  .header-inner {
    width: 100%;
    height: 100%;
    padding: 40px 20px;

    align-items: center;
  }
  .logo-area {
       display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .logo {
    width: 70px;
  }
	.stamp {
	max-width: 60px;
}

  .thanks {
    text-align: center;
    font-size: 14px;
    color: #a9d06b;
    line-height: 1.7;
    margin: 20px 0 30px;
  }

  .header-second-ani-image {
    width: 40px;
    margin-left: 10px;
  }

  /* ハンバーガー */
  .header-hamburger {
    width: 50px;
    height: 50px;
    z-index: 30;
  }
  .hbg_btn {
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    outline: none;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  .open .hbg_btn-line {
    width: 40px;
    height: 1px;
    background-color: #000000;
    position: relative;
    transition: all 0.3s;
  }

  .open .hbg_btn-line::before,
  .open .hbg_btn-line::after {
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #000000;
    position: absolute;
    transition: all 0.3s;
  }
  .open .hbg_btn-line::before {
    top: -14px;
  }
  .open .hbg_btn-line::after {
    bottom: -14px;
  }

  /* openナビメニュー */
  .global-nav {
    display: none;
    width: 100%;
    height: 100vh;
    margin: auto auto;
    background-color: #ffffff;
    background-size: cover;
    background-position: 46% 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    overflow: scroll;
  }
  .global-nav-contents {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .nav-contents {
    text-align: center;
  }
  .global-nav-contents li {
    margin-bottom: 35px;
    font-weight: bold;
  }
  .global-nav-contents a {
    color: #000000;
    font-size: 16px;
  }

  .gnav-sns-block {
    width: 150px;
    margin: 40px auto 0;
  }
  .gnav-sns-block ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .gnav-sns-block li {
    width: 33px;
  }

  .hbg_btn.close {
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    outline: none;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
  }
  .close .hbg_btn-line {
    width: 25px;
    height: 1px;
    position: relative;
    background-color: #000;
    visibility: hidden;
    transition: all 0.3s;
  }
  .close .hbg_btn-line::before,
  .close .hbg_btn-line::after {
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #000;
    position: absolute;
    left: 50%;
    visibility: visible;
    transition: all 0.3s;
  }
  .close .hbg_btn-line::before {
    top: 0;
    transform: translate(-50%, -50%) rotate(-45deg);
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  }
  .close .hbg_btn-line::after {
    bottom: 0;
    transform: translate(-50%, -50%) rotate(45deg);
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
  }

  /* フッター */
  footer {
    width: 100%;
    padding: 0 0 30px;
  }
  .footer-inner {
    width: 88%;
    margin: 0 auto;
    position: relative;
  }
  .footer-ttl-unit {
    width: 80%;
  }
  .copyright {
    font-size: 10px;
    margin: 30px auto 0;
    text-align: center
  }
  .pic-footer-image {
    display: none;
  }

  .pc-only {
    display: none;
  }
    .sp-only {
    display: block;
  }
/* google font====================== */
.instrument-serif-regular {
font-size: 1.3em;
}
}
