@charset 'utf-8';
/*
style.css
*/
html{
  margin-top: 0px !important;
  font-size: 62.5%;
}
body {
  font-size: 1.6rem;
  font-family: 'Noto Sans JP', sans-serif;
  color: #000000;
  background: #ffffff;
  position: relative;
  margin: 0;
}
p {
  font-weight: 400;
  margin: 0 0 1em;
  line-height: 1.8;
}
p:last-child {
  margin: 0 0 0;
}
a {
  text-decoration: none;
  transition: .3s;
}
img {
  vertical-align: middle;
  width: 100%;
}

/* -----------------------------------
  nav
----------------------------------- */
.nav {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 0 !important;
}
.nav li {
  margin-right: 30px;
}
.nav a {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-white);
}
.nav a:hover {
  color: var(--color-yellow);
}
.nav a span {
  font-size: 11px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 1025px) {
  .nav li {
    margin-right: 20px;
  }
}

/* -----------------------------------
  header
----------------------------------- */
#header {
  background: var(--color-green1);
  width: 100%;
}
.header-logo {
  width: 230px;
  margin-left: 80px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-inner nav {
  display: flex;
  align-items: center;
  height: 90px;
}
.header-inner nav li {
  height: 90px;
  display: flex;
  align-items: center;
}
.header-inner nav li.active {
  position: relative;
}
.header-inner nav li.active::after {
  background: var(--color-yellow);
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 4px;
}
.header_btn a {
  background: var(--color-yellow);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  height: 90px;
  width: 225px;
}
.header_btn a:hover {
  background: var(--color-gray5);
}
.header_btn a span {
  font-size: 11px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}
.header_btn img {
  margin-right: 10px;
  width: 35px;
}
.header-hamburgernav,
.header-hamburger {
  display: none !important;
}
@media screen and (max-width: 1199px) {
  .header-logo {
    width: 230px;
    margin-left: 40px;
  }
  .header_btn a {
    width: 150px;
  }
}
@media screen and (max-width: 1024px) {
  .header-logo {
    width: 180px;
    margin-left: 20px;
  }
  .header-inner {
    height: 60px;
  }
  .header-inner nav {
    justify-content: flex-end;
  }
  .header-inner nav .nav {
    display: none;
  }
  .header-inner nav li {
    height: auto;
    justify-content: center;
  }
  .header-inner nav li.active::after {
    content: none;
  }
  .header-inner nav li.active a {
    color: var(--color-yellow);
  }
  .header_btn {
    position: absolute;
    right: 80px;
  }
  .header_btn div {
    font-size: 10px;
  }
  .header_btn img {
    margin-right: 0;
    display: block;
    background: none;
    width: 27px;
  }
  .header_btn a {
    background: none;
    color: #fff;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    height: 45px;
    width: 45px;
  }
  .header_btn a:hover {
    background: none;
  }
  .header_btn a div {
    width: 100%;
  }
  .header-hamburger {
    display: block !important;
    position: relative;
    background: var(--color-yellow);
    cursor: pointer;
    width: 65px;
    height: 60px;
    z-index: 9999;
  }
  /* ハンバーガーメニューの線 */
  .header-hamburger span {
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 25px;
    height: 2px;
    background: var(--color-black);
    width: 20px;
  }
  .header-hamburger span:nth-child(1) {
    top: 23px;
  }
  .header-hamburger span:nth-child(2) {
    top: 29px;
  }
  .header-hamburger span:nth-child(3) {
    top: 35px;
  }
  .header-hamburger.active {
    background: none;
    position: fixed;
    top: 0;
    right: 0;
  }
  .header-hamburger.active span {
    background: var(--color-white);
  }
  .header-hamburger.active span:nth-of-type(1) {
    top: 23px;
    left: 25px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .header-hamburger.active span:nth-of-type(2) {
    opacity: 0;/*真ん中の線は透過*/
  }
  .header-hamburger.active span:nth-of-type(3){
    top: 35px;
    left: 25px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
  .header-hamburgernav {
    background: var(--color-green1);
    display: block !important;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100vh !important;
    transform: translateX(100%);
    transition: ease .4s;
    z-index: 9999;
  }
  .header-hamburgernav > div {
    margin-top: 30px;
    height: 90vh;
    overflow-y: scroll;
    padding-top: 20px;
  }
  .header-hamburgernav ul {
    padding-bottom: 30px;
  }
  .header-hamburgernav ul li {
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 30px;
    text-align: center;
  }
  .header-hamburgernav ul li:last-child {
    margin-bottom: 0;
  }
  .header-hamburgernav ul li a {
    color: var(--color-white);
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    line-height: 1.4;
  }
  .header-hamburgernav ul li a:hover {
    color: var(--color-yellow);
  }
  .header-hamburgernav ul li a span {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 11px;
  }
  .header-hamburgernav.active {
    transform: translateX(0);
    height: 100vh;
    width: 100%;
  }
  .header-hamburgernav .hamburger-cta_btn {
    margin-bottom: 25px;
  }
  .header-hamburgernav .hamburger-cta_btn .c-btn_anchor {
    background: var(--color-yellow);
    color: var(--color-black);
    border-radius: 50px;
    display: block;
    font-weight: 700;
    font-size: 17px;
    margin: 0 auto;
    padding: 20px 0;
    width: 260px;
    position: relative;
    text-align: center;
  }
  .header-hamburgernav .hamburger-cta_btn .c-btn_anchor::before {
    content: url(../img/icon_cart_bk.svg);
    display: block;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50px;
    width: auto;
    height: fit-content;
  }
  .header-hamburgernav .hamburger-cta_btn .c-btn_anchor::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f061";
    color: var(--color-black);
    position: absolute;
    right: 40px;
  }
  .header-hamburgernav .hamburger-cta_btn .c-btn_anchor:hover {
    background: var(--color-white);
  }
  .header-hamburgernav .hamburger-cta_tel {
    text-align: center;
  }
  .header-hamburgernav .hamburger-cta_tel a {
    color: var(--color-white);
    font-family: 'Roboto', sans-serif;
    font-size: 27px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1.5px;
  }
  .header-hamburgernav .hamburger-cta_tel img {
    margin-right: 5px;
    width: 24px;
  }
}
@media screen and (max-width: 768px) {

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

/* -----------------------------------
  footer
----------------------------------- */
.footer-cta {
  background: url(../img/footercta_bg.jpg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 115px 0;
}
.footer-cta div:nth-child(2) {
  background: var(--color-white);
  height: 200px;
  width: 1px;
  margin: 0 120px;
}
.footer-cta .footer-cta_tel {
  color: var(--color-white);
  position: relative;
  display: flex;
  justify-content: flex-end;
  width: 325px;
}
.footer-cta .footer-cta_tel a {
  color: var(--color-white);
  font-family: 'Roboto', sans-serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 1.5px;
}
.footer-cta .footer-cta_tel a img {
  margin-right: 5px;
  width: 30px;
}
.footer-cta .footer-cta_tel p {
  font-size: 16px;
  margin: 0 !important;
  text-align: center;
}
.footer-cta .footer-cta_tel .ornament_img {
  width: 110px;
  margin: 0 auto;
}
.footer-cta .footer-cta_order a {
  font-size: 23px;
  position: relative;
  text-align: center;
  width: 325px;
}
.footer-cta .footer-cta_order a::before {
  background-color: #fff;
  content: "";
  display: inline-block;
  transition: .3s;
  mask-image: url(../img/icon_cart_w.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url(../img/icon_cart_w.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 60px;
  width: 35px;
  height: 35px;
}
.footer-cta .footer-cta_order a:hover::before {
  background-color: var(--color-green1);
}
.footer-cta .footer-cta_order a::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f061";
  color: var(--color-yellow);
  position: absolute;
  right: 40px;
}
.footer-cta .footer-cta_order a:hover::after {
  color: var(--color-green1);
}
.footer-inner {
  background: var(--color-green2);
  padding: 70px 0;
}
.footer-inner .nav {
  justify-content: center;
}
.footer-inner .nav li:last-child {
  margin-right: 0;
}
.footer-logo {
  width: 345px;
  margin: 0 auto 50px;
}
#copyright {
  background: var(--color-yellow);
  font-size: 14px;
  margin: 0 !important;
  padding: 15px 0;
  text-align: center;
}
.cta-fixed {
  background: var(--color-green2);
  border-radius: 100%;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.16);
  color: var(--color-white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 25px;
  bottom: 30px;
  text-align: center;
  height: 140px;
  width: 140px;
  z-index: 999;
}
.cta-fixed::before {
  background-color: #fff;
  content: "";
  display: inline-block;
  transition: .3s;
  mask-image: url(../img/icon_cart_w.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url(../img/icon_cart_w.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  margin: auto;
  position: absolute;
  top: 15px;
  right: 0;
  left: 0;
  width: 37px;
  height: 32px;
}
.cta-fixed:hover {
  background: var(--color-white);
  color: var(--color-green1);
}
.cta-fixed:hover::before {
  background-color: var(--color-green1);
}
.cta-fixed div {
  position: absolute;
  top: 50px;
}
.cta-fixed span {
  display: block;
  line-height: 1.4;
}
.cta-fixed span.order {
  font-size: 21px;
  color: var(--color-yellow);
  transition: .3s;
}
.cta-fixed:hover span.order {
  color: var(--color-green1);
}
.cta-fixed span.tel {
  font-size: 14px;
  padding-left: 20px;
  position: relative;
}
.cta-fixed span.tel::before {
  background-color: #fff;
  content: "";
  display: inline-block;
  transition: .3s;
  mask-image: url(../img/icon_tel.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url(../img/icon_tel.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 16px;
  height: 20px;
}
.cta-fixed:hover span.tel::before {
  background-color: var(--color-green1);
}
.cta-fixed span.time {
  font-size: 12px;
}
@media screen and (max-width: 1024px) {
  .footer-cta {
    background: url(../img/footercta_bg.jpg);
    background-position: center;
    background-size: cover;
    display: block;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
  }
  .footer-cta div:nth-child(2) {
    background: var(--color-white);
    height: 1px;
    width: 276px;
    margin: 55px auto;
  }
  .footer-cta .footer-cta_tel {
    color: var(--color-white);
    position: relative;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: 276px;
  }
  .footer-cta .footer-cta_tel a {
    color: var(--color-white);
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1.5px;
  }
  .footer-cta .footer-cta_order a {
    font-size: 18px;
    position: relative;
    text-align: center;
    width: 276px;
  }
  .footer-cta .footer-cta_order a::before {
    content: url(../img/icon_cart_w.svg);
    display: block;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50px;
    width: auto;
    height: fit-content;
  }
  .footer-inner {
    padding: 55px 0;
  }
  .footer-inner .nav {
    display: block;
  }
  .footer-inner .nav li {
    margin: 0 0 20px;
  }
  .footer-inner .nav li:last-child {
    margin: 0;
  }
  .footer-inner .nav li a {
    font-size: 15px;
  }
  .footer-logo {
    width: 276px;
    margin: 0 auto 40px;
  }
  .cta-fixed {
    right: 5px;
    bottom: 10px;
    height: 96px;
    width: 96px;
  }
  .cta-fixed::before {
    top: 5px;
    width: 25px;
    height: 22px;
  }
  .cta-fixed div {
    top: 30px;
  }
  .cta-fixed span.order {
    font-size: 14px;
  }
  .cta-fixed span.tel {
    font-size: 11px;
    padding-left: 10px;
    position: relative;
  }
  .cta-fixed span.tel::before {
    width: 13px;
    height: 15px;
    left: -5px;
  }
  .cta-fixed span.time {
    font-size: 8px;
  }
}


/* -----------------------------------
  mv
----------------------------------- */
#mv {
  width: 100%;
  padding: 0;
  position: relative;
}
.scroll {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 15px;
  margin: auto;
  text-align: center;
  height: 50px;
  width: 150px;
}
.scroll span {
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  margin: auto;
  color: var(--color-white);
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.scroll::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 30px;
  background: var(--color-white);
  animation: pathmove 1.4s ease-in-out infinite;
  opacity:0;
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height:0;
    top: 50px;
    opacity: 0;
  }
}
.mv_sp {
  display: none;
}
.mv_tb {
  display: none;
}
.mv_pc {
  display: inline;
}
@media screen and (max-width: 1129px) {
  .mv_sp {
    display: none;
  }
  .mv_tb {
    display: inline;
  }
  .mv_pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {

}
@media screen and (max-width: 413px) {
  .mv_sp {
    display: inline;
  }
  .mv_tb {
    display: none;
  }
  .mv_pc {
    display: none;
  }
}
/* -----------------------------------
  heading
----------------------------------- */
.heading {
  background-image: url(../img/heading-bg_feature.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  height: 340px;
}
.heading h2 {
  position: relative;
}
.heading h2::after {
  background-image: url(../img/heading-ornament.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: block;
  margin: auto;
  position: absolute;
  right: 0;
  bottom: -40px;
  left: 0;
  height: 13px;
  width: 13px;
}
.heading h2 span {
  font-family: 'Roboto', sans-serif;
  font-size: 56px;
  display: block;
  letter-spacing: 2px;
}
.content-heading {
  padding-bottom: 50px;
  position: relative;
}
.content-heading_primary {
  font-family: 'Roboto', sans-serif;
  font-size: 59px;
  font-weight: 700;
  letter-spacing: 2px;
  padding-bottom: 40px;
  position: relative;
  text-align: center;
}
.content-heading_primary:first-letter {
  color: var(--color-green1);
}
.content-heading_primary span {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 500;
  display: block;
  padding-top: 10px;
}
.content-heading_primary::after {
  background: var(--color-black);
  content: "";
  display: block;
  margin: 0 auto;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 40px;
}
.content-heading_secondary {
  font-size: 44px;
  font-weight: 700;
}
.content-heading_tertiary {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .heading {
    font-size: 12px;
    height: 160px;
  }
  .heading h2 span {
    font-size: 20px;
  }
  .heading h2::after {
    bottom: -30px;
    height: 9px;
    width: 9px;
  }
  .content-heading_primary {
    font-size: 30px;
    padding-bottom: 30px;
  }
  .content-heading_primary span {
    font-size: 12px;
    padding-top: 5px;
  }
  .content-heading_secondary {
    font-size: 22px;
  }
  .content-heading_tertiary {
    font-size: 15px;
    margin-bottom: 10px;
  }
}

/* -----------------------------------
  content
----------------------------------- */
.content-block {
  position: relative;
}
.section {
  overflow: hidden;
  position: relative;
}
.section-inner {
  margin: 0 auto;
  max-width: 1200px;
}
.section-ornament1 {
  position: absolute;
  top: 40px;
  right: 45vw;
  transform: translate(-50%,0);
  z-index: -1;
}
.section-ornament2 {
  position: absolute;
  bottom: 40px;
  right: 60%;
  transform: translate(-60%,0);
  z-index: -1;
}
.section-ornament3 {
  position: absolute;
  bottom: 0;
  left: 45%;
  transform: translate(55%,0);
  z-index: 0;
}
.section-ornament4 {
  position: absolute;
  bottom: 70px;
  right: 70%;
  transform: translate(-80%,0);
  z-index: 1;
}
.section-ornament5 {
  position: absolute;
  bottom: 30px;
  left: 70%;
  transform: translate(35%,0);
  z-index: 1;
}
.section-ornament6 {
  position: absolute;
  right: 60%;
  transform: translate(-85%,0);
  z-index: 1;
}
.section-ornament7 {
  position: absolute;
  top: 280px;
  left: 65%;
  transform: translate(40%,0);
  z-index: 1;
}
.section-ornament8 {
  position: absolute;
  top: 0;
  left: 60%;
  transform: translate(60%,0);
  z-index: 1;
}
.section-ornament9 {
  position: absolute;
  right: 60%;
  bottom: 0;
  transform: translate(-70%,0);
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .section-ornament1 {
    position: absolute;
    top: 40px;
    right: inherit;
    left: -70px;
    transform: translate(0,0);
    z-index: -1;
    width: 265px;
  }
  .section-ornament2 {
    position: absolute;
    bottom: 40px;
    right: inherit;
    left: -20px;
    transform: translate(0,0);
    z-index: -1;
    width: 100px;
  }
  .section-ornament3 {
    position: absolute;
    bottom: 0;
    right: -25px;
    left: inherit;
    transform: translate(0,0);
    z-index: 0;
    width: 200px;
  }
  .section-ornament4 {
    position: absolute;
    bottom: 20px;
    right: inherit;
    left: -17px;
    transform: translate(0,0);
    z-index: 1;
    width: 70px;
  }
  .section-ornament5 {
    position: absolute;
    right: -10px;
    bottom: 0;
    left: inherit;
    transform: translate(0,0);
    z-index: 1;
    width: 120px;
  }
  .section-ornament6 {
    position: absolute;
    top: 120px;
    right: inherit;
    left: -45px;
    transform: translate(0,0);
    z-index: 1;
    width: 120px;
  }
  .section-ornament7 {
    display: none;
  }
  .section-ornament8 {
    position: absolute;
    top: 0;
    right: 0;
    left: inherit;
    transform: translate(0,0);
    z-index: 1;
    width: 125px;
  }
  .section-ornament9 {
    position: absolute;
    top: 150px;
    right: inherit;
    bottom: inherit;
    left: -40px;
    transform: translate(0,0);
    z-index: 1;
    width: 115px;
  }
}

/* -----------------------------------
  top
----------------------------------- */
#top_who {
  padding: 160px 0 190px;
}
#top_who p {
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
}
#top_menu {
  background: url(../img/top02.jpg);
  background-color: #F1F1F1;
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 130px 0 90px;
}
#top_menu .section-inner {
  background: var(--color-white);
  padding: 70px 90px;
}
#top_menu .content-block {
  z-index: 2;
}
#top_menu p {
  font-size: 16px;
  line-height: 2;
}
#top_voice {
  padding: 100px 0 0;
}
#top_news {
  padding-top: 100px;
  padding-bottom: 0;
}
#top_news .section-inner {
  background: #F5F5F5;
  overflow: hidden;
  padding: 100px 0;
  position: relative;
  max-width: 100%;
}
#top_news .section-inner .content-heading,
#top_news .section-inner .content-block {
  position: relative;
  z-index: 2;
}
#top_news .c-btn_anchor img {
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  width: 37px;
}
@media screen and (max-width: 1024px) {
  #top_who {
    padding: 100px 0 180px;
  }
  #top_who p {
    font-size: 14px;
    padding: 0 20px;
  }
  #top_menu {
    padding: 60px 0 50px;
  }
  #top_menu .section-inner {
    margin: 0 20px;
    padding: 70px 20px;
  }
  #top_menu p {
    font-size: 12px;
  }
  #top_voice {
    padding: 60px 0 0;
  }
  #top_voice p {
    font-size: 12px;
  }
  #top_voice .c-col-2 {
    padding: 0 20px;
  }
  #top_news {
    padding-top: 50px;
  }
  #top_news .section-inner {
    padding: 60px 0;
  }
}

