@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&amp;family=Roboto:wght@400;500;700&amp;display=swap');

/* CSS Document */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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


ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

a {
  text-decoration: none;
  color: black;
}

a:hover {
  opacity: 0.6;
  transition: 0.4s;
}

@media(min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.35;
  /*
 font-family: 'Roboto', sans-serif;
  font-family: "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "HiraKakuPro-W3", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS Pgothic", Helvetica, Helvetica Neue, Arial;*/
  font-family: 'Noto Sans JP', Helvetica, Helvetica Neue, serif;
  font-weight: 400;
  color: #231815;
}

.wrapper {
  overflow: hidden;
}

body.open {
  overflow: hidden;
}

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

a:hover {
  opacity: 0.6;
  transition: 0.3s;
}

.inner {
  max-width: 1200px;
  width: calc(100% - 48px);
  margin: 0 auto;
}

.flex {
  display: flex;
}

.spnone,
.spbr,
.spimg,
.sp {
  display: none;
}

.youtube {
  position: relative;
  margin: 0 auto 120px;
  max-width: 500px;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.youtube.top {
  margin: 0 auto 50px;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {

  .spnone,
  .sp {
    display: block;
  }

  .spbr,
  .spimg {
    display: inline;
  }

  .pc,
  .pcbr {
    display: none;
  }

  .youtube {
    width: calc(100% - 48px);
    margin: 0 auto 80px;
  }
}

/*=============
    header
==============*/
header {
  position: fixed;
  z-index: 998;
  top: 0;
  left: 0;
  width: 100%;
  padding: 27px 0 13px;
  background: #fff;
}

header .inner {
  max-width: 1330px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header h1 {
  max-width: 193px;
  margin: 0 74px 0 0;
}

header ul.menu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 2px;
  background: #fff;
  border: 1px solid #E50012;
}

header ul.menu li {
  width: auto;
}

header ul.menu li a {
  display: block;
  text-align: center;
  line-height: 1.1;
  background: #E50012;
  color: #fff;
  border-right: 1px solid #fff;
  padding: 6px 32px 7px;
  font-weight: bold;
  letter-spacing: .09em;
}

header ul.menu li:last-child a {
  border-right: none;
}


@media screen and (max-width: 1180px) {
  header {
    padding: 0;
    height: 50px;
  }

  header h1 {
    max-width: 90px;
    margin: 0;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
  }

  header ul.menu {
    display: none;

  }

  header .spmenuBtn {
    width: 30px;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
  }



  header .spmenuBtn span {
    display: block;
    height: 2px;
    background: #000;
    margin: 0 0 8px;
    transition: .3s;
  }

  header .spmenuBtn span:last-child {
    margin-bottom: 0;
  }

  .open .spmenuBtn span:nth-child(1) {
    transform: translate(2px, 14px) rotate(45deg);
  }

  .open .spmenuBtn span:nth-child(2) {
    opacity: 0;
  }

  .open .spmenuBtn span:nth-child(3) {
    transform: translate(2px, -6px) rotate(-45deg);
  }

  .spmenu {
    position: fixed;
    background: #fff;
    z-index: 999;
    min-height: 100vh;
    width: 250px;
    top: 50px;
    right: -251px;
    padding: 19px 19px 17px;
    transition: .3s;
  }

  .open::after {
    content: "";
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(3px);
    background: rgba(255, 255, 255, .75);
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1;
  }

  .open .spmenu {
    display: block;
    right: 0;
  }

  .spmenu .ttl {
    max-width: 174px;
    margin: 0 auto 24px;
  }

  .spmenu ul {
    margin: 0 auto 18px;
  }

  .spmenu ul li a {
    display: block;
    line-height: 1;
    padding: 13px 0 11px;
    border-bottom: 1px solid #000;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: .12em;
  }

  .spmenu p.logo {
    max-width: 116px;
    margin: 0 auto;
  }

}

@media screen and (min-width: 1180px) and (max-width: 1380px) {
  header ul.menu li a {
    padding: 6px 18px 7px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1180px) {
  header ul.menu {
    display: none;
  }

  .spmenu {
    display: block;
  }
}

/*=============
    footer
==============*/
footer {
  background: #E50012;
  color: #fff;
  padding: 33px 0 30px;
}

footer ul {
  display: flex;
  justify-content: flex-start;
  margin: 0 auto 37px;
}

footer ul li {
  margin: 0 33px 0 0;
}

footer ul li:last-child {
  margin-right: 0;
}

footer ul li a {
  display: block;
  padding: 2px 15px 8px 0;
  border: 1px solid #fff;
  border-top: none;
  border-left: none;
  position: relative;
  font-weight: bold;
  color: #fff;
  line-height: 1;
}

footer ul li a::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 8px 9px;
  border-color: transparent transparent #ffffff transparent;
  position: absolute;
  right: 0;
  bottom: 0;
}

footer .flex {
  justify-content: center;
  margin: 0 auto 47px;
}

footer .flex div {
  width: calc(50% - 25px);
}

footer .flex h2 {
  height: 28px;
  line-height: 26px;
  background: #fff;
  color: #E50012;
  font-size: 1.8rem;
  text-align: center;
  font-weight: bold;
  margin: 0 auto 8px;
  letter-spacing: .05em;
}

footer .flex p {
  font-weight: 500;
  line-height: 1.43;
  font-feature-settings: "palt";
  letter-spacing: .05em;
}

footer p.logo {
  max-width: 239px;
  margin: 0 auto 18px;
}

footer p.copy {
  text-align: center;
  font-size: 1.2rem;
}


@media screen and (max-width: 767px) {
  footer {
    padding: 18px 0 12px;
  }

  footer ul {
    display: none;
  }

  footer .flex {
    display: block;
    margin: 0 auto 24px;
  }

  footer .flex div {
    width: 100%;
    margin: 0 auto 18px;
  }

  footer .flex div:last-child {
    margin-bottom: 0;
  }

  footer .flex h2 {
    height: 18px;
    line-height: 16px;
    font-size: 1.2rem;
    margin: 0 auto 8px;
  }

  footer .flex p {
    font-size: 1.2rem;
  }

  footer p.logo {
    max-width: 180px;
    margin: 0 auto 14px;
  }
}

@media screen and (min-width: 1180px) and (max-width: 1380px) {
  footer ul li a {
    padding: 2px 8px 8px 0;
  }

  footer ul li {
    margin: 0 41px 0 0;
  }
}

@media screen and (min-width: 769px) and (max-width: 1180px) {
  footer ul {
    display: none;
  }
}

@media screen and (min-width: 1180px) and (max-width: 1260px) {
  footer ul li a {
    font-size: 1.4rem;
  }

  footer ul li {
    margin: 0 45px 0 0;
  }
}


/*=============
    Utility
==============*/
.u-red,
.u_red {
  color: #E50012;
}

.u-bold {
  font-weight: bold;
}

a.u-blu {
  color: #29A1D8;
  font-weight: 500;
  word-break: break-all;
}

a.nn:hover {
  opacity: 1 !important;
}

.u-breakall {
  word-break: break-all;
}

.txt_idt_m75em {
  text-indent: -.75em;
  display: inline-block;
}

a.under {
  text-decoration: underline;
}

a.under:hover {
  text-decoration: none;
}

.u-mb2em {
  margin-bottom: 2em !important;
}

@media screen and (max-width: 767px) {
  .u-sp_breakall {
    word-break: break-all;
  }
}

/*=============
  Common Parts
==============*/
h2.ud {
  text-align: center;
  font-size: 4.0rem;
  line-height: 1.2;
  margin: 0 auto 70px;
  font-weight: bold;
  letter-spacing: .04em;
}

h2.ud span {
  display: inline-block;
  padding: 0 4px;
  position: relative;
}

h2.ud span::after {
  content: "";
  width: 100%;
  height: 17px;
  background: #E50012;
  position: absolute;
  bottom: -28px;
  left: 0;
}

@media screen and (max-width: 767px) {
  h2.ud {
    font-size: 2.0rem;
    margin: 0 auto 32px;
  }

  h2.ud span::after {
    height: 5px;
    bottom: -12px;
  }
}

/*=============
    Contents
==============*/
.mv {
  background: #E50012;
  padding: 82px 0 24px;
  position: relative;
  display: flex;
  margin: 119px auto 0;
}

.mv2 {
  margin: 119px auto 0;
}

.mv2 img {
  width: 100%;
}

.mv p.txt1 {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 813px;
  width: 100%;
  line-height: 1;
}

.mv .img01 {
  width: 48.6%;
  padding: 0;
}

.mv .img01 img {
  width: 100%;
}

.mv .m_txt {
  width: 51.4%;
  position: relative;
  padding: 20px 0 0 32px;
}

.mv .m_txt img {
  width: 100%;
}

.mv .m_txt p.logo {
  width: 19.05%;
  margin: 0 auto 12px;
}

.mv .m_txt h2 {
  width: 93.5%;
  margin: 0 auto 20px 1%;
}

.mv .m_txt p.in {
  width: 47.7%;
  margin: 0 auto 28px;
}

.mv .m_txt p.date {
  width: 70.2%;
  margin: 0 auto 50px;
}

.mv .m_txt p.txt2 {
  width: 40.5%;
  margin: 0 auto 27px;
}

.mv .m_txt .img02 {
  width: 23.3%;
  position: absolute;
  right: 0;
  top: 53.1%;
}

.mv .m_txt .img03 {
  width: 21.8%;
  position: absolute;
  left: 2.7%;
  top: auto;
  bottom: 23.3%;
}

.mv .m_txt .img04 {
  width: 63.5%;
  margin: 0 auto;
}

.mv ul.lt li {
  position: absolute;
}

.mv ul.lt li:nth-child(1) {
  width: 6.11%;
  top: 2.4%;
  left: 1.6%;
}

.mv ul.lt li:nth-child(2) {
  width: 3.9%;
  top: 10%;
  left: 49.2%;
}

.mv ul.lt li:nth-child(3) {
  width: 5.8%;
  top: -4.2%;
  right: -1.7%;
}

.mv ul.lt li:nth-child(4) {
  width: 4.16%;
  bottom: -1.2%;
  left: 46.4%;
}

.mv ul.lt li:nth-child(5) {
  width: 4.51%;
  bottom: 3.07%;
  right: 5.8%;
}

.overview {
  padding: 80px 0 123px;
}

.overview h2.ud {
  margin: 0 auto 78px;
}

.overview ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.overview ul li {
  width: calc(50% - 33px);
  margin: 0 0 28px;
}

.overview ul li:last-child {
  width: 100%;
  margin: 0;
}

.overview ul li h3 {
  text-align: center;
  font-size: 4.0rem;
  line-height: 1.1;
  margin: 0 auto 22px;
  position: relative;
  font-weight: bold;
}

.overview ul li h3::before {
  content: "";
  width: 100%;
  height: 2px;
  background: #231815;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

.overview ul li h3 span {
  display: inline-block;
  padding: 0 14px;
  background: #fff;
}

.overview ul li p {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.375;
  text-align: center;
}

.overview ul li:first-child p {
  font-size: 2.4rem;
}

.overview ul li:first-child p span {
  font-size: 1.33em;
}

.overview ul li p span.ad {
  font-size: 1.125em;
  display: inline-block;
  margin-top: 8px;
}

.overview ul li .map {
  margin: 40px auto;
  text-align: center;
}

.about {
  padding: 0 0 290px;
  position: relative;
}

.about::after {
  content: "";
  width: 217px;
  height: 107px;
  background: url(../images/mark.html) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
}

.about .flex div {
  width: 47.5%;
}

.about .flex p {
  width: 52.5%;
  padding: 0 0 0 28px;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.56;
  letter-spacing: .05em;
  font-feature-settings: "palt";
}

.topics {
  padding: 0 0 120px;
}

.topics h2.ud {
  margin: 0 auto 60px;
}

.topics ul {
  border: 1px solid #000;
  padding: 14px 22px;
  height: 292px;
  overflow-y: scroll;
}

.topics ul li {
  margin: 0 auto 12px;
  padding: 0 0 12px;
  font-size: 1.8rem;
  line-height: 1.61;
  font-weight: 500;
  border-bottom: 1px dotted #333;
}

.topics ul li:last-child {
  border-bottom: none;
}

.topics ul li p.ttl a {
  color: #009EE7;
}

.topics ul li p.ttl a.under {
  color: #231815;
  text-decoration: underline;
}

.topics ul li p.ttl a.under:hover {
  text-decoration: none;
}

.topics ul li p.sml {
  font-size: .88em;
  margin-top: .5em;
}

.topics ul li p.sml a {
  color: #009EE7;
}



.fb {
  padding: 0 0 140px;
}

.fb .iframe {
  max-width: 500px;
  margin: 0 auto;
  display: block;
}

.fb .iframe iframe {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .mv {
    margin: 50px auto 0;
    padding: 6px 0 12px;
    display: block;
  }

  .mv2 {
    margin: 50px auto 0;
  }

  .mv p.txt1 {
    position: static;
    transform: none;
    width: calc(100% - 25px);
    margin: 0 auto 7px;
  }

  .mv .img01 {
    width: 100%;
    padding: 0;
    margin: 0 auto 15px;
  }

  .mv .m_txt {
    width: 100%;
    padding: 0;
  }

  .mv .m_txt p.logo {
    width: 19.3%;
    margin: 0 auto 9px;
  }

  .mv .m_txt h2 {
    width: 78.8%;
    margin: 0 auto 7px;
  }

  .mv .m_txt p.in {
    width: 40.1%;
    margin: 0 auto 14px;
  }

  .mv .m_txt p.date {
    width: 65.6%;
    margin: 0 auto 24px;
  }

  .mv .m_txt p.txt2 {
    width: 40.2%;
    margin: 0 auto 28px;
  }

  .mv .m_txt .img02 {
    width: 26.6%;
    top: 41.89%;
  }

  .mv .m_txt .img03 {
    width: 21.2%;
    left: 3.7%;
    top: 35.1%;
  }

  .mv .m_txt .img04 {
    width: 100%;
  }

  .mv ul.lt li:nth-child(1) {
    width: 13.6%;
    top: 45.3%;
    bottom: auto;
    left: auto;
    right: -4.8%;
  }

  .mv ul.lt li:nth-child(2) {
    width: 10.9%;
    top: 55.2%;
    bottom: auto;
    left: -1.6%;
    right: auto;
  }

  .mv ul.lt li:nth-child(3) {
    width: 8.53%;
    top: auto;
    bottom: -2px;
    left: auto;
    right: -0.5%;

  }

  .mv ul.lt li:nth-child(n+4) {
    display: none;
  }

  .overview {
    padding: 40px 0 53px;
  }

  .overview h2.ud {
    margin: 0 auto 32px;
  }

  .overview ul {
    display: block;
  }

  .overview ul li {
    width: 100%;
    margin: 0 0 16px;
  }

  .overview ul li h3 {
    font-size: 1.2rem;
    margin: 0 auto 16px;
  }

  .overview ul li h3::before {
    height: 1px;
  }

  .overview ul li h3 span {
    padding: 0 7px;
  }

  .overview ul li p {
    font-size: 1.6rem;
    letter-spacing: .1em;
  }

  .overview ul li:last-child p {
    letter-spacing: .05em;
    font-feature-settings: "palt";
    line-height: 1.5;
  }

  .overview ul li:first-child p {
    font-size: 1.2rem;
  }

  .overview ul li p span.sp_ft {
    font-size: 1.4rem;
  }

  .overview ul li p span.ad {
    font-size: 1.2rem;
    margin-top: 4px;
  }

  .overview ul li .map {
    margin: 20px auto 0;
  }

  .about {
    padding: 0 0 90px;
  }

  .about::after {
    width: 67px;
    height: 33px;
    bottom: 25px;
  }

  .about .flex {
    display: block;
  }

  .about .flex div {
    width: 100%;
    text-align: center;
    margin: 0 auto 25px;
  }

  .about .flex p {
    width: 100%;
    padding: 0;
    font-size: 1.6rem;
    line-height: 1.78;
    letter-spacing: .14em;
    text-align: center;
  }

  .topics {
    padding: 0 0 59px;
  }

  .topics h2.ud {
    margin: 0 auto 30px;
  }

  .topics ul {
    padding: 8px 12px;
  }

  .topics ul li {
    margin: 0 auto 10px;
    padding: 0px 0 10px;
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .topics ul li p.date {
    margin: 0 auto 4px;
  }

  .fb {
    padding: 0 0 78px;
  }
}

@media screen and (max-width: 390px) {
  .overview ul li p {
    font-size: 1.4rem;
  }

  .about .flex p {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1180px) {

  .mv,
  .mv2 {
    margin-top: 50px;
  }

  .overview ul li h3 {
    font-size: 3.2rem;
  }

  .overview ul li p {
    font-size: 2.1rem;
  }

  .overview ul li:first-child p {
    font-size: 1.8rem;
  }

  .about .flex p {
    font-size: 2.4rem;
  }
}

/*0703,0802*/
.add_btn {
  padding: 50px 0 120px;
}

.add_btn .flex {
  justify-content: space-between;
  margin: 0 0 150px;
}

.add_btn .flex.jc_center {
  justify-content: center;
}

.add_btn .flex div {
  width: calc((100% - 40px) / 2);
}

.instagram .inner>div {
  text-align: center;
}

.add_btn .flex.chirashi {
  margin: 0 0 128px;
}

.add_btn .flex.chirashi div a {
  display: block;
  position: relative;
}

.add_btn .flex.chirashi div a::after {
  content: "";
  width: 40.7%;
  height: 187%;
  background: url(../images/chirashi_im.html) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  right: -6.4%;
  top: 50%;
  transform: translateY(-50%);
}

.add_btn .flex.chirashi div.jp a::after {
  background-image: url(../images/chirashi_im_jp.html);
}

.add_btn .flex.chirashi.pamgh div:first-child a::after {
  background-image: url(../images/pamph_im_jp.html);
  top: 38%;
  width: 38.7%;
}

.add_btn .flex.chirashi.pamgh div:last-child a::after {
  background-image: url(../images/pamph_im_vt.html);
  top: 38%;
  width: 38.7%;
}

.add_btn .coffee_cp {
  margin: 0 0 120px;
  align-items: center;
}

.add_btn .coffee_cp .ttl {
  width: 55.5%;
}

.add_btn .coffee_cp .txt {
  width: calc(44.5% - 20px);
}

.add_btn .vietmen_bnr {
  margin: 0 auto 80px;
}

.overview .border p {
  font-size: 2.4rem;
  margin: 0 auto 120px;
  line-height: 1.75;
  letter-spacing: .1em;
  font-feature-settings: "palt";
  font-weight: 600;
  border: 3px solid #E50012;
  border-radius: 8px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  color: #E50012;
  position: relative;
  padding: 1em;
}

.overview .border h3 {
  background-color: #E50012;
  color: #fff;
  margin: 0 auto;
  font-size: 2.8rem;
  padding: 6px 0 8px;
  font-weight: bold;
  line-height: 1.35;
  text-align: center;
  width: 100%;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  letter-spacing: .1em;
}

@media screen and (max-width: 767px) {
  .add_btn {
    padding: 0 0 53px;
  }

  .add_btn .flex {
    display: block;
    margin: 0 0 53px;
  }

  .add_btn .flex div {
    margin: 0 auto 20px;
    width: 100%;
    max-width: 420px;
  }

  .add_btn .flex div:last-child {
    margin-bottom: 0;
  }

  .add_btn .flex.chirashi {
    margin: 0 0 38px;
  }

  .add_btn .flex.chirashi.pamgh {
    margin: 0 0 62px;
  }

  .add_btn .flex.chirashi div:first-child {
    margin: 0 auto 60px;
  }

  .add_btn .coffee_cp .ttl {
    width: 100%;
  }

  .add_btn .coffee_cp .txt {
    width: 81.7%;
    margin: 0 auto;
    text-indent: 18px;
  }

  .add_btn .vietmen_bnr {
    margin: 0 auto 60px;
  }

  .overview .border p {
    font-size: 1.4rem;
    margin: 0 auto 60px;
  }

  .overview .border h3 {
    font-size: 1.6rem;
  }
}

/* 231107追記 */
.bnr_img_01 {
  max-width: 350px;
  width: 100%;
  cursor: pointer;
  display: block;
  margin: 0 auto;
}