@charset "UTF-8";
/*=============================================*/
/*Font import */
/*=============================================*/
@import url(https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap);
/*=============================================*/
/*Reset CSS*/
/*=============================================*/
article, aside, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, main {
  display: block;
}

blockquote, body, dd, div, dl, dt, fieldset, figure, form, h1, h2, h3, h4, h5, h6, input, li, ol, p, pre, td, textarea, th, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

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

li {
  list-style: none;
}

a,
a:link {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  height: auto;
  vertical-align: bottom;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

button,
input,
select,
textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

input[type=radio]::-ms-check,
input[type=checkbox]::-ms-check {
  display: none;
}

i {
  font-style: normal;
}

textarea {
  resize: none;
  font-family: sans-serif;
}

* {
  box-sizing: border-box;
}

/*=============================================*/
/*Common Base*/
/*=============================================*/
html {
  font-size: 62.5%;
  overflow: auto;
}

body {
  margin: auto;
  width: auto;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  overflow-x: hidden;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}

a, b, dd, dt, li, p, span, td, th {
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  color: inherit;
}

.sp_only {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .sp_only {
    display: block !important;
  }
  .pc_only {
    display: none !important;
  }
}
.center {
  margin: auto;
  text-align: center;
  line-height: 180%;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/*=============================================*/
/*  layout  Base  */
/*=============================================*/
.main_width {
  width: 96%;
  max-width: 1100px;
  margin: auto;
}
.main_width.size1200 {
  max-width: 1200px;
}
.main_width.size900 {
  max-width: 900px;
}
.main_width.size800 {
  max-width: 800px;
}

section {
  padding: 100px 0;
}

body {
  background-color: #000000;
}

/*=============================================*/
/*  layout  */
/*=============================================*/
/********************************************/
/*header */
/********************************************/
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
  padding: 20px 0 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.header .flex {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}
.header .logo_box {
  width: 20%;
  max-width: 191px;
  margin-right: 20px;
}
.header .nav_box {
  width: 80%;
}

.header .nav_box .contact_btn_box {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 5px;
}
.header .nav_box .contact_btn_box a {
  position: relative;
  display: block;
  padding: 0.5em 3em 0.5em 2.5em;
  border: 1px solid #fff;
  border-radius: 30px;
}
.header .nav_box .contact_btn_box a:before {
  position: absolute;
  top: 0;
  right: 0.5em;
  bottom: 0;
  content: "";
  width: 5px;
  height: 8px;
  margin: auto;
  background: url(../img/common/ico-arrow.svg) no-repeat center/100%;
}

.header .nav_box .contact_btn_box a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.header .nav_box .contact_btn_box a:hover {
  background-color: #222222;
}

.header .nav_box .main_nav {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  justify-content: flex-end;
}
.header .nav_box .main_nav .list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}
.header .nav_box .main_nav .list li {
  font-size: 1.6rem;
  min-width: 6em;
}
.header .nav_box .main_nav .list li a {
  display: block;
  padding: 0.6em 1.5em;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}
.header .nav_box .main_nav .list li:last-child a {
  padding-right: 0;
}

.header .nav_box .main_nav .list li a {
  position: relative;
  z-index: 1;
}
.header .nav_box .main_nav .list li a .inner {
  display: block;
  overflow: hidden;
  position: relative;
}
.header .nav_box .main_nav .list li a .txt_base,
.header .nav_box .main_nav .list li a .txt_next {
  display: inline-block;
  width: 100%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  transform: translate(0px);
  overflow: hidden;
  text-align: center;
  font-size: 1.6rem;
}
.header .nav_box .main_nav .list li a .txt_next {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(150%);
  font-size: 0.8em;
  padding-top: 0.3em;
}
.header .nav_box .main_nav .list li a:hover .txt_base {
  transform: translateY(-110%);
}
.header .nav_box .main_nav .list li a:hover .txt_next {
  transform: translateY(0);
}

header #sp_main_nav {
  display: none;
}

/********************************************/
/*fv_block */
/********************************************/
.fv_block {
  position: relative;
  padding-bottom: 0;
}
.fv_block:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 1%, rgb(0, 0, 0) 100%);
  z-index: 1;
}