/* -----------------------------------
  menu
----------------------------------- */
.menu-block .c-col-3_inner {
  border: 1px solid #EFEDED;
  display: block;
  padding: 7px 7px 20px;
  text-align: center;
}
.menu-block .menu-title,
.menu-block .menu-price {
  font-size: 15px;
}
.menu-block .menu-title {
  font-weight: 500;
  margin-bottom: 0;
}
.menu-block .menu-price {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}
.menu-block .c-col-3_inner {
  max-width: 320px;
}
@media screen and (max-width: 1024px) {
  .menu-block .c-col-3_inner {
    max-width: 276px;
  }
}

/* -----------------------------------
  content
----------------------------------- */
.content {
  background: #F5F5F5;
  padding: 60px 0;
}
.content-inner {
  background: var(--color-white);
  margin: 0 auto;
  max-width: 1200px;
  padding: 50px 0;
  width: 100%;
}
.content-block_inner {
  margin-bottom: 100px;
}
.content-block_inner:last-child {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 1024px) {
  .content {
    padding: 50px 20px;
  }
  .content-block_inner {
    margin-bottom: 50px;
  }
}

/* -----------------------------------
  feature
----------------------------------- */
body.feature .content-block_inner:nth-child(1) p {
  font-size: 18px;
  line-height: 2;
}
body.feature .content-block-img01 {
  max-width: 418px;
  margin: 0 auto 45px;
}
body.feature .c-col-2_inner h3 {
  margin-bottom: 45px;
}
body.feature .c-col-2_inner h3 img {
  margin: 0 10px;
  height: 8px;
  width: 8px;
}
body.feature .c-col-2_inner h3 span.num {
  font-size: 47px;
}
body.feature .c-col-2_inner h3 span.cat {
  font-size: 14px;
}
body.feature .c-col-2_inner h3 span.cat .u-ff-Roboto {
  font-size: 21px;
}
body.feature .c-col-2_inner h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  body.feature .content-block_inner:last-child {
    padding-bottom: 50px;
  }
  body.feature .content-block-img01 {
    max-width: 276px;
    margin: 0 auto 45px;
  }
  body.feature .content-block_inner:nth-child(1) p,
  body.feature .c-col-2_inner h3,
  body.feature .c-col-2_inner h4,
  body.feature .c-col-2_inner p {
    padding: 0 20px;
  }
  body.feature .c-col-2_inner h3 {
    margin-bottom: 20px;
  }
  body.feature .c-col-2_inner h4 {
    font-size: 15px;
    margin-bottom: 10px;
  }
  body.feature .content-block_inner:nth-child(1) p,
  body.feature .c-col-2_inner p {
    font-size: 14px;
  }
}

