@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Oooh+Baby&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');
body {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.6rem;
}
@media screen and (max-width:480px) {
  body {
/*  font-size: 1.4rem;*/
 }
}
a {
  transition: all 0.5s 0s ease;
}
li {
  transition: 2s;
}

.zoombox {
  cursor: pointer;
/*  max-width: 500px;*/
  overflow: hidden;
  width: 100%;
}
.zoombox img {
  height: auto;
  transition: transform .6s ease;
}
.zoombox img:hover {
  transform: scale(1.1);
}
.pc{
  display: block;
}
.sp{
  display: none;
}
@media screen and (max-width:480px) {
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
}
.width90 {
  width: 90%;
  margin: auto;
}
.width95 {
  width: 95%;
  margin: auto;
}
.width100 {
  width: 100%;
  max-width: none;
  margin: auto;
}
.padding0{
  padding: 0px;
}
.padding5{
  padding: 5px;
}
.mgb20 {
  margin-bottom: 20px!important;
}
.mgb40 {
  margin-bottom: 40px!important;
}
.mgb50 {
  margin-bottom: 50px!important;
}
.mgb100 {
  margin-bottom: 100px!important;
}

/*フォント*/
.nowrap{
  white-space:nowrap;
}
.font_size14 {
  font-size: 1.4rem;
}
.font_size18 {
  font-size: 1.8rem;
}
.font_size20 {
  font-size: 2rem;
}
.font_size22 {
  font-size: 2.2rem;
}
.font_size24 {
  font-size: 2.4rem;
}
.font_weight500 {
  font-weight: 500!important;
}
.font_weight_bold {
  font-weight: bold!important;
}
.txt_tel{
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 3.6rem;
  white-space:nowrap;
}
.freedial{
  position: relative;
}
.freedial::before{
  content: "フリーダイヤル";
  position: absolute;
  font-size: 1.8rem;
  top:-1.9rem;
  left:0;
  white-space:nowrap;
}
.contents_page h5{
  font-size: 2.4rem;
  font-weight: 500;
  display: inline-block;
margin-bottom: 30px;
}
@media screen and (max-width:640px) {
  body {
    font-size: clamp(1.4rem, 1.6vw, 1.6rem);
  }
  br.pc{
    display: none;
  }
  br.sp{
    display: block;
  }
  .font_size14 {
    font-size: clamp(1.2rem, 1.4vw, 1.4rem);
  }
  .font_size20 {
    font-size: clamp(1.6rem, 2vw, 2rem);
  }
  .font_size22 {
    font-size: clamp(1.7rem, 2.2vw, 2.2rem);
  }
  .font_size24 {
    font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  }
  .txt_tel{
    font-weight: 500;
    font-size: clamp(2rem, 3.6vw, 3.6rem);
  }
  .freedial::before{
    font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  }
  .contents_page h5{
    font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  }
}
.font_weight400 {
  font-weight: 400;
}
.font_weight500 {
  font-weight: 500;
}
.font_weight700 {
  font-weight: 700;
}
/*カラー*/
.color_white {
  color: #F9F6F0;
}
a.color_white:hover {
  opacity: 0.6;
}
.color_black {
  color: #2A0003;
}
.color_gray {
  color: #464646;
}
.color_red {
  color: #E72D3C;
}
.color_brown {
  color: #762A1C;
}
a.color_brown:hover {
  color: #E72D3C;
}
.color_green {
  color: #9BCC20;
}
.bg_white {
  background-color: #F9F6F0;
}
.bg_p-white {
  background-color: #FFFFFF;
}
.bg_red {
  background-color: #E72D3C;
}
.bg_black {
  background-color: #2A0003;
}
.opacity4 {
  opacity: 0.4;
}
/* パーツ */
.arrow_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.circle {
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  transition: 2s;
}
.arrow_box .circle {
  margin-right: 20px;
  position: static;
}
.circle.size100 {
  width: 100px;
  height: 100px;
  border-radius: 50px;
}


/*====================================================================
ページネーションの追記
====================================================================*/
.navigation.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}
.nav-links .page-numbers {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 50%;
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
}
/* ホバー時 */
.nav-links .page-numbers:hover {
  border-color: #E72D3C;
  color: #E72D3C;
}
/* 現在のページ */
.nav-links .current {
  background: #E72D3C;
  color: white;
  border-color: #E72D3C;
  pointer-events: none;
}
/* 前へ・次への矢印 */
.nav-links .prev,
.nav-links .next {
  font-size: 0;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;

  border: none;
  border-radius: 0;
  width: 12px;
  height: 23px;
  background-color: #E72D3C;
}
.nav-links .prev {
  /*border-right: 14px solid #E72D3C;
  margin-right: 10px;*/
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  margin-right: 10px;
}
.nav-links .next {
  /*border-left: 14px solid #E72D3C;
  margin-left: 10px;*/
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  margin-left: 10px
}
/* ドット（省略記号）対応 */
.nav-links .dots {
  border: none;
  background: none;
  pointer-events: none;
  color: #888;

  padding-bottom: 1rem;
  font-size: 2rem;
  letter-spacing: 0.3rem;
}



