@charset "UTF-8";

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  color: #4d4948;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #fefcf0;
}

a {
  color: #4d4948;
  text-decoration: none;
  transition: all 0.3s;
}

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

ul {
  list-style: none;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

.sp__only {
  display: none;
}

/* ===========================================
共通
=========================================== */
.container {
  max-width: 1160px;
  margin: 0 auto;
}

/*タイトル*/
.section-title {
  font-size: 40px;
  font-weight: 500;
  line-height: calc(50 / 40);
  font-family: 'Noto Serif JP', serif;
  position: relative;
  display: inline-block;
  padding: 0 48px;
}

.section-title span {
  display: inline-block;
  font-size: 16px;
  line-height: calc(22 / 16);
  border-top: solid 1px #4d4948;
  border-bottom: solid 1px #4d4948;
  padding: 10px 15px;
  line-height: 1;
}

.section-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: auto;
  aspect-ratio: 40 / 60;
  background: url(../../assets/images/parts_head_1.png) no-repeat center / contain;
}

.section-title::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: auto;
  aspect-ratio: 40 / 60;
  background: url(../../assets/images/parts_head_2.png) no-repeat center / contain;
}

/*日付*/
.date {
  text-align: center;
  font-size: 14px;
  white-space: nowrap;
}

.date .blue {
  color: #3771b8;
}

.date .red {
  color: #c74d79;
}

.date .bg-blue {
  background: #3771b8;
  color: #ffffff;
}

.date .bg-red {
  background: #c74d79;
  color: #ffffff;
}

.date .bg-gray {
  background: #4d4948;
  color: #e8ce46;
}

.date .num {
  font-size: 20px;
  font-weight: 700;
}

.date .circle {
  display: inline-block;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  border-radius: 50%;
  padding: 5px 5px 6px 5px;
  vertical-align: text-bottom;
  margin: 0 3px;
}

/* ===========================================
header
=========================================== */
.header {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}

.header__inner {
  display: flex;
  justify-content: flex-end;
}

.header__inner a {
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 20px;
  display: inline-block;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__inner a.lang__jp {
  background-color: #4d4948;
  border: solid 2px #4d4948;
  color: #ffffff;
}

.header__inner a.lang__en {
  background-color: #c74d79;
  border: solid 2px #c74d79;
  color: #ffffff;
}

.header__inner a.lang__jp:hover {
  background-color: #ffffff;
  color: #4d4948;
}

.header__inner a.lang__en:hover {
  background-color: #ffffff;
  color: #c74d79;
}

/* ===========================================
footer
=========================================== */
.footer {
  background-color: #4d4948;
  color: #ffffff;
  font-weight: 400;
  text-align: center;
  padding: 35px 0 25px;
}

.footer p {
  font-size: 14px;
  line-height: calc(24 / 14);
}

.footer p.copyright {
  font-size: 12px;
  line-height: calc(24 / 12);
  margin-top: 8px;
}

/* ===========================================
mainvisual
=========================================== */
.mainvisual {
  width: 100%;
  height: auto;
}

.mainvisual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 1360 / 760;
}

/* ===========================================
about
=========================================== */
.about {
  text-align: center;
  /* padding: 92px 0 115px; */
  padding: 92px 0 270px;
  position: relative;
}

.about__wrapper {
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
}

.about__wrapper p {
  font-size: 18px;
  line-height: calc(34 / 18);
  margin-top: 24px;
}

.about__wrapper p:first-of-type {
  margin-top: 0;
}

.about__wrapper p.about__attention {
  font-size: 13px;
  line-height: calc(30 / 13);
  margin: 13.5px 0 41.5px;
}

.about p span.en {
  font-family: 'Alegreya Sans', sans-serif;
  display: inline-block;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 0.05em;
  position: relative;
  line-height: 1;
  margin: 5px 0 10px;
}

.about p span.en:nth-of-type(2) {
  padding-left: 10px;
  margin-right: 10px;
}

.about p span.en::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: #e9ad04;
  z-index: -1;
}

.about__wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  width: 258px;
  height: auto;
  aspect-ratio: 516 / 1076;
  background: url(../../assets/images/pic_about_1.png) no-repeat center / contain;
  z-index: -2;
}