/* -----------------------------------
  company
----------------------------------- */
body.company .heading {
  background-image: url(../img/heading-bg_company.jpg);
}
body.company .content-block_inner:nth-child(1) p {
  font-size: 18px;
  line-height: 2;
}
body.company .content-block_inner table {
  margin: 0 auto;
  max-width: 552px;
  width: 100%;
}
body.company .content-block_inner table th,
body.company .content-block_inner table td {
  font-size: 17px;
  padding: 15px 0;
}
body.company .content-block_inner table tr:first-child th,
body.company .content-block_inner table tr:first-child td {
  padding-top: 0;
}
body.company .content-block_inner table tr:last-child th,
body.company .content-block_inner table tr:last-child td {
  padding-bottom: 0;
}
body.company .content-block_inner table th {
  font-weight: 700;
  width: 30%;
}
body.company .content-block_inner table td {
  width: 70%;
}
body.company .company-map iframe {
  height: 400px;
}
@media screen and (max-width: 1024px) {
  body.company .content-block_inner {
    padding: 0 20px;
  }
  body.company .content-block_inner:first-child {
    margin-bottom: 30px;
  }
  body.company .content-block_inner:last-child {
    padding: 0;
  }
  body.company .content-block_inner:nth-child(1) p {
    font-size: 12px;
  }
  body.company .content-block_inner table th,
  body.company .content-block_inner table td {
    font-size: 12px;
    padding: 7px 0;
  }
  body.company .company-map iframe {
    height: 280px;
  }
}