@media screen and (max-width:640px) {
  .circle.size100 {
    width: calc(100px / 2);
    height: calc(100px / 2);
    border-radius: calc(50px / 2);
  }
}
.circle.size59 {
  width: 59px;
  height: 59px;
  border-radius: calc(59px / 2);
}
.circle.size56 {
  width: 56px;
  height: 56px;
  border-radius: calc(56px / 2);
}
@media screen and (max-width:640px) {
  .circle.size56 {
  width: 35px;
  height: 35px;
  border-radius: calc(35px / 2);
}
}
.circle.size35 {
  width: 35px;
  height: 35px;
  border-radius: calc(35px / 2);
}
.circle.size35_02 {
  width: 35px;
  height: 35px;
  border-radius: calc(35px / 2);
  display: inline-flex;
  margin-left: 15px;
}
.circle.size29 {
  width: 29px;
  height: 29px;
  border-radius: calc(29px / 2);
}
.circle.size25 {
  width: 25px;
  height: 25px;
  border-radius: calc(25px / 2);
}
.circle.size24 {
  width: 24px;
  height: 24px;
  border-radius: calc(24px / 2);
}
.arrow {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 40%;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}
.arrow::before {
  content: '';
  width: 70%;
  height: 2px;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: 0px;
  box-sizing: border-box;
  background: currentColor;
  border-radius: 1px;
}
.arrow::after {
  content: '';
  width: 70%;
  height: 2px;
  transform: rotate(-45deg);
  transform-origin: bottom right;
  position: absolute;
  bottom: 50%;
  right: 0;
  box-sizing: border-box;
  background: currentColor;
  border-radius: 1px;
}
.button01 {
  display: flex;
  height: 86px;
  border-radius: 43px;
  margin-bottom: 20px;
}
.button01:hover {
  opacity: 0.6;
}
.button_line_box {
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: dotted 2px #ffffff;
}
.button_line_box .button01 {
  margin-bottom: 0;
}
.button01 .button_item-c1 {
  width: calc(100% - 40px);
  text-align: center;
  font-weight: 500;
}
.button01 .button_item-r1 {
  width: calc((100% - 40px) * 0.6);
  text-align: center;
}
.button01 .button_item-r2 {
  width: calc((100% - 40px) * 0.4);
  text-align: right;
  padding-right: 10px
}
.button02 {
  width: 180px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px #E72D3C;
  border-radius: 25px;
  font-weight: 500;
}
.button-dust {
  width: 50px;
  height: 50px;
  background-image: url(../images/dust_box.svg);
  background-repeat: no-repeat;
  background-position: center center;
  text-indent: -9999px;
}
.bottom_line-red {
  border-bottom: solid 2px #E72D3C;
}
.not_store {
  text-align: center;
  font-size: 1.8rem;
}

/*====================================================================
お気に入りボタン
====================================================================*/
.simplefavorite-button {
  width: 180px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
  padding: 10px;
  text-align: center;
  font-weight: 500;
}
/* お気に入り済み状態 */
.simplefavorite-button.favorited {
  background-color: #a8a8a8;
  color: #ffffff;
}

/*アニメーション*/
.list-fadein-up {
  opacity: 0;
  margin-top: 40px;
  transition: 2s;
  transition-delay: 1s;
}
.list-fadein-up.fadein-up {
  opacity: 1;
  margin-top: 0px;
}
.list-fadein {
  opacity: 0;
  transition: 2s;
}
.list-fadein.fadein {
  opacity: 1;
}
header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  height: 90px;
  position: relative;
}
.top_page header {
  position: absolute;
  z-index: 10;
/*  background-color: rgba(231,45,60,0.8);*/
/*  background: linear-gradient(to bottom, rgba(231, 45, 60, 0.8), rgba(231, 45, 60, 0));*/
background: linear-gradient(to bottom, rgba(50, 50, 50, 0.9), rgba(50, 50, 50, 0));
}
.header_logotitle {
  width: 290px;
  height: 140%;
  background-color: #ffffff;
  border-bottom-right-radius: 40px;
}
.header_logotitle a {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/header_logo.svg);
  background-repeat: no-repeat;
  background-position: center center;
  text-indent: -9999px;
}
@media screen and (max-width:600px) {
  .header_logotitle {
    width: 50%;
    height: 80%;
  }
  .header_logotitle a {
    background-size: 80%;
  }
}
.header_menu {
  width: calc(100% - 320px);
  height: 100%;
  display: inline-block;
}
.header_menu-list {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header_menu-item {
  margin-right: 40px;
}
.header_menu-item a {
  font-weight: bold;
}
.menubutton {
  width: 100px;
  height: 100px;
  text-align: center;
  font-size: 1rem;
  position: fixed;
  right: 30px;
  top: 30px;
  background-color: #E72D3C;
  border-radius: 100px;
  transition: all 0.5s 0s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  z-index: -1;
}
.menubutton.fixed {
  z-index: 2;
  opacity: 1;
}
.menubutton_lines {
  width: 100%;
  height: calc(12px + 2rem);
  padding-bottom: 2rem;
  margin-bottom: 0px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.menubutton_lines::after {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.2rem;
  line-height: 1rem;
  content: "MENU";
  display: block;
  width: 100%;
  color: #F9F6F0;
  position: absolute;
  bottom: 0rem;
  text-align: center;
  font-weight: bold;
}
.menubutton_lines-line {
  display: block;
  height: 2px;
  width: 35px;
  border-radius: 1px;
  background-color: #ffffff;
  /*margin: 0px auto 8px;*/
  transition: all 0.5s 0s ease;
}
.menubutton.active {
  background-color: #F9F6F0;
  z-index: 2;
  opacity: 1;
}
.menubutton.active .menubutton_lines::after {
  padding-top: 18px;
  content: "CLOSE";
  color: #762A1C;
}
.menubutton.active .menubutton_lines-line {
  background-color: #762A1C;
  position: absolute;
  top: calc((100% - 2rem) / 2);
/*  left: calc(50% - 14px);*/
}

@media screen and (max-width:500px) {
  .menubutton {
    width: 80px;
    height: 80px;
    right: 20px;
  }
}


/* ドロップダウンメニュー */
.header_menu-item a.menu-anchor {
  padding-bottom: 20px;
}
.dropdown_lists {
  visibility: hidden;/*デフォルトでは非表示の状態にしておく*/
  opacity: 0;
  transition: all .3s;/*表示の変化を0.3秒に指定*/
/*  display: none;*/
  width: 220px;
  position: absolute;
  top: 87px;
  border-radius: 10px;
  /*border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;*/
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 100;
}
.header_menu-item:hover .dropdown_lists {
/*  display: block;*/
  visibility: visible;/*ホバーしたら表示*/
  opacity: 1;
}
.dropdown_list {
    background-color: #E72D3C;
    background-color: #F9F6F0;
    height: 60px;
    transition: all .3s;
    position: relative;
    line-height: 3.5;
}
.dropdown_list:not(:first-child)::before{
    content: "";
    width: 100%;
    height: 1px;
    background-color: #F9F6F0;
    background-color: #E72D3C;
    position: absolute;
    top: 0;
    left: 0;
}
.dropdown_list:hover {
    background-color: #F9F6F0;
    background-color: #E72D3C;
}
.dropdown_list a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #F9F6F0;
    color: #E72D3C;
    text-decoration: none;
    position: relative;
}
.dropdown_list a:hover {
    color: #E72D3C;
    color: #F9F6F0;
}
.dropdown_list a::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #E72D3C;
    border-left: 2px solid #E72D3C;
    transform: rotate(135deg);
    position: absolute;
    right: 15px;
    top: calc(50% - 5px);
}
.dropdown_list a:hover::before {
    border-top: 2px solid #F9F6F0;
    border-left: 2px solid #F9F6F0;
}