.main_slide_box {
  position: relative;
  max-width: 100vw;
  margin: 0 calc(50% - 50vw);
  overflow: hidden;
}
.main_slide_box:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #3b3b3b;
  mix-blend-mode: multiply;
  z-index: 2;
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.main_slide_box .swiper-slide-active .slide-img,
.main_slide_box .swiper-slide-duplicate-active .slide-img,
.main_slide_box .swiper-slide-prev .slide-img {
  animation: zoom 10s linear 0s 1 normal both;
}
.main_slide_box .slide-img img {
  object-fit: cover;
  height: 100vh;
  width: 100vw;
}

.fv_block .en_ttl {
  margin-bottom: 0.3em;
  font-size: 12.5rem;
  font-size: clamp(5rem, 10vw, 12.5rem);
  color: #747474;
  line-height: 1;
}
.fv_block .en_ttl b,
.fv_block .en_ttl span {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  display: block;
  font-size: 1em;
}

.fv_block .jp_ttl {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 2.5rem;
  font-size: clamp(1.5rem, 2vw, 2.5rem);
  letter-spacing: 0.1em;
  color: #E5E5E5;
}

.fv_block .fv_catch {
  position: absolute;
  top: 50%;
  padding-left: 5%;
  transform: translateY(-50%);
  z-index: 2;
}

/********************************************/
/*news_block */
/********************************************/
.news_block .flex {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  padding: 50px;
  border: 1px solid #747474;
}
.news_block .flex .left {
  width: 20%;
  margin-right: 5%;
}
.news_block .flex .right {
  width: 75%;
}

.news_block .right .date {
  margin-bottom: 1.5em;
  font-size: 1.4rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}
.news_block .right .post_ttl {
  margin-bottom: 1.5em;
  font-size: 2rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
}

/********************************************/
/*about_block */
/********************************************/
.about_block {
  position: relative;
  padding-bottom: 500px;
}
.about_block .main_width {
  position: relative;
  z-index: 1;
}
.about_block:before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 600px;
  background: url(../img/top/about-bg.jpg) no-repeat top center/cover;
  opacity: 0.3;
}
.about_block:after {
  position: absolute;
  bottom: 400px;
  left: 0;
  content: "";
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.99) 1%, rgba(0, 0, 0, 0.01) 98%, rgba(0, 0, 0, 0) 99%);
}

.about_block .about_txt {
  padding-top: 50px;
  text-align: center;
  font-size: clamp(1.4rem, 1.5vw, 1.9rem);
}
.about_block .about_txt p {
  font-size: 1em;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  line-height: 4;
  letter-spacing: 0.2em;
}

/********************************************/
/* service_block */
/********************************************/
.service_link_list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}
.service_link_list li {
  width: 32%;
  margin-right: 2%;
}
.service_link_list li:nth-child(3n) {
  margin-right: 0;
}

.service_link_list li a {
  position: relative;
  display: block;
  height: 100%;
  padding: 30px 20px 50px;
  border: solid 1px #747474;
  border-radius: 20px;
  text-align: center;
}
.service_link_list li a i {
  display: block;
  margin-bottom: 30px;
}
.service_link_list li a i.txt_row2 {
  margin-bottom: 15px;
}
.service_link_list li a .txt {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 1.8rem;
}

.service_link_list li a:after {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  content: "";
  width: 17px;
  height: 10px;
  margin: auto;
  background: url(../img/common/ico-arrow-bottom.svg) no-repeat center/100%;
}

.service_link_list li a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.service_link_list li a:hover {
  background-color: #222222;
}

.service_contents_box {
  padding-top: 110px;
}
.service_contents_box .inner_ornament {
  position: relative;
  padding-top: 120px;
}
.service_contents_box .inner_ornament:before {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 27px;
  background: url(../img/top/repeat-ornament.svg) repeat-x center/contain;
}

.s_ttl {
  position: relative;
  margin-bottom: 1.5em;
  font-size: clamp(2rem, 3.08vw, 3.8rem);
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  letter-spacing: 0.1em;
}
.s_ttl .ico {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 101px;
  height: 83px;
  margin: auto;
}
.s_ttl .txt {
  display: inline-block;
  padding-left: 110px;
}

.service_contents_box .contents_flex {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  margin-bottom: 100px;
}
.service_contents_box .contents_flex .left {
  width: 47%;
  margin-right: 6%;
}
.service_contents_box .contents_flex .right {
  width: 47%;
}