/* -----------------------------------
  faq
----------------------------------- */
body.faq .heading {
  background-image: url(../img/heading-bg_faq.jpg);
}
body.faq .content-heading h2 .u-c-green {
  display: inline;
  font-family: inherit;
  font-size: inherit;
  padding: 0;
}
body.faq .content-heading h2:first-letter {
  color: inherit;
}
.faq-block {
  margin: 0 auto 15px;
  max-width: 844px;
  border: 1px solid var(--color-gray4);
}
.faq-block:last-child {
  margin: 0 auto 0;
}
.faq-block_q {
  cursor: pointer;
  font-size: 16px;
  position: relative;
  display: flex;
}
.faq-block_q:after {
  color: #BABABA;
  content: '\f063';
  display: inline-block;
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  height: fit-content;
  transition: all .3s ease-in-out;
}
.faq-block_q.open:after {
  transform: rotate(-180deg);
}
.faq-q-icon,
.faq-a-icon {
  font-family: 'Roboto', sans-serif;
  font-size: 27px;
  font-weight: 700;
}
.faq-q-icon {
  background: var(--color-green1);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
}
.faq-q-text {
  font-size: 17px;
  padding: 25px 70px 25px 40px;
  width: 100%;
}
.faq-block_a {
  display: none;
  padding: 15px 0 30px;
}
.faq-a-icon {
  display: flex;
  justify-content: center;
  width: 74px;
}
.faq-a-text {
  font-size: 15px;
  padding: 0 70px 0 40px;
  width: 100%;
}
.faq-a-img {
  margin-bottom: 1em;
  max-width: 330px;
}
@media screen and (max-width: 1024px) {
  body.faq .content-block_inner {
    padding: 0 20px;
  }
  .faq-block_q:after {
    right: 10px;
  }
  .faq-q-icon,
  .faq-a-icon {
    font-size: 18px;
  }
  .faq-q-icon {
    width: 40px;
    height: auto;
  }
  .faq-a-icon {
    display: flex;
    justify-content: center;
    width: 40px;
  }
  .faq-q-text {
    font-size: 12px;
    padding: 15px 30px 15px 20px;
    width: 100%;
  }
  .faq-a-text {
    font-size: 12px;
    padding: 0 30px 0 20px;
    width: 100%;
  }
}