.hamburger_menu {
  position: fixed;
  background-color: #F9F6F0;
  width: 100%;
  height: 0vh;
  overflow: hidden;
  z-index: -1;
  opacity: 0;
  display: flex;
  justify-content: center;
  transition: all 0.5s 0s ease;
}
.hamburger_menu.active {
  z-index: 1;
  opacity: 1;
  height: 100vh;
}
.hamburger_box {
  text-align: center;
  padding-top: 12px;
}
.hamburger_logotitle {
  width: 179px;
  height: 30px;
  margin: 40px auto;
}
.hamburger_logotitle a {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/sp_menu_logo.svg);
  background-repeat: no-repeat;
  text-indent: -9999px;
}
.hamburger_menu-list {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.hamburger_menu-item {
  width: 100%;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.hamburger_menu-sub {
  font-size: 1.5rem;
/*  color: #E72D3C;*/
}
.hamburger_menu-sub a:before {
  content: '● ';
}

/* フッター　*/
footer {
  width: 100%;
  padding-bottom: 20px
}
.footer_image {
  width: 100%;
/*  height: 350px;*/
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer_image img {
/*  min-width: calc(100vw * 1.5);*/
/*  height: auto;*/
}
.footer_image::after {
  content: "";
  background-color: #762A1C69;
  opacity: 0.41;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.footer_menu {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 40px;
  margin-bottom: 30px;
}
.footer_logo_title {
  width: 301px;
  height: 51px;
}
.footer_logo_title a {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/footer_logo.svg);
  background-size: 100% auto;
  text-indent: -9999px;
  background-repeat: no-repeat;
}
.footer_menu-list {
  width: calc(100% - 321px);
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
/*  min-height: 51px;*/
}
.footer_menu-item {
  margin-left: 20px;
}
.credit {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: right;
  font-size: 1.3rem;
}
.footer_menu-list-sub {
  text-align: right;
  width: 100%;
}
.footer_menu-list-sub li {
  font-size: 1.4rem;
}

@media screen and (max-width:1100px) {
  /*ヘッダー*/
  .header_menu {
    display: none;
  }
  .menubutton {
    z-index: 2;
    opacity: 1;
  }
}
@media screen and (max-width:1000px) {
  /*フッター*/
  .footer_menu {
    justify-content: flex-start;
    align-items: flex-start;
  }
  .footer_logo_title {
    width: 100%;
    margin-bottom: 25px;
  }
  .footer_logo_title a {
    max-width: 220px;
  }
  .footer_menu-list {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap
  }
  .footer_menu-item {
    margin-left: 20px;
    text-align: left;
    margin-bottom: 10px
  }
  .footer_menu-item:nth-child(odd) {
    width: calc(150px);
  }
  .footer_menu-item:nth-child(even) {
    width: calc(100% - 150px - 40px);
  }
  .credit {
    text-align: center;
  }
}
@media screen and (max-width:340px) {
  /*フッター*/
  .footer_menu-item:nth-child(odd) {
    width: calc(100%);
  }
  .footer_menu-item:nth-child(even) {
    width: calc(100%);
  }
}
main {
  width: 100%;
  padding-top: 40px;
}
.top_page main{
  padding-top: 0;
}
h3.contents_title {
  font-size: 3.6rem;
  color: #2A0003;
  line-height: 3.6rem;
  padding-left: 22px;
  position: relative;
  vertical-align: middle;
  margin-bottom: 60px;
  letter-spacing: 2px;
}
.contents_page h3.contents_title {
  font-size: 3rem;
}
@media screen and (max-width:1000px) {
  h3.contents_title {
    font-size: clamp(2rem, 3.6vw, 3.6rem);
    margin-bottom: clamp(20px, 6vw, 60px);
  }
  .contents_page h3.contents_title {
    font-size: clamp(2rem, 3vw, 3rem);
  }
}
h3.contents_title::before {
  content: "";
  position: absolute;
  top: calc(1.8rem - 6px);
  left: 0;
  width: 12px;
  height: 12px;
  background-color: #E72D3C;
  border-radius: 6px;
}
h3.contents_title.color_white {
  color: #F9F6F0;
}
h3.contents_title.color_white::before {
  background-color: #F9F6F0;
}

.originalbrand h3.contents_title::after{
  content: "美味しいをお届け！";
    position: absolute;
    left: 0;
    display: inline-block;
    font-size: 5.4rem;
  font-weight: 500;
    line-height: 6rem;
    width: auto;
    padding-top: 70px;
    margin-bottom: 10px;
    border-bottom: solid 1px #FFF;
    box-sizing: content-box;
}
@media screen and (max-width:1000px) {
  .originalbrand h3.contents_title::after{
    font-size: clamp(2.5rem, 5.4vw, 5.4rem);
  }
}
/* TOP */
h2.contents_eng {
  font-family: "Oooh Baby", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 10rem;
  transform: rotate(-20deg);
  display: block;
  position: absolute;
  top: -40px;
  left: 0px;
}
@media screen and (max-width:1000px) {
  h2.contents_eng {
    font-size: clamp(4rem, 10vw, 10rem);
    top: -2vw;
  }
}
.main_image {
  width: 100%;
  height: calc(100vh - 80px);
  position: relative;
  display: flex;
  justify-content: center;
  margin: 0 auto 0px;
  border-radius: 60px;
}
.image_mask {
  width: 100%;
  height: calc(100% - 80px);
  mask-size: 100% 100%;
  overflow: hidden;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
}
@media screen and (max-width:1440px) {
  .main_image {
    height: calc(100vh);
/*    height: clamp(380px, 78vw, 780px);*/
/*    height: clamp(480px, 78vw, 880px);*/
  }
  .image_mask {
    height: calc(100% - 40px);
/*    height: clamp(340px, 64vw, 640px);*/
/*    height: clamp(440px, 64vw, 740px);*/
  }
}
@media screen and (max-width:480px) {
  .main_image {
    max-height: 600px;
  }
  .image_mask {
    height: calc(100%);
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
  }
}
.main_video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main_title {
  font-family: "Oooh Baby", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 7rem;
  transform: rotate(-20deg);
  display: inline;
  position: absolute;
  top: 15%;
  right: 2%;
  z-index: 1;
  color: #ffffff;
  transition: 2s;
}
@media screen and (max-width:1440px) {
  .main_title {
    top: 14%;
  }
}
.main_copy {
  position: absolute;
  top: 150px;
  left: 5%;
  z-index: 1;
  font-size: clamp(1.8rem, 3.5vw, 4.73rem);
  line-height: clamp(31px, 6.5vw, 85px);
  font-weight: 700;
}
.main_copy span {
  padding: 0px 10px;
  background: linear-gradient(transparent 0%, #FFffff 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  border-radius: 4px;
}
.main_image img {
  position: absolute;
}
/*ジャガイモ*/
.main_illust01 {
  top: 40%;
  left: 2%;
  width: 68px;
}
/*かぼちゃ*/
.main_illust02 {
  top: 52%;
  left: 1%;
  width: 120px;
}
/*人参*/
.main_illust03 {
  top: 80%;
  left: 3%;
  width: 100px;
}
/*トマト*/
.main_illust04 {
  top: 70%;
  left: 10%;
  width: 70px;
}
/*カブ*/
.main_illust05 {
  top: 61%;
  left: 20%;
  width: 135px;
}
/*野菜たちレフト*/
.main_illust06 {
  top: 60%;
    left: 1%;
    width: 300px;
}
/*野菜たちライト*/
.main_illust07 {
  top: 60%;
    right: 1%;
    width: 180px;
}
@media screen and (max-width:1440px) {
  /*野菜たちレフト*/
  .main_illust06 {
    top: 50%;
      left: 1%;
      width: 280px;
  }
  /*野菜たちライト*/
  .main_illust07 {
    top: 50%;
      right: 1%;
      width: 160px;
  }
}
@media screen and (max-width:1000px) {
  .main_illust01 {
    width: clamp(39px, 7.8vw, 78px);
  }
  .main_illust02 {
    width: clamp(75px, 15.0vw, 150px);
  }
  .main_illust03 {
    width: clamp(60px, 12vw, 120px);
    left:15%;
  }
  .main_illust04 {
    width: clamp(35px, 10.9vw, 71px);
    left:20%;
  }
  .main_illust05 {
    width: clamp(90px, 18vw, 180px);
    left:30%;
  }
}
@media screen and (max-width:480px) {
  .main_illust01 {
    top: 60%;
    left: 2%;
  }
  .main_illust02 {
    top: 75%;
    left: 1%;
    width:60px;
  }
  .main_illust03 {
    top: 85%;
    left: 18%;
    width:60px;
  }
  .main_illust04 {
    top: 70%;

  }
  .main_illust05 {
    top: 65%;
width:70px;
  }
}
.container {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 200px;
  position: relative;
  transition: 2s;
}
.container.radius_topright {
  border-top-right-radius: clamp(100px, 20vw, 200px);
  padding-top: 80px;
}
.container.radius_bottomleft {
  border-bottom-left-radius: clamp(100px, 20vw, 200px);
  padding-top: 80px;
}
.container.radius_topright.up {
  padding-top: 40px;
}
@media screen and (max-width:1000px) {
  .container {
    padding-bottom: clamp(80px, 16vw, 160px);
  }
}
.container.padding-bottom0 {
  padding-bottom: 0;
}
.container.up {
  width: 100%;
  padding-top: 0px;
  position: relative;
}
.container.white_start::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 260px;
  background-color: #F9F6F0;
  border-top-left-radius: 200px;
  z-index: -1;
}
.container.white_start2::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 210px;
  background-color: #F9F6F0;
  z-index: 0;
}
.container.red_end::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 210px;
  background-color: #E72D3C;
  z-index: 0;
}
.container.white_end::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 200px;
  background-color: #F9F6F0;
  border-bottom-right-radius: 200px;
  z-index: -1;
}
.container.white_end2 {
  padding-top: 260px;
}
.container.white_end2::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 200px;
  background-color: #F9F6F0;
  border-bottom-left-radius: 200px;
  z-index: 0;
}
.container.red_end::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 400px;
  background-color: #E72D3C;
  border-bottom-right-radius: 200px;
  z-index: 0;
}
@media screen and (max-width:1000px) {
  .container.white_start::after {
    height: clamp(130px, 26vw, 260px);
    border-top-left-radius: clamp(50px, 20vw, 200px);
  }
  .container.white_end::after {
    height: 200px;
    border-bottom-right-radius: clamp(50px, 20vw, 200px);
  }
}
@media screen and (max-width:480px) {
  .container.white_end2::before {
    height: 100px;
    border-bottom-left-radius: 100px;
}
  .container.red_end::before {
    height: 150px;
    border-bottom-right-radius: 100px;
  }

}
.contents_box {
  width: 90%;
  padding: 80px 80px 0px;
  margin: auto;
  max-width: 1360px;
  position: relative;
}
.contents_box.padding-top0 {
  padding: 0px 80px 0px;
}
@media screen and (max-width:640px) {
  .contents_page .contents_box.padding-top0 {
    padding: 0px 0 5% 0px;
  }
  .contents_page .contents_box.padding-left0 {
    padding: 0px 0px 5% 0px;
  }
  .contents_page .contents_box.padding-right0 {
    padding: 0px 0px 5% 0px;
  }
}
.contents_box-item{
  width: 100%;
  padding: 5%;
  border-radius: 15px;
  margin-bottom: 60px;
}
.webflyer_shop-tag {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-top: 10px;
  margin-bottom: 40px;
}
.webflyer_shop-item {
  margin-right: 10px;
  margin-bottom: 10px;
  font-weight: 500;
  color: #E72D3C;
  background-color: #ffffff;
  padding: 2px 8px 3px 8px;
  border-radius: 5px;
}
.contents_box.webflyer {
  display: flex;
  justify-content: space-between;
}
.webflyer_inner {
  width: calc(100% - 530px - 40px);
  padding-top: 50px;
  margin-right: 40px;
}
@media screen and (max-width:740px) {
  .webflyer_inner {
    padding-top: 0px;
  }
}
.webflyer_list {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
.webflyer_list-box {
  margin: 0 10px;
  width: 50%;
}
.webflyer_list-box a:hover {
/*  opacity: 0.6;*/
}
.webflyer_image {
  width: auto;
  overflow: hidden;
  margin-bottom: 14px;
}
.webflyer_image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
@media screen and (max-width:1000px) {
  .webflyer_image img {
    height: clamp(110px, 20vw, 210px);
  }
}
.webflyer_text {
  position: relative;
  width: 100%;
  padding: 0 50px 0 10px;
  margin: 0 auto;
  font-size: 1.7rem;
  font-weight: 400;
}
.webflyer_text .circle {
  top: -45px;
  right: -10px;
}
.mystore {
  width: 530px;
  border-radius: 30px;
  background-color: #762A1C;
  padding: 50px 80px 50px 80px;
}
.webflyer_illust01 {
  position: absolute;
  left: 0;
  top: 100%;
}
.contents_box.news {
  border-radius: 30px;
  padding: 100px 80px 120px;
  background-color: #ffffff;
}
.news_list {
  width: 80%;
  max-width: 880px;
  margin: 0 auto 70px;
}
.news_list li {
  padding: 20px 10px;
  border-bottom: solid 1px #D1D1D1;
  font-weight: 400;
}
.news_list li a:hover {
/*  opacity: 0.6;*/
  color: #E72D3C;
}
.news_list-day {
  display: block;
  width: 100%;
  color: #434343;
}
.news_list-title {
  display: block;
  width: 100%;
  font-size: 1.7rem;
}
.news .button01 {
  width: 280px;
  height: 70px;
}
.news_illust01 {
  position: absolute;
  top: -5%;
  right: 3%;
}
.news_illust02 {
  position: absolute;
  top: 10%;
  right: 7%;
}
.originalbrand .button01 {
  width: 280px;
  height: 70px;
  position: absolute;
  right: 190px;
  top: 80px;
}
.originalbrand_list {
padding-top: 100px;
}
.originalbrand_list-item {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin-right: 100px;
  margin-bottom: 110px;
  padding-top: 5%;
  padding-left: 5%;
  position: relative;
}
.originalbrand_list-item.type02 {
   padding-top: 5%;
  padding-left: 0;
  padding-right: 5%;
}
.originalbrand_list-item a{
  display: flex;
  justify-content: flex-start;
  align-items:flex-start;
}
.originalbrand_list-item.type01 .originalbrand_logo{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}
.originalbrand_list-item.type02 .originalbrand_logo{
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
}
.originalbrand_image {
  flex-shrink: 1;
  height: 470px;
  max-width: 800px;
  margin-right: 0px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  transition: 2s;
}
.originalbrand_image img {
  object-fit: cover;
}
.originalbrand_illust01 {
  position: absolute;
  top: 0;
  right: 5%;
}
.originalbrand_illust02 {
  position: absolute;
  bottom: -8%;
  left: 0;
}
.originalbrand_name {
  flex-shrink: 0;
  width: 400px;
  display: flex;
  justify-content: center;
  text-align: center;
}
.originalbrand_name img{
  width: auto;
  max-inline-size: none;
}
@media screen and (max-width:1000px) {
  .originalbrand_name {
    width: clamp(200px, 40vw, 400px);
  }
  .originalbrand_name img{
    width: auto;
    max-inline-size: 47%;
  }
  .uotaku_name img{
    max-inline-size: 78%;
  }
  .cgc_name img{
    max-inline-size: 70%;
  }
}
.originalbrand_name span {
  font-size: 2rem;
  letter-spacing: -0.1em;
}
.originalbrand_list-item .circle {
  position: absolute;
  bottom: 45px;
  right: 350px;
  background-color: #FFF;
}
.originalbrand_list-item.type02 .circle {
  bottom: 45px;
  right: 0px;
}

@media screen and (max-width:1000px) {
  .originalbrand_list-item .circle {
    right: clamp(150px, 40vw, 350px);
  }
}
.recruit {
  width: 100%;
  height: 600px;
  padding-top: 10%;
  background-image: url(../images/recruit_image.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  text-align: center;
  position: relative;
  margin-bottom: 100px
}
@media screen and (max-width:1000px) {
  .recruit {
    height: 60vw;
  }
}
.recruit .contents_eng {
  position: static;
  transform: rotate(0deg);
  margin-bottom: 30px;
  font-size: clamp(3rem, 10vw, 10rem);
}
.recruit h3.contents_title {
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: #ffffff;
  line-height: 4rem;
  padding-left: 0px;
}
.recruit h3.contents_title::before {
  content: "";
  display: none;
}
.recruit .button01 {
  position: absolute;
  width: 425px;
  height: 184px;
  border-radius: calc(184px / 2);
  left: calc(50% - (425px / 2));
  bottom: -92px;
  margin-bottom: 0;
}
.recruit .button01 .button_item-c1 {
  width: calc(100% - 60px);
  font-size: 3.4rem;
}
@media screen and (max-width:480px) {
  .recruit .button01 {
    width: 80%;
    height: 18.4vw;
    border-radius: calc(18.4vw / 2);
    left: calc(50% - (80% / 2));
    bottom: calc(-18.4vw / 2);
  }
  .recruit .button01 .button_item-c1 {
    width: calc(100% - 70px);
    font-size: clamp(1.6rem, 3.4vw, 3.4rem);
  }
}
.contents_box.contents {
  border-radius: 30px 30px 0 0;
  padding: 100px 60px 100px;
  background-color: #ffffff;
}
.contents_box.contents2 {
  border-radius: 30px;
  padding: 100px 60px 100px;
  background-color: #ffffff;
}
@media screen and (max-width:480px) {
  .contents_box.contents {
    padding: 100px 0px 100px;
  }
}
.contents_list {
  width: calc(300px * 3);
  margin: auto auto 120px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.contents_list.column2 {
  width: calc(100% - 44px);
  max-width: calc((500px * 2) + 130px);
}

@media screen and (max-width:1140px) {
  .contents_list {
    width: calc(300px * 2);
  }
  .contents_list.column2 {
    width: 100%;
  }
}
@media screen and (max-width:800px) {
  .contents_list {
    width: 300px;
  }
  .contents_list.column2 {
    width: 100%;
  }
}
@media screen and (max-width:700px) {
  .contents_list.column2 {
    justify-content: center;
  }
}
.contents_list.column3 {
  width: 100%;
  max-width: calc((360px * 3) + 60px);
}
@media screen and (max-width:900px) {
  .contents_list.column3 {
  max-width: calc((360px * 2) + 40px);
}
}
@media screen and (max-width:570px) {
  .contents_list.column3 {
  max-width: calc(360px + 20px);
}
}
.contents_list li {
  margin: 0 15px 40px;
  position: relative;
}
.contents_image {
  width: 270px;
  height: 165px;
  overflow: hidden;
  margin-bottom: 20px;
}
.contents_list.column2 li {
  width: calc(50% - 65px);
  max-width: 500px;
  min-width: 200px;
  margin: 0 0 40px;
}
.contents_list.column2 li:nth-child(odd) {
  margin-right: 130px;
}
@media screen and (max-width:1140px) {
  .contents_list.column2 li {
    width: calc(50% - 5%);
  }
  .contents_list.column2 li:nth-child(odd) {
    margin-right: 10%;
  }
}
@media screen and (max-width:700px) {
  .contents_list.column2 li {
    width: 100%;
  }
  .contents_list.column2 li:nth-child(odd) {
    margin-right: 0%;
  }
}
.contents_list.column3 li {
  width: calc((100% / 3) - 20px);
  max-width: 360px;
  min-width: 200px;
  margin: 0 10px 40px;
}
@media screen and (max-width:900px) {
  .contents_list.column3 li {
  width: calc((100% / 2) - 20px);
  }
}
@media screen and (max-width:570px) {
  .contents_list.column3 li {
  width: calc(100% - 20px);
  }
}
.contents_list.column3 li h4{
  font-size: 2rem;
}
.contents_list.column3 li p{
  font-size: 1.6rem;
}
.column2 .contents_image {
  width: 100%;
  height: auto
}
.column3 .contents_image {
  width: 100%;
  height: 360px;
  position: relative;
}
.column3 .contents_image span{
  position: absolute;
  bottom: 10px;
  left: 10px;
}
.contents_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.contents_name {
  font-size: 1.8rem;
}
.contents .circle {
  position: absolute;
  bottom: 0;
  right: 0;
}
.topcontents_illust01 {
  position: absolute;
  top: -5%;
  right: 0;
}
@media screen and (max-width:640px) {
  .topcontents_illust01 {
  width: calc(231px / 2);
}
}
@media screen and (max-width:1280px) {
  .main_copy {
    top: 130px;
    left: 5%;
  }
  .contents_box.webflyer {
    display: block;
  }
  .webflyer_inner {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 60px;
  }
  .mystore {
    width: 80%;
    max-width: 530px;
    padding: 50px 5% 50px 5%;
    margin: 0 auto;
  }
}
@media screen and (max-width:1200px) {
  .main_title {
    font-size: clamp(3.1rem, 10vw, 10rem);
    top:70%;
  }
}
@media screen and (max-width:1000px) {
  .main_title {
    right: 0;
    top:70%;
  }
  .contents_box {
    width: 90%;
    padding: 60px 5% 120px;
  }
  .contents_page .contents_box {
    width: 90%;
    padding: 60px 5% 0px;
  }
  .contents_page .contents_box.contents2 {
    padding: 60px 5% 100px;
  }
  .mystore {
    width: 100%;
  }
  .originalbrand.contents_box {
    padding-top: 100px;
    width:100%;
  }
  .originalbrand .contents_title {
    margin-bottom: 130px;
  }
  .originalbrand .button01 {
    right: 30px;
    top: 240px;
    z-index: 1;
  }
  .originalbrand_list-item {
  }
  .originalbrand_image {
    height: clamp(230px, 38vw, 380px);
  }
  .originalbrand_name{
    
  }
  .originalbrand_logo{
    width: clamp(78px, 18vw, 180px);
  }
}
@media screen and (max-width:640px) {
  .contents_box.webflyer{
    padding: 60px 0% 120px;
  }
  .contents_box.news {
    padding: 60px 5% 120px;
  }
  .news_list {
    width: 100%;
  }
  .news .button01 {
    margin: 0 auto;
    width:100%;
  }
}
/*サブページ*/
.contents_page {
  background-color: #ffffff;
  position: relative;
}
.contents_page::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 400px;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
  background-color: #F9F6F0;
  z-index: 0;
}
@media screen and (max-width:640px) {
  .contents_page::before {
    border-bottom-left-radius: calc(100% / 10);
    border-bottom-right-radius: calc(100% / 10);
  }
}
.contents_page .header_logotitle {
  background-color: #E72D3C;
}
.contents_page .header_logotitle a {
  background-image: url(../images/sub_header_logo.svg);
}
.contents_mainimage {
  height: 250px;
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 160px;
}
@media screen and (max-width:640px) {
  .contents_mainimage {
  margin-bottom: 60px;
}
}
.contents_illust01 {
  top: 0px;
  left: 0px;
}
.contents_illust02 {
  top: 73px;
  left: 113px;
}
.contents_illust03 {
  top: -60px;
  left: 280px;
}
.contents_illust04 {
  top: -50px;
  right: 0px;
}
.contents_illust05 {
  top: 58px;
  right: 147px;
}
.contents_illust06 {
  top: 170px;
  right: 36px;
}
@media screen and (max-width:1000px) {
  .contents_illust01 {
    width: clamp(36px, 7.3vw, 73px);
  }
  .contents_illust02 {
    width: clamp(88px, 17.7vw, 177px);
    left: clamp(60px, 11.3vw, 113px);
  }
  .contents_illust03 {
    width: clamp(73px, 14.7vw, 147px);
    left: clamp(140px, 28.0vw, 280px);
  }
  .contents_illust04 {
    width: clamp(47px, 9.5vw, 95px);
  }
  .contents_illust05 {
    width: clamp(50px, 10.3vw, 103px);
    right: clamp(73px, 14.7vw, 147px);
  }
  .contents_illust06 {
    width: clamp(74px, 14.9vw, 149px);
    right: clamp(18px, 3.6vw, 36px);
  }
}
.contents_mainimage img {
  position: absolute;
}
.contents_page h1 {
  display: inline-block;
  padding-top: 50px;
  font-size: 4rem;
  font-weight: 500;
}
.contents_page h1::after {
  content: "";
  width: 25px;
  height: 5px;
  margin: 10px auto;
  display: block;
  background-color: #E72D3C;
}
.contents_page .sub_eng {
  position: absolute;
  bottom: -73px;
  left: 54px;
  font-size: 12rem;
  font-family: "Oooh Baby", cursive;
  font-weight: 400;
  font-style: normal;
  color: #E72D3C;
}
@media screen and (max-width:1000px) {
  .contents_page .sub_eng {
    font-size: clamp(6rem, 12vw, 12rem);
  }
}
@media screen and (max-width:640px) {
  .contents_page .sub_eng {
    bottom: clamp(-36px, -7.3vw, -73px);
  }
}
/*店舗ページ*/
.box_mystor {
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  padding: 80px 80px 80px;
}
@media screen and (max-width:480px) {
  .box_mystor {
    padding: 40px 5% 40px;
  }
}
.box_mystor-list {
  width: 100%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.box_mystor-item {
  width: calc(50% - 40px);
  max-width: 500px;
  min-width: 270px;
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width:840px) {
  .box_mystor-item {
    width: 100%;
  }
}
.contents_page h4 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 25px;
}
.contents_page h4.font_weight700 {
  font-weight: 700;
}
.contents_page h4.under_line {
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
  font-weight: 700;
}
.contents_page h4.under_line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25px;
  border-bottom: solid 2px #E72D3C;
}
.contents_page h4 span {
  padding: 5px 15px;
  border-radius: 5px;
}

.contents_page li p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}
.button-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.button-box.flex-start {
  justify-content: flex-start;
  flex-wrap: wrap;
}
.button-box.flex-start a {
  margin: 0 20px 20px 0;
}
.button-box.center {
  justify-content: center;
}
@media screen and (max-width:500px) {
  .button-box {
    display: block;
  }
}