.about__wrapper::after {
  content: "";
  position: absolute;
  top: 27%;
  right: 10px;
  width: 303px;
  height: auto;
  aspect-ratio: 606 / 1112;
  background: url(../../assets/images/pic_about_2.png) no-repeat center / contain;
  z-index: -2;
}

/*バナー*/
.banner {
  width: 540px;
  height: 260px;
  background: url(../../assets/images/bg_beer_1.png) no-repeat center bottom / contain;
  margin: 0 auto;
  padding: 40px 70px 0;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  white-space: nowrap;
  box-shadow: 0 5px 10px #e3d4be;
}

.banner::before {
  content: "参加費\A無料";
  position: absolute;
  top: -10px;
  left: 40px;
  width: 90px;
  height: 90px;
  background: url(../../assets/images/parts_about_3.png) no-repeat center / contain;
  white-space: pre;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  line-height: calc(20 / 16);
}

.banner__text {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 20px;
  padding: 0 30px;
  position: relative;
}

.banner__text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 21px;
  height: 30px;
  background: url(../../assets/images/parts_about_1.png) no-repeat center / contain;
}

.banner__text::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 30px;
  background: url(../../assets/images/parts_about_2.png) no-repeat center / contain;
}

.banner .ribbon1 {
  position: relative;
  color: #ffffff;
  z-index: 1;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  margin: 15px 0 45px;
}

.banner .ribbon1::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 85px;
  background: url(../../assets/images/parts_ribbon_1.png) no-repeat center / contain;
  z-index: -1;
}

.banner img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 400 / 85;
}

.banner a {
  background-color: #ffffff;
  border: solid 2px #4d4948;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  width: 300px;
  height: 67px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 0;
  position: relative;
}

.banner a::after {
  content: "\f107";
  color: #ffffff;
  font-size: 11px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  line-height: 22px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background-color: #4d4948;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner a:hover {
  background-color: #4d4948;
  color: #ffffff;
}

.banner a:hover::after {
  background-color: #ffffff;
  color: #4d4948;
}

/* ===========================================
brewery
=========================================== */
.brewery {
  background-color: #e9ad04;
  padding: 156px 40px 150px;
  position: relative;
}

.brewery::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 10%;
  width: 485px;
  height: auto;
  aspect-ratio: 965 / 211;
  background: url(../../assets/images/bg_brewery_1.png) no-repeat center / contain;
}

.brewery__wrapper {
  background-color: #ffffff;
  padding: 100px 80px;
  border-radius: 30px;
  text-align: center;
}

.brewery__list {
  text-align: left;
}

.brewery__list li {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}

.brewery__list li.reverse {
  flex-direction: row-reverse;
}

.brewery__container {
  width: 48%;
}

.brewery__textbox h3 {
  font-size: 26px;
  font-weight: 500;
  font-family: 'Noto Serif JP', serif;
  line-height: calc(50 / 26);
  padding-bottom: 5px;
  border-bottom: solid 3px #4d4948;
}

.brewery__location {
  font-size: 14px;
  line-height: calc(28 / 14);
  border-bottom: solid 1px #4d4948;
  padding: 5px;
  margin-bottom: 14px;
}

.brewery__desc {
  line-height: calc(28 / 16);
  margin-bottom: 50px;
}

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

.brewery__recommend-image {
  width: 170px;
  position: relative;
  z-index: 1;
  margin: 0 10px 0 35px;
}

.brewery__recommend-image::before {
  content: "";
  position: absolute;
  top: -15px;
  right: -107px;
  width: 72px;
  height: auto;
  aspect-ratio: 144 /104;
  background: url(../../assets/images/parts_brewery_1.png) no-repeat center / contain;
}
.brewery__recommend-image::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 240px;
  height: 240px;
  background-color: #e8ce46;
  border-radius: 50%;
  z-index: -1;
}

.brewery__recommend-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 240 / 240;
}

.brewery__recommend-image p {
  font-family: 'Noto Serif JP', serif;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  white-space: nowrap;
  letter-spacing: 0;
}

.brewery__recommend-textbox {
  width: 230px;
  letter-spacing: 0;
  position: relative;
  z-index: 1;
  margin-bottom: -35px;
}