.service_contents_box .contents_flex .img_layout_box img {
  border-radius: 30px;
}
.service_contents_box .contents_flex .img_layout_box .img02,
.service_contents_box .contents_flex .img_layout_box .img01 {
  width: 60%;
}
.service_contents_box .contents_flex .img_layout_box .img02 {
  position: relative;
  top: -30px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  margin-left: auto;
}

.service_contents_box .contents_flex .right {
  padding-top: 20px;
}
.service_contents_box .contents_flex .c_ttl {
  margin-bottom: 1em;
  font-size: 2.8rem;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  line-height: 1.8;
}

.branding_case_list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.branding_case_list li {
  width: 48%;
  margin-right: 4%;
  margin-bottom: 40px;
}
.branding_case_list li:nth-child(2n) {
  margin-right: 0;
}

.branding_case_list li {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}
.branding_case_list li .img {
  width: 25%;
  margin-right: 5%;
}
.branding_case_list li .txt {
  width: 70%;
}

.branding_case_list li .name {
  display: block;
  margin-bottom: 0.4em;
  font-size: 2.2rem;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
}
.branding_case_list li .sub {
  display: block;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
}

.service_contents_box .ohanabatake_logo {
  text-align: center;
  margin-bottom: 40px;
}
.service_contents_box .ohanabatake_logo img {
  width: 80%;
  max-width: 330px;
}
.service_contents_box .ohanabatake_logo span {
  display: block;
  margin-top: 10px;
  font-size: 1.7rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
}

.shop_case_list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.shop_case_list li {
  width: 23.5%;
  margin-right: 2%;
  margin-bottom: 40px;
}
.shop_case_list li:nth-child(4n) {
  margin-right: 0;
}
.shop_case_list li img {
  margin-bottom: 10px;
}
.shop_case_list li p {
  display: block;
  text-align: center;
  font-size: 1.6rem;
}

.loop_slide_box .swiper-wrapper {
  transition-timing-function: linear;
}

.full_width {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

.kitchen_car_about_box {
  padding-top: 100px;
  padding-bottom: 100px;
}
.kitchen_car_about_box .inner {
  background: url(../img/top/kitchen-car-bg.png) no-repeat center/contain;
}

.kitchen_car_about_box .sub_center_ttl {
  margin-bottom: 1.6em;
  text-align: center;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
}

.kitchen_car_about_box .base_txt {
  padding-top: 80px;
  padding-bottom: 80px;
}
.kitchen_car_about_box .base_txt p {
  line-height: 4.5;
}
.kitchen_car_about_box .base_txt p a {
  text-decoration: underline;
}

.ico_car_list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 100px;
}
.ico_car_list li {
  position: relative;
  width: 48%;
  margin-right: 4%;
  margin-bottom: 1.8em;
  font-size: 1.8rem;
  padding-left: 40px;
  letter-spacing: 0.15em;
}
.ico_car_list li:nth-child(2n) {
  margin-right: 0;
}
.ico_car_list li:before {
  position: absolute;
  left: 0;
  top: 5px;
  content: "";
  width: 28px;
  height: 21px;
  background: url(../img/top/ico-kitchen-car.svg) no-repeat center/100%;
}

.ico_car_list li.last {
  width: 100%;
  margin-right: 0;
  text-align: right;
  padding-left: 0;
  padding-top: 1em;
}
.ico_car_list li.last:before {
  content: none;
}

.kitchen_car_business_box .flex {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}
.kitchen_car_business_box .flex .left {
  width: 40%;
  margin-right: 5%;
}
.kitchen_car_business_box .flex .right {
  width: 55%;
  padding-top: 40px;
}

.kitchen_car_business_box .bg_red_ttl {
  position: relative;
  left: -20%;
  width: 120%;
  margin-bottom: 1em;
  padding: 1em;
  background-color: rgba(183, 0, 0, 0.6);
  font-size: 2.3rem;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  line-height: 1.5;
}

.kitchen_car_business_box .base_txt p {
  line-height: 2.5;
}

.kitchen_car_business_box .btn_list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 50px;
}
.kitchen_car_business_box .btn_list li {
  width: 49%;
  margin-right: 2%;
  margin-bottom: 10px;
}
.kitchen_car_business_box .btn_list li:nth-child(2n) {
  margin-right: 0;
}