.factory_box {
  margin: 20px 0;
}
.factory_name {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.5;
}

.store_name_wrap {
  display: flex;
  justify-content: space-between;
}
.line_add_button {
  margin-left: 15px;
}

/*お知らせ記事ページ*/
.box_news {
  max-width: 900px;
}
.box_news .news_day {
  display: inline-block;
  font-size: 2rem;
  margin-bottom: 30px;
}
.box_news .news_title {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 70px;
  text-wrap: nowrap;
  margin-bottom: 70px;
}
.box_news p {
  margin-bottom: 70px;
  line-height: 230%;
}
/*企業情報*/
.contents_box.box_100 {
  width: 100%;
  max-width: 100%;
  padding: 0px 0px 0px;
}
.contents_box.box_copy {
  display: flex;
  justify-content: flex-end;
  padding-top: 60px;
  margin-bottom: 60px;
}
.contents_box.white_box {
  border-radius: 30px;
  padding: 100px 60px 100px;
}
.box_copy img {
  width: 80%;
  object-fit: cover;
  height: 480px;
}
@media screen and (max-width:640px) {
  .box_copy img {
    height: 60vw;
  }
}

.contents_box.box_image {
  display: flex;
  justify-content: flex-start;
  padding-top: 60px;
  margin-bottom: 0px;
}
.box_image img {
  width: 85%;
  object-fit: cover;
  height: 550px;
}
@media screen and (max-width:640px) {
  .box_image img {
  height: 60vw;
}
}
p.width50 {
  width: 50%;
}
@media screen and (max-width:640px) {
  p.width50 {
  width: 100%;
}
}
.contents_copy {
  position: absolute;
  top: 0px;
  left: 10%;
  z-index: 1;
  font-size: clamp(1.8rem, 3.5vw, 3.3rem);
  line-height: clamp(30px, 6.5vw, 60px);
  font-weight: 500;
}
.contents_copy span {
  padding: 0px 10px;
  background: linear-gradient(transparent 0%, #E72D3C 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  border-radius: 4px;
}
ul.about_list {
  width: 100%;
  margin-bottom: 200px;
}
ul.about_list.margin_bottom0 {
  margin-bottom: 0;
}
ul.about_list li {
  border-bottom: solid 1px #C9C9C9;
  position: relative;
  display: flex;
  justify-content: flex-start;
  font-size: 1.7rem;
  padding: 30px 0;
}
ul.about_list li .about_list-left {
  width: 20%;
  padding-left: 10px;
  font-weight: 500;
}
ul.about_list li .about_list-right {
  width: 80%;
  padding-left: 20px;
  font-weight: 400;
}
ul.about_list li::before {
  content: "";
  width: 20%;
  position: absolute;
  left: 0;
  bottom: -1px;
  border-bottom: solid 2px #E72D3C;
}
.contents_img {
  display: flex;
  justify-content: center;
  margin: 0 auto 60px;
}
.text_center {
  text-align: center;
  margin-bottom: 40px;
}
.text_box {
  width: 90%;
  max-width: 900px;
  margin: 0 auto 40px;
  border-radius: 15px;
  padding: 40px;
  position: relative;
}
.text_box.width100{
  width: 100%;
  max-width: none;
}
@media screen and (max-width:640px) {
  .text_box {
    width: 100%;
  }
}
.text_box.padding0 {
  padding: 0;
}
.text_box.padding-top0 {
  padding: 0 40px 40px;
}
.text_box p {
  margin-bottom: 80px;
}
.text_box p.margin_bottom0 {
  margin-bottom: 0px;
}
.text_box2 {
  width: 90%;
  max-width: 900px;
  margin: 0 auto 80px;
  display: flex;
  flex-wrap: wrap;
}
.text_box2 p {
  width: calc(60% - 40px);
  max-width: 476px;
  margin-right: 40px;
  margin-bottom: 40px;
  padding-top: 60px;
}
.text_box2 img {
  width: 40%;
  height: auto;
}
@media screen and (max-width:640px) {
  .text_box2 p {
    width: 100%;
    margin-right: 0;
  }
  .text_box2 img {
    width: 90%;
    max-width: 400px;
    height: auto;
  }
}
.text_note {
  font-size: 1.4rem;
}
.text_note-box {
  display: inline-block;
  padding: 20px 40px;
  margin: 2rem 2rem;
  border-radius: 15px;
}
.line_red-center::after {
  content: "";
  width: 2px;
  height: 40px;
  background-color: #E72D3C;
  position: absolute;
  left: calc(50% - 1px);
  bottom: -40px;
}
.box_column2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 90%;
  margin: auto;
}
.box_column2.width100{
  width: 100%;
}
.box_column2.space_around{
  justify-content: space-around;
}
.box_column2.space_between{
  justify-content: space-between;
}
.box_column2 .box_column2 {
  width: 100%;
}
.box_column2 .text_box {
  width: calc(50% - 25px);
  margin: 0 0 40px;
}
.box_column2 .text_box:nth-child(odd) {
  margin-right: 50px;
}