.brewery__recommend-textbox h4 {
  font-size: 18px;
  font-weight: 500;
  font-family: 'Noto Serif JP', serif;
  line-height: calc(22 / 18);
  color: #ffffff;
  background-color: #4d4948;
  padding: 10px;
  margin-bottom: 10px;
}

.brewery__recommend-textbox p {
  font-size: 14px;
  line-height: calc(22 / 14);
}

.brewery__image {
  width: 47%;
}

.brewery__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 470 / 430;
}

.brewery__list li:last-of-type .brewery__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 470 / 350;
}
.brewery__list li:last-of-type .brewery__image img + img {
  margin-top: 10px;
}
.brewery__list li:last-of-type .brewery__desc + h3 {
  margin-top: -30px;
}

/* ===========================================
summary
=========================================== */
.summary {
  padding: 100px 40px 120px;
  text-align: center;
}

.summary .section-title {
  margin-bottom: 120px;
}

.summary__wrapper {
  /* display: flex;
  justify-content: space-between; */
}

.summary__container {
  width: 100%;
  /* width: 48%; */
  background-color: #ffffff;
  border: solid 2px #4d4948;
  border-radius: 20px;
  padding: 0 40px 50px;
  text-align: left;
}

.summary__container + .summary__container {
  margin-top: 130px;
}

.summary__container h3 {
  margin: -60px auto 30px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
  position: relative;
  z-index: 1;
  text-align: center;
}

.summary__container h3 span.small {
  font-size: 18px;
}

.summary__container h3 span.large {
  font-size: 26px;
}

.summary__container h3::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 475px;
  height: 124px;
  background: url(../../assets/images/parts_ribbon_2.png) no-repeat center / contain;
  z-index: -1;
}

.summary .date {
  position: relative;
  margin-bottom: 60px;
}

.summary .date::after {
  content: "";
  position: absolute;
  bottom: -38px;
  left: 50%;
  transform: translateX(-50%);
  width: 113px;
  height: 23px;
  background: url(../../assets/images/parts_summary_1.png) no-repeat center / contain;
}

.summary__desc {
  line-height: calc(28 / 16);
  margin-bottom: 30px;
  text-align: center;
}

.summary dl {
  display: flex;
  justify-content: space-between;
  padding-bottom: 15px;
  position: relative;
}

.summary dl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 40px;
  width: 2px;
  height: 100%;
  border-left: dotted 2px #e8ce46;
}

.summary dl:last-of-type {
  padding-bottom: 0;
}

.summary dl:last-of-type::after {
  display: none;
}

.summary dl dt {
  width: 80px;
  height: 80px;
  background: url(../../assets/images/parts_summary_2.png) no-repeat center / contain;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  flex-shrink: 0;
}

.summary dl dt.hidden {
  opacity: 0;
  visibility: hidden;
}

.summary dl dd {
  display: flex;
  width: calc(100% - 106px);
  font-size: 15px;
  line-height: calc(25 / 15);
  margin-top: 15px;
}

.summary dl dd .summary__image {
  width: 45%;
  margin-right: 20px;
}

.summary dl dd span {
  font-weight: 700;
}

.summary dl dd img {
  width: 100%;
  height: auto;
}

.summary dl dd ul li + li {
  margin-top: 20px;
}


/* ===========================================
requirements
=========================================== */
.requirements {
  background-color: #00608c;
  padding: 100px 0 80px;
  text-align: center;
}

.requirements .section-title {
  color: #ffffff;
  margin-bottom: 70px;
}

.requirements dl {
  display: flex;
  justify-content: space-between;
  text-align: left;
  max-width: 745px;
  margin: 0 auto 4px;
}

.requirements dl dt {
  width: 175px;
  color: #ffffff;
  background-color: #4d4948;
  border-radius: 20px 0 0 20px;
  padding: 30px 35px;
  font-weight: 700;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.requirements dl dd {
  width: calc(100% - 179px);
  background-color: #ffffff;
  border-radius: 0 20px 20px 0;
  padding: 30px 35px;
  line-height: calc(28 / 16);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.requirements dl dd ul li {
  padding-left: 15px;
  position: relative;
}

.requirements dl dd ul li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #e8ce46;
  border-radius: 50%;
}

/* ===========================================
application
=========================================== */
.application {
  margin-top: -2px;
  background-color: #00608c;
  padding-bottom: 150px;
  text-align: center;
}

.application__wrapper {
  max-width: 745px;
  margin: 0 auto;
  border-radius: 20px;
  background-color: #ffffff;
  position: relative;
  padding-bottom: 55px;
}

.application__wrapper::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -140px;
  width: 252px;
  height: auto;
  aspect-ratio: 504 / 750;
  background: url(../../assets/images/pic_application_1.png) no-repeat center / contain;
  z-index: 1;
}