.kitchen_car_business_box .btn_list li a {
  display: block;
  padding: 1em 0.5em;
  background-color: #333;
  border: 1px solid #333;
  font-size: 1.7rem;
  text-align: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.kitchen_car_business_box .btn_list li a:hover {
  border-color: #fff;
  background-color: #000000;
}

/********************************************/
/* history_block */
/********************************************/
.history_box .base_ttl {
  margin-bottom: 0;
}

.history_box .inner {
  padding-top: 50px;
  background: url(../img/top/history-bg-00.png) no-repeat center/contain;
}

.history_box .history_list {
  max-width: 900px;
  margin: auto;
  padding-left: 9px;
  margin-bottom: 50px;
}
.history_box .history_list li {
  position: relative;
  padding-left: 25px;
  padding-bottom: 50px;
  border-left: 1px solid #fff;
}
.history_box .history_list li:before {
  position: absolute;
  left: -9px;
  top: 22px;
  content: "";
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 50px;
}

.history_box .history_list {
  position: relative;
}
.history_box .history_list:after {
  position: absolute;
  left: 9px;
  bottom: -50px;
  content: "";
  width: 1px;
  height: 50px;
  background-color: #fff;
}

.history_box .history_list li .year {
  margin-bottom: 0.3em;
  line-height: 1;
  font-size: 5rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
}
.history_box .history_list li .txt {
  padding-bottom: 0.5em;
  font-size: 1.8rem;
  line-height: 1.8;
}

/********************************************/
/* Footer */
/********************************************/
.footer_main {
  background-color: #222222;
  padding: 60px 0 60px;
}

.footer_main .company_info {
  padding-bottom: 80px;
}
.footer_main .company_info .name {
  margin-bottom: 0.3em;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 2rem;
}
.footer_main .company_info .txt {
  line-height: 1.8;
  font-size: 1.7rem;
}

.footer_main .copyright {
  text-align: right;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
}

/*=============================================*/
/*media query  Tablet ipad 5.7inch */
/*=============================================*/
@media screen and (max-width: 768px) {
  /*=============================================*/
  /*Common Base*/
  /*=============================================*/
  body {
    font-size: 1.4rem;
  }
  /*=============================================*/
  /*  layout  Base  */
  /*=============================================*/
  .main_width {
    width: 92%;
  }
  section {
    padding: 40px 0 40px;
  }
  /********************************************/
  /* page link*/
  /********************************************/
  #about,
  #service,
  #history,
  #news {
    padding-top: 80px;
    margin-top: -40px;
  }
  /********************************************/
  /* body fixed*/
  /********************************************/
  /*=============================================*/
  /*  layout  */
  /*=============================================*/
  /********************************************/
  /*header */
  /********************************************/
  .header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 10;
    padding: 15px 10px 10px;
    background-color: rgba(0, 0, 0, 0.3);
  }
  .header .logo_box {
    width: 35%;
  }
  /********************************************/
  /*  Sp-menu btn*/
  /********************************************/
  .sp_menu_trigger,
  .sp_menu_trigger span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
    cursor: pointer;
  }
  .sp_menu_trigger {
    position: fixed;
    top: 3px;
    right: 0;
    width: 50px;
    height: 50px;
    z-index: 9999;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .sp_menu_trigger span {
    position: absolute;
    background: #fff;
    width: 27px;
    height: 2px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .sp_menu_trigger span:nth-of-type(1) {
    top: 15px;
  }
  .sp_menu_trigger span:nth-of-type(2) {
    top: 0;
    bottom: 0;
    width: 20px;
    right: 6px;
  }
  .sp_menu_trigger span:nth-of-type(3) {
    bottom: 15px;
    width: 15px;
    right: 11px;
  }
  .sp_menu_trigger.nogap {
    top: 0;
    right: 0;
  }
  .sp_menu_trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(9px) rotate(-315deg);
    transform: translateY(9px) rotate(-315deg);
  }
  .sp_menu_trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .sp_menu_trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-9px) rotate(315deg);
    transform: translateY(-9px) rotate(315deg);
    width: 27px;
    right: 0;
  }
  /********************************************/
  /*  Sp-menu list*/
  /********************************************/
  #sp_main_nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100vw;
    height: 100vh;
    -webkit-overflow-scrolling: touch;
    z-index: 9998;
    overflow-y: scroll;
    padding: 70px 20px 60px;
    box-sizing: border-box;
    text-align: left;
  }
  #sp_main_nav .nav_list > li {
    display: block;
    padding: 1em 0;
    text-align: center;
    font-size: 2rem;
  }
  #sp_main_nav .nav_list > li a {
    font-size: 1em;
  }
  #sp_main_nav .nav_list {
    width: 100%;
    overflow: hidden;
  }
  #sp_main_nav .nav_list {
    position: relative;
    opacity: 0;
    transition: all 1.5s;
    transform: translateY(3em);
  }
  #sp_main_nav.is_animate .nav_list {
    opacity: 1;
    transform: translateY(0);
  }
  /********************************************/
  /*fv_block */
  /********************************************/
  .main_slide_box:before {
    background-color: rgba(59, 59, 59, 0.9);
  }
  .fv_block .en_ttl {
    font-size: clamp(6rem, 10vw, 12.5rem);
  }
  .fv_block .jp_ttl {
    font-size: clamp(1.9rem, 2vw, 2.5rem);
  }
  /********************************************/
  /*news_block */
  /********************************************/
  .news_block .flex {
    display: block;
    padding: 30px 20px;
  }
  .news_block .flex .left {
    width: 100%;
    margin-right: 0;
  }
  .news_block .flex .left .base_ttl {
    margin-bottom: 30px;
  }
  .news_block .flex .right {
    width: 100%;
  }
  .news_block .right .date {
    font-size: 1.2rem;
  }
  .news_block .right .post_ttl {
    margin-bottom: 1.2em;
    font-size: 1.8rem;
  }
  /********************************************/
  /*about_block */
  /********************************************/
  .about_block {
    padding-bottom: 200px;
  }
  .about_block:before {
    height: 200px;
  }
  .about_block:after {
    bottom: 100px;
    height: 100px;
  }
  .about_block .about_txt {
    text-align: left;
    padding-top: 0;
    font-size: clamp(1.4rem, 1.5vw, 1.9rem);
  }
  /********************************************/
  /* service_block */
  /********************************************/
  .service_link_list {
    display: block;
  }
  .service_link_list li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .service_link_list li a {
    padding: 20px 20px 30px;
    text-align: left;
  }
  .service_link_list li a .inner {
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .service_link_list li a i {
    display: block;
    margin-bottom: 0;
  }
  .service_link_list li a i.txt_row2 {
    margin-bottom: 0;
  }
  .service_link_list li a .txt {
    padding-left: 10px;
    font-size: 1.6rem;
  }
  .service_contents_box {
    padding-top: 80px;
  }
  .service_contents_box .inner_ornament {
    padding-top: 80px;
  }
  .service_contents_box .inner_ornament:before {
    height: 20px;
  }
  .s_ttl {
    font-size: clamp(2rem, 3.08vw, 3.8rem);
  }
  .s_ttl .ico {
    width: 70px;
    height: 57px;
  }
  .s_ttl .txt {
    padding-left: 90px;
  }
  .service_contents_box .contents_flex {
    display: block;
    margin-bottom: 60px;
  }
  .service_contents_box .contents_flex .left {
    width: 100%;
    margin-right: 0;
  }
  .service_contents_box .contents_flex .right {
    width: 100%;
  }
  .service_contents_box .contents_flex .img_layout_box img {
    border-radius: 15px;
  }
  .service_contents_box .contents_flex .right {
    padding-top: 0;
  }
  .service_contents_box .contents_flex .c_ttl {
    font-size: 2rem;
  }
  .branding_case_list {
    display: block;
  }
  .branding_case_list li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
  .branding_case_list li .name {
    font-size: 1.8rem;
  }
  .branding_case_list li .sub {
    font-size: 1.4rem;
  }
  .service_contents_box .ohanabatake_logo {
    padding-top: 30px;
    margin-bottom: 30px;
  }
  .service_contents_box .ohanabatake_logo img {
    width: 60%;
  }
  .shop_case_list li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 20px;
  }
  .shop_case_list li:nth-child(4n) {
    margin-right: 4%;
  }
  .shop_case_list li:nth-child(2n) {
    margin-right: 0;
  }
  .shop_case_list li img {
    margin-bottom: 5px;
  }
  .shop_case_list li p {
    font-size: 1.3rem;
  }
  .kitchen_car_about_box {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .kitchen_car_about_box .inner {
    background: url(../img/top/kitchen-car-bg-sp.png) no-repeat center/contain;
  }
  .kitchen_car_about_box .sub_center_ttl {
    font-size: 2rem;
  }
  .kitchen_car_about_box .base_txt {
    padding-top: 0px;
    padding-bottom: 0px;
    text-align: left;
  }
  .kitchen_car_about_box .base_txt p {
    line-height: 2;
  }
  .ico_car_list {
    display: block;
    padding-bottom: 50px;
  }
  .ico_car_list li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1.4em;
    font-size: 1.5rem;
    padding-left: 30px;
  }
  .ico_car_list li:before {
    width: 18px;
    height: 14px;
  }
  .kitchen_car_business_box .flex {
    display: block;
  }
  .kitchen_car_business_box .flex .left {
    width: 80%;
    margin-right: 0;
  }
  .kitchen_car_business_box .flex .right {
    width: 100%;
    padding-top: 0;
  }
  .kitchen_car_business_box .bg_red_ttl {
    position: relative;
    top: -20px;
    left: 0;
    width: 100%;
    margin-bottom: 0;
    font-size: 1.6rem;
  }
  .kitchen_car_business_box .btn_list {
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 20px;
  }
  .kitchen_car_business_box .btn_list li a {
    font-size: 1.4rem;
    text-align: center;
  }
  /********************************************/
  /* history_block */
  /********************************************/
  .history_box .inner {
    padding-top: 20px;
    background: url(../img/top/history-bg-00-sp.png) no-repeat center/contain;
  }
  .history_box .history_list {
    padding-left: 5px;
    margin-bottom: 25px;
  }
  .history_box .history_list li {
    padding-left: 25px;
    padding-bottom: 30px;
  }
  .history_box .history_list li:before {
    left: -5px;
    top: 17px;
    width: 10px;
    height: 10px;
  }
  .history_box .history_list:after {
    content: none;
  }
  .history_box .history_list li .year {
    font-size: 3.5rem;
  }
  .history_box .history_list li .txt {
    font-size: 1.5rem;
  }
  /********************************************/
  /* Footer */
  /********************************************/
  .footer_main {
    padding: 30px 0 30px;
  }
  .footer_main .company_info {
    padding-bottom: 40px;
  }
  .footer_main .company_info .name {
    font-size: 1.6rem;
  }
  .footer_main .company_info .txt {
    font-size: 1.3rem;
  }
}
/********************************************/
/* メディア実績 */
/********************************************/
.media_info_box {
  padding-top: 80px;
}