@media screen and (max-width:640px) {
  .box_column2 .text_box {
    width: 100%;
  }
  .box_column2 .text_box:nth-child(odd) {
    margin-right: 0px;
  }
}
.column_box-right{
  max-width: 475px;
  padding-left: 15px;
  margin-bottom: 60px;
}
.column_box-left img{
  margin-bottom: 20px;
}
.column_box-right p{
  margin-bottom: 40px;
}
.big_number {
  font-family: "Oooh Baby", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 8rem;
  position: absolute;
  left: 5%;
  top: -5rem;
}
.company_img05 {
  padding: 0!important;
}
.sdgs_wrap {
  max-width: 600px;
  margin: 0 auto;
}


/**コジカカード**/
.cogca .text_box{
  max-width: 1200px;
  padding: 60px 40px;
}
.cogca .text_box.padding-top0{
  padding: 0px 40px 60px;
}
.cogca .text_box p.font_size20 {
  line-height: 220%;
}
@media screen and (max-width:1280px) {
  .cogca .text_box p.font_size20{
    padding-right: 310px;
  }
}
@media screen and (max-width:800px) {
  .cogca .text_box p.font_size20{
    padding-top: 300px;
    padding-right: 0px;
  }
}
@media screen and (max-width:640px) {
  .cogca .text_box.padding-top0{
    padding: 0px 20px 60px;
  }
  .cogca .text_box{
    padding: 60px 20px;
  }
}