.application__wrapper::after {
  content: "";
  position: absolute;
  bottom: 7px;
  right: -130px;
  width: 242px;
  height: auto;
  aspect-ratio: 484 / 778;
  background: url(../../assets/images/pic_application_2.png) no-repeat center / contain;
  z-index: 1;
}

.application .section-title::before,
.application .section-title::after {
  display: none;
}

.application .section-title {
  display: block;
  background: url(../../assets/images/bg_beer_2.png) no-repeat center / cover;
  width: 100%;
  height: auto;
  aspect-ratio: 730 / 96;
  display: flex;
  align-items: center;
  justify-content: center;
}

.application__period {
  width: 100%;
  background: url(../../assets/images/bg_application_1.jpg) no-repeat center / cover;
  padding: 15px 0;
}

.application__period span {
  font-size: 14px;
  color: #ffffff;
  background-color: #4d4948;
  border-radius: 5px;
  padding: 5px 10px;
  margin-right: 8px;
}

.application__period span:last-of-type {
  margin-left: 16px;
}

.application__text {
  line-height: calc(22 / 16);
  margin: 40px 0 30px;
}

.application__buttonWrapper {
  margin-top: 50px;
}

.application__button {
  background-color: #d4c441;
  border: solid 2px #d4c441;
  border-radius: 10px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  width: 400px;
  height: 89px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  color: #ffffff;
  margin-bottom: 25px;
  padding-right: 30px;
}