.media_list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 50px;
}
.media_list li {
  width: 48%;
  margin-right: 4%;
  margin-bottom: 40px;
}
.media_list li:nth-child(2n) {
  margin-right: 0;
}
.media_list li a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}
.media_list li a .img {
  display: block;
  width: 40%;
  margin-right: 3%;
}
.media_list li a .txt {
  display: block;
  width: 57%;
  font-size: 1.5rem;
  line-height: 1.8;
}
.media_list li a .txt .category {
  display: block;
  font-size: 0.85em;
}
.media_list li a .txt .post_ttl {
  font-size: 1em;
  text-decoration: underline;
}

#media01 {
  padding-top: 160px;
  margin-top: -80px;
}

@media screen and (max-width: 768px) {
  .media_info_box {
    padding-top: 50px;
  }
  #media01 {
    padding-top: 100px;
    margin-top: -50px;
  }
  .media_list {
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 40px;
  }
  .media_list li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
  .media_list li a .img {
    width: 35%;
  }
  .media_list li a .txt {
    width: 62%;
    font-size: 1.3rem;
    line-height: 1.6;
  }
}
/********************************************/
/* post  single*/
/********************************************/
.page_wrap_block {
  padding-top: 150px;
}

.bread_crumb {
  padding-bottom: 50px;
}
.bread_crumb li {
  display: inline-block;
  font-size: 1.2rem;
}
.bread_crumb li:after {
  content: "/";
  padding-left: 0.4em;
  padding-right: 0.4em;
}
.bread_crumb li:last-child:after {
  content: none;
}
.bread_crumb li a, .bread_crumb li span {
  font-size: 1em;
}