.cogca .text_box .big_number {
  left: -1rem;
}
.big_number.top30 {
  top: 30px;
}
.text_box-head {
  position: relative;
  width: 100%;
  max-width: 670px;
  height: 140px;
  margin: 0 auto;
}
.text_box .bg_cover {
  position: absolute;
  top: -55px;
  width: 100%;
  height: 110px;
  line-height: 110px;
  border-radius: 55px;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
}
@media screen and (max-width:640px) {
  .text_box .bg_cover {
    top: clamp(-25px, -5vw, -55px);
    height: clamp(50px, 11vw, 110px);
    line-height: clamp(50px, 11vw, 110px);
    border-radius: clamp(25px, 5vw, 55px);
    font-size: clamp(1.8rem, 3vw, 3rem);
    padding: 0 2rem;
  }
}
@media screen and (max-width:434px) {
  .text_box .bg_cover {
    line-height: 2rem;
    height: auto;
    padding: 1rem 2rem;
    border-radius:3rem;
    top: -3rem;
  }
}
.frame_red {
  width: 100%;
  border: solid 1px #E72D3C;
  border-radius: 10px;
  padding: 30px;
  color: #E72D3C;
}
.frame_red p {
  margin: 0px auto;
  padding: 1rem;
  line-height: 200%;
  font-size: 1.7rem;
}
.cogica_img01 {
  background-image: url(../images/cogica/cogca01.png);
  background-repeat: no-repeat;
  background-position: 90% 70px;
  background-size: 307px auto;
}
.cogica_img02 {
  background-image: url(../images/cogica/cogca02.png);
  background-repeat: no-repeat;
  background-position: 90% 20px;
  background-size: 222px auto;
}
.cogica_img03 {
  background-image: url(../images/cogica/cogca03.png);
  background-repeat: no-repeat;
  background-position: 90% 20px;
  background-size: 220px auto;
}
@media screen and (max-width:800px) {
  .cogica_img01 {
  background-position: center 200px;
}
.cogica_img02 {
  background-position: center 100px;
}
.cogica_img03 {
  background-position: center 140px;
}
}
.margin_bottom5 {
  margin-bottom: 5px;
}
.margin_bottom20 {
  margin-bottom: 20px;
}
.margin_bottom60 {
  margin-bottom: 60px;
}
.margin_right40{
  margin-right: 40px;
}
.cogica_official_link {

}
.cogica_official {
  display: inline-block;
  background: #9BCC20;
  color: #ffffff;
  font-weight: bold;
  padding: 30px 90px 30px 40px;
  font-size: 2rem;
  border-radius: 10px;
}
.cogica_official_box {
  display: flex;
}
.cogica_official_box {
  display: flex;
}
@media screen and (max-width:640px) {
  .cogica_official {
    padding: 20px 20px 20px 20px;
    font-size: 1.5rem;
    border-radius: 10px;
    width: 100%;
  }
}
.cogica_official_wrap {
  margin: 0px auto 50px auto;
  max-width: 600px;
}
.cogica_official_wrap a:hover {
  opacity: 0.6;
}
@media screen and (max-width:480px) {
  .cogica_official_wrap {
    margin: 20px auto 50px auto;
    max-width: 300px;
  }
}


/*SDGs*/
.wideimage{
  width: 100%;
}
.wideimage img{
  width: 100%;
  height: auto;
}
ul.list{
  width: 90%;
  margin: auto;
}
.list li{
  display: block;
  width: 100%;
  position: relative;
  margin-bottom: 48px;
}
li.list_cover {
  display: flex;
  align-items: center;
  height: auto;
  min-height: 120px;
  border-radius: 60px;
  padding-left: 80px;
  padding-right: 80px;
  font-size: 2.4rem;
  font-weight: 500;
}

li.list_cover .big_number{
  line-height: 8rem;
  top:calc(60px - 4rem);
  left:0;
}
@media screen and (max-width:640px) {
li.list_cover {
    font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  height: auto;
  min-height: 80px;
  border-radius: 30px;
  }
  li.list_cover .big_number{
  line-height: 8rem;
  top:calc(40px - 4rem);
  left:0;
}
  .list.list_sdgs li.list_cover {
    padding-right: 5%;
  }
}