/* -----------------------------------
  order
----------------------------------- */
body.order .heading {
  background-image: url(../img/heading-bg_order.jpg);
}
body.order .content-block_inner {
  margin-bottom: 60px;
}
body.order .content-block_inner .c-col-3 {
  margin: 0 auto;
  max-width: 1024px;
}
@media screen and (max-width: 1024px) {
  body.order .content-block_inner:nth-child(1) {
    padding: 0 20px;
  }
  body.order .content-block_inner p {
    font-size: 12px;
  }
}

/* -----------------------------------
  contact
----------------------------------- */
body.contact .heading {
  background-image: url(../img/heading-bg_contact.jpg);
}
body.contact .content-block_inner:nth-child(1) {
  margin-bottom: 60px;
}
body.contact .content-block_inner p {
  font-size: 16px;
}
body.contact #form_submit.c-btn_lay01 .c-btn_anchor {
  padding: 0;
  transition: .3s;
}
body.contact #form_submit.c-btn_lay01 .c-btn_anchor::after {
  top: 0;
  bottom: 0;
  height: fit-content;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  body.contact .content-block {
    padding: 0 20px;
  }
  body.contact .content-block_inner:nth-child(1) {
    margin-bottom: 20px;
  }
  body.contact .content-block_inner p {
    font-size: 12px;
  }
}