.news_single_block .date {
  font-size: 2rem;
  margin-bottom: 1em;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
}
.news_single_block .category {
  margin-bottom: 1.5em;
  font-size: 1.2rem;
}
.news_single_block .category span {
  font-size: 1em;
  border: 1px solid #ccc;
  padding: 0.3em 1em;
}
.news_single_block .post_main_ttl {
  margin-bottom: 1em;
  font-size: 2rem;
  line-height: 1.6;
  font-family: "Noto Sans JP", serif;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.news_single_block .prev_next_list {
  margin-top: 100px;
  border-top: 1px solid #ccc;
}
.news_single_block .prev_next_list li a {
  display: block;
  padding: 1em 1em;
}
.news_single_block .prev_next_list li:before {
  display: block;
  margin-top: 0.3em;
  font-size: 2.5rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  color: #747474;
}
.news_single_block .prev_next_list li.prev {
  border-bottom: 1px solid #ccc;
}
.news_single_block .prev_next_list li.prev:before {
  content: "PREV";
}
.news_single_block .prev_next_list li.next {
  text-align: right;
  border-bottom: 1px solid #ccc;
}
.news_single_block .prev_next_list li.next:before {
  content: "NEXT";
}

.archives_back {
  padding-top: 100px;
  text-align: center;
}
.archives_back .btn {
  display: inline-block;
}
.archives_back .btn a {
  display: block;
  padding: 1em 2em;
  background-color: #333;
  border: 1px solid #333;
  font-size: 1.7rem;
  text-align: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.archives_back .btn a:hover {
  border-color: #fff;
  background-color: #000000;
}

@media screen and (max-width: 768px) {
  /********************************************/
  /* post  single*/
  /********************************************/
  .page_wrap_block {
    padding-top: 80px;
  }
  .bread_crumb {
    padding-bottom: 25px;
  }
  .bread_crumb li {
    font-size: 1.1rem;
  }
  .news_single_block .date {
    font-size: 1.8rem;
  }
  .news_single_block .category {
    font-size: 1rem;
  }
  .news_single_block .post_main_ttl {
    font-size: 1.8rem;
  }
  .news_single_block .prev_next_list {
    margin-top: 50px;
  }
  .archives_back {
    padding-top: 50px;
    text-align: center;
  }
  .archives_back .btn a {
    font-size: 1.4rem;
  }
}
/********************************************/
/* post  archive*/
/********************************************/
.post_category_ttl {
  margin-bottom: 2.5em;
  text-align: center;
  font-size: 2.5rem;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .post_category_ttl {
    font-size: 2rem;
  }
}
/********************************************/
/* related_post_list*/
/********************************************/
.related_post_list {
  padding-top: 80px;
}

/********************************************/
/* paging*/
/********************************************/
.paging {
  margin-top: 80px;
  text-align: center;
}

.paging ul li {
  display: inline-block;
}

.paging ul li a, .paging ul li span {
  display: inline-block;
  border: 1px solid #747474;
  font-size: 1.4rem;
  padding: 0.6em 0.9em 0.6em;
  line-height: 1;
}

.paging ul li .current {
  background-color: #222222;
  color: #fff;
}

/********************************************/
/* suiko_saibai_box */
/********************************************/
.suiko_saibai_box {
  padding-top: 80px;
}

@media screen and (max-width: 768px) {
  .suiko_saibai_box {
    padding-top: 40px;
  }
  .suiko_saibai_box .left .img {
    margin-bottom: 15px;
  }
  .suiko_saibai_box .contents_flex {
    margin-bottom: 0;
  }
}
/********************************************/
/*white_btn */
/********************************************/
.white_btn {
  margin-top: 40px;
  display: inline-block;
}
.white_btn a {
  display: block;
  padding: 0.5em 2em;
  background-color: #fff;
  font-size: 1.7rem;
  text-align: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  color: #000000;
  border-radius: 100px;
  border: 1px solid #fff;
}
.white_btn a:hover {
  background-color: #000000;
  color: #fff;
}/*# sourceMappingURL=style.css.map */