.application__button::after {
  content: "\f105";
  color: #d4c441;
  font-size: 15px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.application__button:hover {
  background-color: #ffffff;
  color: #d4c441;
}

.application__button:hover::after {
  background-color: #d4c441;
  color: #ffffff;
}

.application__attention {
  font-size: 14px;
  font-weight: 400;
  line-height: calc(24 / 14);
}

/* ===========================================
英語ページ
=========================================== */
body.page__en .date {
  font-weight: 700;
}

body.page__en .about__textbox{
  max-width: 55%;
  margin: 0 auto;
}

body.page__en .requirements dl dt,
body.page__en .requirements dl dd {
  padding: 30px 25px;
  line-height: 1.3;
}

body.page__en .application__button {
  width: 420px;
}

body.page__en .application__wrapper::after {
  bottom: 15%;
}

body.page__en .banner {
  margin: 70px auto 0;
  padding: 75px 35px 0;
}

body.page__en .banner::before {
  content: "Participation \A Fee: Free";
  font-size: 12px;
  letter-spacing: 0;
  width: 100px;
  height: 100px;
  top: -40px;
  z-index: 2;
}

body.page__en .banner .ribbon2 {
  position: relative;
  color: #ffffff;
  z-index: 1;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
  margin: 0 0 55px;
}

body.page__en .banner .ribbon2::before {
  content: "";
  position: absolute;
  top: -42%;
  left: 0;
  width: 475px;
  height: 124px;
  background: url(../../assets/images/parts_ribbon_2.png) no-repeat center / contain;
  z-index: -1;
}

body.page__en .banner a {
  font-size: 14px;
  width: 400px;
}

body.page__en .summary__container h3 {
  margin-bottom: 50px;
}

body.page__en .summary__container h3 span {
  font-size: 20px;
}

body.page__en .summary__container h3::before {
  top: -15px;
}

body.page__en .requirements dl dd ul li::before {
  top: 8px;
}

body.page__en .application__button {
  font-size: 25px;
}

@media screen and (max-width: 1280px) {
.about__wrapper::before {
  width: 15%;
  top: -15%;
  left: 20px;
}
.about__wrapper::after {
  width: 18%;
  top: 70%;
  right: 20px;
}
/* ===========================================
英語のページ
=========================================== */
body.page__en .about__wrapper::before {
  top: -5%;
}
}

@media screen and (max-width: 1200px) {
/* ===========================================
brewery
=========================================== */
.brewery__wrapper {
  padding: 100px 40px;
}
.brewery__container {
  width: 55%;
}
.brewery__image {
  width: 40%;
}
.brewery__image img{
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.brewery__list li:last-of-type .brewery__image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.brewery__recommend-image {
  width: 150px;
  margin: 0 0 0 30px;
}

.brewery__recommend-image::after {
  width: 210px;
  height: 210px;
}

.brewery__recommend-textbox {
  width: calc(100% - 230px);
  margin-bottom: -30px;
}

/* ===========================================
summary
=========================================== */
.summary__container h3 span.small {
  font-size: 16px;
}

.summary__container h3 span.large {
  font-size: 22px;
}

.summary__container h3::before {
  top: -5px;
  width: 404px;
  height: 105px;
}

/* ===========================================
application
=========================================== */
.application__wrapper::before {
  top: 0;
  left: -50px;
  width: 200px;
}
.application__wrapper::after {
  bottom: 7px;
  right: -50px;
  width: 150px;
}

/* ===========================================
英語ページ
=========================================== */
body.page__en .summary__container h3::before {
  top: -10px;
}
body.page__en .about__textbox {
  max-width: 60%;
}
}

@media screen and (max-width: 1000px) {
.about__wrapper::before {
  width: 12%;
  left: 10px;
}
.about__wrapper::after {
  width: 14%;
  top: 85%;
  right: 10px;
}
/* ===========================================
英語ページ
=========================================== */
body.page__en .about__textbox {
  max-width: 65%;
}
}

@media screen and (max-width: 900px) {
/* ===========================================
brewery
=========================================== */
.brewery {
  padding: 100px 40px;
}

.brewery::after {
  left: 15px;
  width: 40%;
  min-width: 157px;
}

.brewery__wrapper {
  padding: 100px 40px;
}

.brewery__list li,
.brewery__list li.reverse {
  flex-direction: column-reverse;
  margin-top: 35px;
}

.brewery__container,
.brewery__image {
  width: 100%;
}

.brewery__image img {
  height: 450px;
  object-fit: cover;
}

.brewery__list li:last-of-type .brewery__image img {
  height: 400px;
  object-fit: cover;
}

.brewery__textbox h3 {
  font-size: 22px;
  line-height: calc(30 / 22);
  padding: 16px 0 10px;
}

.brewery__location {
  font-size: 12px;
  padding: 4px 0;
  margin-bottom: 10px;
}

.brewery__desc {
  line-height: calc(23 / 14);
  margin-bottom: 50px;
}

.brewery__list li:last-of-type .brewery__image img + img {
  margin-top: 5px;
}

.brewery__list li:last-of-type .brewery__desc + h3 {
  margin-top: -45px;
}

.brewery__recommend {
  margin-bottom: 60px;
}

.brewery__recommend-image {
  width: 170px;
  margin: 0 0 0 35px;
}

.brewery__recommend-image::after {
  width: 240px;
  height: 240px;
}

.brewery__recommend-textbox {
  width: calc(100% - 260px);
  margin-bottom: -35px;
}

/* ===========================================
summary
=========================================== */
.summary {
  padding: 100px 40px 120px;
}
.summary__wrapper {
  flex-direction: column;
}

.summary__container {
  width: 100%;
  padding: 0 40px 40px;
}

.summary__container + .summary__container {
  margin-top: 90px;
}

.summary__container h3 span.small {
  font-size: 18px;
}

.summary__container h3 span.large {
  font-size: 26px;
}

.summary__container h3::before {
  top: -9px;
  width: 475px;
  height: 124px;
}

/* ===========================================
application
=========================================== */
.application__wrapper::before {
  width: 110px;
  top: -42px;
  left: 0;
}

.application__wrapper::after {
  width: 110px;
  top: -44px;
  bottom: initial;
  right: 0;
}

/* ===========================================
英語ページ
=========================================== */
body.page__en .summary__container h3::before {
  top: -15px;
}
}

@media screen and (max-width: 768px) {
body {
  font-size: 14px;
}

.sp__only {
  display: inline-block;
}

.pc__only {
  display: none;
}
/* ===========================================
共通
=========================================== */
/*タイトル*/
.section-title {
  font-size: 28px;
  line-height: calc(38 / 28);
  padding: 0 32px;
}

.section-title span {
  font-size: 14px;
  line-height: calc(22 / 14);
  padding: 8px 15px;
  margin-top: 15px;
}

.section-title::before,
.section-title::after {
  top: initial;
  bottom: 0;
  width: 32px;
}

/* ===========================================
header
=========================================== */
.header__inner a {
  font-size: 15px;
  width: 70px;
  height: 70px;
}

/* ===========================================
footer
=========================================== */
.footer {
  padding: 22px 15px 12px;
}

.footer p {
  font-size: 10px;
  line-height: calc(15 / 9);
}

.footer p.copyright {
  font-size: 9px;
  line-height: calc(24 / 8);
  margin-top: 0;
}

/* ===========================================
mainvisual
=========================================== */
.mainvisual img {
  aspect-ratio: 375 / 706;
}

/* ===========================================
about
=========================================== */
.about {
  padding: 50px 15px 90px;
}

.about p img {
  width: 100%;
}

.about__wrapper p {
  font-size: 16px;
  line-height: calc(28 / 16);
}

.about__wrapper p.about__attention {
  font-size: 10px;
  line-height: calc(26 / 9);
  margin: 6px 0 52px;
}

.about__wrapper::before {
  top: 15%;
  left: 0;
}
.about__wrapper::after {
  top: initial;
  bottom: -10%;
  right: 0;
}

.about p span.en {
  font-size: 38px;
  margin: 0 0 5px;
}

.about p span.en:first-of-type {
  margin: 5px 0 0;
}

.about p span.en:nth-of-type(2) {
  padding-left: 0;
}

/*バナー*/
.banner {
  width: 345px;
  height: 226px;
  background: url(../../assets/images/bg_beer_3.png) no-repeat center bottom / contain;
  padding: 40px 15px 0;
}

.banner::before {
  top: -30px;
  left: 15px;
  width: 74px;
  height: 74px;
  font-weight: 700;
  line-height: calc(18 / 14);
}

.banner__text {
  font-size: 16px;
  margin: 0 0 15px;
  padding: 0 22px;
}

.banner__text::before,
.banner__text::after {
  width: 17px;
  height: 24px;
}

.banner .ribbon1 {
  font-size: 24px;
  margin: 15px 0 30px;
}

.banner .ribbon1::before {
  width: 315px;
  height: 67px;
}

.banner a {
  font-size: 16px;
  height: 60px;
  margin: 30px auto 0;
}

.banner a::after {
  width: 20px;
  height: 20px;
  font-size: 10px;
}

.banner .date {
  font-size: 11px;
}

.banner .date .num {
  font-size: 16px;
}

.banner .date .circle {
  font-size: 10px;
  padding: 4px 4px 5px 4px;
}

/* ===========================================
brewery
=========================================== */
.brewery {
  padding: 100px 15px;
}

.brewery__wrapper {
  padding: 50px 15px 40px;
}

.brewery__image img,
.brewery__list li:last-of-type .brewery__image img {
  width: 100%;
  height: auto;
  object-fit: initial;
}

/* ===========================================
summary
=========================================== */
.summary {
  padding: 50px 15px 60px;
}

.summary .section-title {
  margin-bottom: 100px;
}

.summary .section-title::before,
.summary .section-title::after {
  bottom: 45%;
}

.summary__container {
  padding: 0 15px 40px;
}

.summary__container h3 {
  margin: -9% auto 30px;
  text-align: center;
}

.summary__container h3 span.small {
  font-size: 16px;
}

.summary__container h3 span.large {
  font-size: 22px;
}

.summary__container h3::before {
  top: -8px;
  width: 404px;
  height: 105px;
}

.summary .date {
  margin-bottom: 55px;
}

.summary__desc {
  line-height: calc(23 / 14);
  margin-bottom: 25px;
  text-align: left;
}

.summary dl {
  padding-bottom: 20px;
}

.summary dl dt {
  width: 76px;
  height: 76px;
  font-size: 16px;
}

.summary dl dd {
  flex-direction: column;
  width: calc(100% - 86px);
  font-size: 14px;
  line-height: calc(21 / 14);
  margin-top: 10px;
}

.summary dl dd .summary__image {
  width: 100%;
  margin-bottom: 10px;
}

.summary dl dd ul li + li {
  margin-top: 13px;
}

/* ===========================================
requirements
=========================================== */
.requirements {
  padding: 60px 15px 80px;
}

.requirements .section-title {
  margin-bottom: 40px;
}

.requirements .section-title::before,
.requirements .section-title::after {
  bottom: -20%;
}

.requirements dl {
  flex-direction: column;
}

.requirements dl dt {
  width: 100%;
  border-radius: 20px 20px 0 0;
  padding: 15px;
  align-items: center;
}

.requirements dl dd {
  width: 100%;
  padding: 20px 15px;
  border-radius: 0 0 20px 20px;
  line-height: calc(21 / 14);
}

.requirements dl dd ul li::before {
  top: 8px;
}

/* ===========================================
application
=========================================== */
.application {
  padding: 0 15px 100px;
}

.application__wrapper::before {
  width: 83px;
  top: -42px;
  left: 30px;
}

.application__wrapper::after {
  width: 81px;
  top: -44px;
  bottom: initial;
  right: 30px;
}

/*
.application__wrapper::before {
  width: 83px;
  top: -42px;
  left: 30px;
}

.application__wrapper::after {
  width: 81px;
  top: -44px;
  bottom: initial;
  right: 30px;
}

.application .section-title {
  background: url(../../assets/images/bg_beer_4.png) no-repeat center / contain;
  aspect-ratio: 345 / 76;
}

.application__period {
  padding: 12px 5px;
}

.application__period span {
  font-size: 10px;
  padding: 5px 6px;
}

.application__period span:last-of-type {
  margin-left: 10px;
}

.application__attention {
  padding: 0 15px;
} */
/* ===========================================
英語ページ
=========================================== */
body.page__en .about__wrapper::before {
  top: 15%;
}
body.page__en .about p span.en {
  font-size: 30px;
}
body.page__en .banner {
  padding: 40px 15px 0;
}
body.page__en .banner .ribbon2 {
  font-size: 14px;
  margin: 35px 0 30px;
}
body.page__en .banner .ribbon2::before {
  top: -35px;
  width: 315px;
}
body.page__en .banner a {
  font-size: 12px;
  line-height: 1.2;
  width: 300px;
  margin: 25px auto 0;
}
body.page__en .summary__container h3::before {
  top: -10px;
}
body.page__en .requirements dl dd ul li::before {
  top: 6px;
}
body.page__en .about__wrapper::after {
  bottom: -8%;
}
}

@media screen and (max-width: 600px) {
/* ===========================================
application
=========================================== */
.application__wrapper {
  border-radius: 50px 50px 20px 20px;
}
.application__wrapper::before {
  top: -18px;
}
.application__wrapper::after {
  top: -20px;
}
.application .section-title {
  background: url(../../assets/images/bg_beer_4.png) no-repeat center / contain;
  aspect-ratio: 345 / 76;
}
.application__period {
  padding: 12px 5px;
}
.application__period span {
  font-size: 10px;
  padding: 5px 6px;
}
.application__period span:last-of-type {
  margin-left: 10px;
}
.application__attention {
  padding: 0 15px;
}
}

@media screen and (max-width: 480px) {
/* ===========================================
about
=========================================== */
.about__wrapper p {
  letter-spacing: -0.05em;
}
.about__wrapper::before {
  top: 80px;
  left: -13px;
  width: 57px;
}
.about__wrapper::after {
  bottom: -45px;
  right: -9px;
  width: 72px;
}
.about__wrapper p.about__attention {
  line-height: 2;
}


/* ===========================================
brewery
=========================================== */
.brewery {
  padding: 50px 15px;
}

.brewery__wrapper {
  padding: 50px 15px 30px;
}

.brewery__recommend {
  flex-direction: column;
  align-items: flex-start;
}

.brewery__recommend-image {
  margin: 0 0 50px 35px;
}

.brewery__recommend-image::before {
  right: -100px;
  width: 65px;
}

.brewery__recommend-textbox {
  width: 100%;
}

.brewery__recommend-textbox h4 {
  font-size: 16px;
  line-height: calc(22 / 16);
}

.brewery__recommend-textbox p {
  font-size: 13px;
  line-height: calc(21 / 13);
}

/* ===========================================
summary
=========================================== */
.summary .section-title {
  margin-bottom: 85px;
}

.summary__container h3 {
  margin: -15% auto 25px;
}

.summary__container h3 span.small {
  font-size: 14px;
}

.summary__container h3 span.large {
  font-size: 20px;
}

.summary__container h3::before {
  top: -5px;
  width: 345px;
  height: 90px;
}

/* ===========================================
application
=========================================== */
.application__wrapper {
  padding-bottom: 25px;
}

.application__wrapper::before {
  left: 0;
  top: -42px;
}

.application__wrapper::after {
  right: 0;
  top: -44px;
}

.application__text {
  line-height: calc(22 / 14);
  margin: 26px 0;
  padding: 0 15px;
}

.application__button {
  font-size: 18px;
  width: 285px;
  height: 68px;
  margin-bottom: 15px;
  padding: 0 15px;
}

.application__button::after {
  font-size: 9px;
  width: 18px;
  height: 18px;
}

.application__attention {
  font-size: 10px;
  line-height: 2;
}

/* ===========================================
英語ページ
=========================================== */
body.page__en .about__wrapper::before {
  top: 80px;
  left: -13px;
  width: 57px;
}

body.page__en .about__textbox {
  max-width: 70%;
}

body.page__en .application__button {
  width: 300px;
  font-size: 18px;
}

body.page__en .about p span.en {
  font-size: 26px;
}

body.page__en .summary__container h3 {
  margin-bottom: 40px;
}

body.page__en .summary__container h3 span {
  font-size: 18px;
}

body.page__en .summary__container h3::before {
  top: -5px;
}
body.page__en .application__period {
  font-size: 12px;
  letter-spacing: 0.02em;
}

body.page__en .application__wrapper::before {
  width: 75px;
}
body.page__en .application__wrapper::after {
  width: 72px;
}
}

@media screen and (max-width: 370px) {
/* ===========================================
共通
=========================================== */
.section-title {
  font-size: 25px;
}
/* ===========================================
about
=========================================== */
.about p span.en {
  font-size: 33px;
}
.about__wrapper::before {
  width: 50px;
}
.about__wrapper::after {
  width: 65px;
}
.banner {
  width: 100%;
  height: 226px;
  background-size: cover;
}
.banner a {
  width: 100%;
}
.banner .ribbon1 {
  font-size: 20px;
}
.banner .ribbon1::before {
  width: 100%;
  top: -75%;
}
.banner::before {
  width: 65px;
  height: 65px;
  font-size: 12px;
}
/* ===========================================
.brewery
=========================================== */
.brewery__recommend-image {
  width: 150px;
  margin: 0 0 50px 30px;
}
.brewery__recommend-image::after {
  width: 210px;
  height: 210px;
}
.brewery__recommend-image p {
  top: -22px;
}
/* ===========================================
summary
=========================================== */
.summary .section-title::before, .summary .section-title::after {
  bottom: 50%;
}
.summary__container h3::before {
  width: 105%;
  top: -8px;
}
.summary__container h3 span.small {
  font-size: 12px;
}
.summary__container h3 span.large {
  font-size: 16px;
}
/* ===========================================
application
=========================================== */
.application__wrapper::before {
  width: 75px;
}
.application__wrapper::after {
  width: 72px;
}
.application__period {
  font-size: 12px;
}
.application__text {
  font-size: 12px;
}
.application__attention {
  letter-spacing: 0;
}
.footer p {
  letter-spacing: 0;
}
/* ===========================================
英語のページ
=========================================== */
body.page__en .about p span.en {
  font-size: 24px;
}
body.page__en .banner a {
  width: 100%;
}
body.page__en .banner .ribbon2 {
  font-size: 12px;
}
body.page__en .banner .ribbon2::before {
  width: 100%;
  top: -37px;
}
body.page__en .banner::before {
  font-size: 10px;
  width: 85px;
  height: 85px;
  top: -30px;
}
body.page__en .summary__container h3 span {
  font-size: 15px;
  line-height: 1.1;
}
body.page__en .summary__container h3::before {
  top: -9px;
}
body.page__en .summary .date {
  font-size: 12px;
}
body.page__en .application__period {
  font-size: 10px;
}
}

.animation {
  opacity: 0;
}