@charset "utf-8";

* {
    box-sizing: border-box;
}
html {
    height: 100%;
    font-size: 62.5%;
    -webkit-text-size-adjust: 100%;
}
body {
    color: #333;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 2;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

body.js-afterScrolling {
    padding-top: 111px;
}
@media screen and (max-width: 768px) {
    body.js-afterScrolling {
        padding-top: 80px;
    }
    img {
        width: 100%;
        height: auto;
    }
}

.mincho {
    font-family: 'ヒラギノ明朝 ProN','Hiragino Mincho ProN','Yu Mincho Light','YuMincho','Yu Mincho','游明朝体',sans-serif;
}

.container {
    min-width: 1366px;
    margin: 0 auto;
}
@media screen and (max-width: 768px) {
    .container {
        min-width: auto;
        width: 100%;
        overflow: hidden;
    }
}

/* header */
.header {
    width: 1206px;
    padding: 14px 40px;
    background-color: #fff;
    border-radius: 35px;
    height: 111px;
    margin: 0 auto;
    z-index: 999;
    position: relative;
}
.header.js-fixed {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}
.header.js-fixed .header-inner {
    padding-top: 0;
}

.header-nav-lists {
    display: flex;
}
.header-nav-list {
    margin-left: 37px;
}
.header-nav-list a {
    position: relative;
    font-size: 1.3rem;
    font-weight: 600;
}
.header-nav-list.current a,
.header-nav-list a:hover {
    color: #EC0C0D;
}
.header-nav-list.current a::after,
.header-nav-list a:hover::after {
    content: "";
    position: absolute;
    bottom: -9px;
    left: 50%;
    width: 30px;
    height: 1px;
    background-color: #DE1007;
    transition: all .3s;
    transform: translate(-50%, 0);
}
.header-nav-list.disabled a {
    color: #999;
    pointer-events: none;
}
@media screen and (min-width: 769px) {
    .header-nav-wrap {
        position: absolute;
        top: 42px;
        right: 50px;
    }
    .header.js-fixed .header-nav-wrap {
        position: absolute;
        top: 21px;
        right: 50px;
    }
}

@media screen and (max-width: 768px) {
    .header {
        padding: 11px 30px;
        width: 89.33%;
        height: 80px;
    }
    .header-inner {
        padding-top: 8px;
    }
    .header-btn {
        width: 27px;
        height: 18px;
        position: relative;
    }
    .header-btn-line {
        display: inline-block;
        transition: all .3s;
        width: 100%;
        height: 2px;
        background-color: #D93125;
        position: absolute;
        left: 0;
    }
    .header-btn-line:first-of-type {
        top: 0;
    }
    .header-btn-line:nth-of-type(2) {
        top: 9px;
    }
    .header-btn-line:last-of-type {
        top: 18px;
    }
    .header-btn.open .header-btn-line:first-of-type {
        transform: translateY(9px) rotate(45deg);
        transition: transform .3s;
    }
    .header-btn.open .header-btn-line:nth-of-type(2) {
        display: none;
    }
    .header-btn.open .header-btn-line:last-of-type {
        transform: translateY(-9px) rotate(-45deg);
        transition: transform .3s;
    }
    .header-nav-wrap {
        background: url('../img/kv_bg_sp.jpg') no-repeat center / cover;
        width: 102vw;
        height: 103vh;
        padding-top: 30vw;
        position: absolute;
        top: -100vh;
        left: -23px;
        z-index: -1;
        opacity: 0;
        transition: all .5s;
    }
    .header-nav-wrap.open {
        top: -20px;
        opacity: 1;
    }
    .header-nav {
        width: 71.46%;
        margin: 0 auto;
    }
    .header-nav-lists {
        display: block;
    }
    .header-nav-list {
        position: relative;
        color: #000;
        font-size: 1.4rem;
        line-height: 1.42;
        padding: 20px 0 19px;
        margin-left: 0;
        border-top: 1px solid #ECEBEB;
    }
    .header-nav-list a {
        display: block;
    }
    .header-nav-list:last-of-type {
        border-bottom: 1px solid #ECEBEB;
    }
    .header-nav-list::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        transform: translate(0, -50%);
        display: block;
        width: 12px;
        height: 8px;
        background: url('../img/arrow_icon.svg') no-repeat center / cover;
    }
    .header-nav-list.current a::after,
    .header-nav-list a:hover::after {
        content: none;
    }
}

.header-left-wrap{
    display: none;
}

@media screen and (max-width: 768px) {
    .header-left-wrap{
        display: flex;
        align-items: center;
    }
}

.global-icon{
    width: 52px;
}
/* header */

.footer {
    text-align: center;
    background: #DE1007;
    color: #fff;
    font-family: 'ヒラギノ角ゴシック','Hiragino Sans',sans-serif;
}
.footer-inner {
    padding: 50px 20px 20px;
}
.footer-logo {
    display: inline-block;
    width: 169px;
    margin-bottom: 30px;
}
.footer-logo img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: bottom;
}
.footer-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}
.footer-nav-list {
    margin-right: 30px;
    font-size: 1.3rem;
    line-height: 1.53;
    letter-spacing: 0.05em;
}
.footer-nav-list.disabled {
    color: #999;
    pointer-events: none;
}
.footer-nav-list:last-of-type {
    margin-right: 0;
}
.footer-copyright {
    text-align: center;
    font-size: 1.2rem;
}
.footer-copyright-left {
    margin-right: 10px;
}

@media screen and (max-width: 768px) {
    .footer {
        text-align: center;
        background: #DE1007;
        color: #fff;
        font-family: 'ヒラギノ角ゴシック','Hiragino Sans',sans-serif;
    }
    .footer-inner {
        padding: 50px 20px 28px;
    }
    .footer-logo {
        display: inline-block;
        width: 169px;
        margin-bottom: 41px;
    }
    .footer-nav {
        display: block;
        margin-bottom: 55px;
    }
    .footer-nav-list {
        margin-right: 0;
        margin-bottom: 25px;
        font-size: 1.4rem;
        line-height: 1.42;
        letter-spacing: 0;
    }
    .footer-nav-list:last-of-type {
        margin-bottom: 0;
    }
    .footer-copyright {
        line-height: 1.5;
        display: flex;
        flex-direction: column;
    }
    .footer-copyright-left {
        margin-right: 0;
    }
}

.kv {
    padding: 80px 0 161px 0;
    background: no-repeat center / cover;
}

.kv-inner {
    max-width: 1206px;
    margin: 0 auto;
}
.kv-heading {
    color: #fff;
    font-size: 3.2rem;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    line-height: 0.8;
    font-family: 'ヒラギノ明朝 ProN','Hiragino Mincho ProN','Yu Mincho Light','YuMincho','Yu Mincho','游明朝体',sans-serif;
}
.kv-text {
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
    .kv {
        padding: 60px 20px 70px;
        background: no-repeat center / cover;
    }
    .kv-inner {
        max-width: auto;
        width: 100%;
    }
    .kv-heading {
        font-size: 2.6rem;
        margin-bottom: 1px;
        line-height: 1.2;
    }
    .kv-text {
        font-size: 1rem;
    }
}


.cta-content {
    padding: 100px 0;
    background: url(../img/content_bg_pc.jpg) no-repeat center / cover;
}
.cta-content-inner {
    display: flex;
    justify-content: center;
    align-items: stretch;
}
@media screen and (max-width: 768px) {
    .cta-content {
        padding: 80px 20px;
        background: url(../img/content_bg_sp.jpg) no-repeat center / cover;
    }
    .cta-content-inner {
        display: block;
    }
}

.btn-square,.btn-square-back {
    position: relative;
    display: inline-block;
    text-align: center;
    padding: 15px 60px;
    line-height: 1.53;
    border: 1px solid #000;
}
.btn-square:hover,.btn-square-back:hover {
    color: #fff;
    border: 1px solid #EC0C0D;
    background-color: #EC0C0D;
}
.btn-square::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translate(0, -50%);
    display: block;
    width: 12px;
    height: 8px;
    background: url(../img/arrow_icon.svg) no-repeat center / cover;
}
.btn-square:hover::after {
    background: url(../img/arrow_icon_hover.svg) no-repeat center / cover;
}

.btn-square-back::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translate(0, -50%);
    display: block;
    width: 12px;
    height: 8px;
    background: url(../img/arrow_icon_back.svg) no-repeat center / cover;
}
.btn-square-back:hover::before {
    background: url(../img/arrow_icon_back_hover.svg) no-repeat center / cover;
}
@media screen and (max-width: 768px) {
    .btn-square,.btn-square-back {
        width: 80%;
        padding: 15px 26px;
    }
}

.return-btn-wrap {
    width: 226px;
    margin: 0 auto;
}

.return-btn-wrap a {
    width: 100%;
}

.card {
    text-align: center;
    background-color: #fff;
    width: 460px;
    padding: 30px 0 25px;
}
.card:first-of-type {
    margin-right: 40px;
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    background-color: #EC0C0D;
    border-radius: 50%;
    margin: 0 auto 30px;
}
.card-title {
    position: relative;
    font-size: 2rem;
    font-family: 'ヒラギノ明朝 ProN','Hiragino Mincho ProN','Yu Mincho Light','YuMincho','Yu Mincho','游明朝体',sans-serif;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 28px;
}
.card-title::after {
    content: "";
    position: absolute;
    bottom: -17px;
    left: 50%;
    transform: translate(-50%, 0);
    border-bottom: 1px solid #CC2F20;
    display: block;
    width: 25px;
    height: 1px;
}

.card-text {
    line-height: 1.7;
    margin-bottom: 43px;
}

@media screen and (max-width: 768px) {
    .card {
        width: 100%;
        padding: 30px 6px;
    }
    .card:first-of-type {
        margin-right: 0;
        margin-bottom: 30px;
    }
    .card-icon {
        width: 34px;
        height: 34px;
        margin: 0 auto 22px;
    }
    .card-icon img {
        width: 50%;
    }
    .card-title {
        margin-bottom: 23px;
    }
    .card-title::after {
        bottom: -8px;
        width: 18px;
    }

    .card-text {
        margin-bottom: 20px;
    }
}

.border-top-content {
    position: relative;
    padding-top: 50px;
}
.border-top-content::after {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 50px;
    height: 1px;
    background-color: #D93125;
}
.border-top-content::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 1000px;
    height: 1px;
    background-color: #CECECE;
}
.content-heading {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 76px;
    font-family: 'ヒラギノ明朝 ProN','Hiragino Mincho ProN','Yu Mincho Light','YuMincho','Yu Mincho','游明朝体',sans-serif;
}
.content-text--with-border {
    position: relative;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 24px;
    padding-left: 40px;
}
.content-text--with-border::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 0;
    display: block;
    width: 30px;
    height: 1px;
    background-color: #D93125;
}
@media screen and (max-width: 768px) {
    .border-top-content {
        padding-top: 40px;
    }
    .content-heading {
        font-size: 2.2rem;
        margin-bottom: 60px;
    }
    .content-text--with-border {
        font-size: 1.6rem;
        margin-bottom: 24px;
        padding-left: 40px;
    }
    .border-top-content::after {
        left: 20px;
    }
    .border-top-content::before {
        left: 20px;
        width: 89.33vw;
    }
}

.link-text--with-icon {
    display: inline-block;
    padding-left: 18px;
    background: url(/assets/images/common/icon/icon_arrow_circle_red.png) left 8px no-repeat;
    color: #EC0C0D;
    text-decoration: underline;
    word-break: break-all;
}

.introduction-content {
    padding: 72px 0 92px 0;
}
.introduction-content-inner {
    max-width: 1206px;
    margin: 0 auto;
}
.introduction-text {
    font-size: 1.8rem;
    line-height: 2;
    text-align: center;
    margin-bottom: 48px;
}
.btn-anchor-wrap {
    width: 870px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-anchor-wrap.btn-anchor-wrap--center{
    justify-content: center;
}

.btn-anchor-wrap.btn-anchor-wrap--large{
    width: 1150px;
}

@media screen and (max-width: 768px){
    .btn-anchor-wrap.btn-anchor-wrap--large{
        width: 249px;
    }
}

.btn-anchor-wrap--center .btn-anchor:nth-of-type(1) {
    margin-right: 30px;
}

.btn-anchor {
    position: relative;
    width: 270px;
    border: 1px solid #EC0C0D;
}
.btn-anchor:hover {
    background-color: #EC0C0D;
}
.btn-anchor a {
    font-weight: 600;
}
.btn-anchor::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 9px;
    transform: translate(0, -50%);
    display: block;
    width: 31px;
    height: 16px;
    background: url('../img/katsuyou_food/arrow_icon_under.svg') no-repeat center / contain;
}
.btn-anchor:hover::after {
    background: url('../img/katsuyou_food/arrow_icon_under_hover.svg') no-repeat center / contain;
}
.btn-anchor a {
    display: flex;
    align-items: center;
    width: 270px;
    height: 82px;
    padding-left: 20px;
    font-size: 1.6rem;
    line-height: 1.625;
}
.btn-anchor:hover a {
    color: #fff;
}


@media screen and (max-width: 768px) {
    .introduction-content {
        padding: 40px 20px 80px;
    }
    .introduction-content-inner {
        max-width: auto;
        width: 100%;
    }
    .introduction-text {
        margin-bottom: 28px;
    }
    .btn-anchor-wrap {
        width: 249px;
        display: block;
    }
    .btn-anchor {
        width: 249px;
        margin-bottom: 8px;
    }
    .btn-anchor:last-of-type {
        margin-bottom: 0;
    }
    .btn-anchor a {
        width: 249px;
        height: 60px;
        font-size: 1.4rem;
    }
}

.content-inner{
  max-width: 1116px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .content-inner{
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.video-wrapper{
    display: flex;
    align-items: flex-end;
  }

.video-wrapper:nth-of-type(n+2) {
	margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .video-wrapper{
    display: block;
  }

  .video-block{
    width: 100%;
  }

  .video-block iframe{
    width: 100%;
    height: 204px;
  }
}

.video-description{
  padding-left: 60px;
}

@media screen and (max-width: 767px) {
  .video-description{
    padding-left: 0;
    margin-top: 30px;
  }
}

.col2-wrap {
    display: flex;
    align-items: flex-start;
}

.col2-wrap-reverse {
    flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
    .col2-wrap {
        display: block;
    }
}

.col2-item {
    width: 50%;
}

@media screen and (max-width: 767px) {
    .col2-item {
        width: 100%;
    }
}

.col2-item:nth-child(1){
    padding-right: 30px;
}

.col2-wrap-reverse .col2-item:nth-child(1){
    padding-right: 0;
    padding-left: 30px;
}

.col2-item:nth-child(2){
    padding-left: 30px;
}

.col2-wrap-reverse .col2-item:nth-child(2){
    padding-right: 30px;
    padding-left: 0;
}

@media screen and (max-width: 767px) {
    .col2-item:nth-child(1){
        padding-right: 0;
    }

    .col2-item:nth-child(2){
        padding-left: 0;
        margin-top: 30px;
    }

    .col2-wrap-reverse .col2-item:nth-child(1){
        padding-right: 0;
        padding-left: 0;
    }

    .col2-wrap-reverse .col2-item:nth-child(2){
        padding-right: 0;
        padding-left: 0;
    }
}

.col2-text{
    font-size: 1.6rem;
}

.img-col2-wrap{
    display: flex;
    align-items: flex-start;
    margin-top: 65px;
}

@media screen and (max-width: 768px) {
    .img-col2-wrap{
        display: block;
    }
}

.img-col2-item {
    width: 50%;
}

@media screen and (max-width: 768px) {
    .img-col2-item {
        width: 100%;
    }
}

.img-col2-item:nth-of-type(1){
    padding-right: 30px;
}

.img-col2-item:nth-of-type(2){
    padding-left: 30px;
}

@media screen and (max-width: 768px) {
    .img-col2-item:nth-of-type(1){
        padding-right: 0;
    }

    .img-col2-item:nth-of-type(2){
        padding-left: 0;
        margin-top: 20px;
    }
}

.main-text {
    margin: 0 auto;
    width: 1000px;
    padding-top: 50px;
    padding-bottom: 47px;
}

@media screen and (max-width: 768px) {
    .main-text {
        width: 100%;
        padding: 40px 20px;
    }
    .main-text-heading {
        font-size: 2.6rem;
        margin-top: 12px;
    }
}

.inquiry-heading-red {
    display: block;
    font-size: 1.4rem;
    font-family: 'ヒラギノ明朝 ProN','Hiragino Mincho ProN','Yu Mincho Light','YuMincho','Yu Mincho','游明朝体',sans-serif;
    color: #EC0C0D;
    letter-spacing: 0.25em;
}

.inquiry-heading {
    font-size: 3.8rem;
    font-family: 'ヒラギノ明朝 ProN','Hiragino Mincho ProN','Yu Mincho Light','YuMincho','Yu Mincho','游明朝体',sans-serif;
    border-bottom: 1px solid #333333;
}
@media screen and (max-width: 768px) {
    .inquiry-heading-red {
        font-size: 1.2rem;
    }

    .inquiry-heading {
        font-size: 2.6rem;
        line-height: 1.87;
    }
}

/* /////////Utility///////////// */

/* display */
.u-none {
  display: none;
}
.u-sp {
  display: none;
}

/* margin */
.mb-0 {
    margin-bottom: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.mt28 {
  margin-top: 28px;
}

.mt-25-0{
    margin-top: 25px;
}

@media screen and (max-width: 768px) {
    .mt-25-0{
        margin-top: 0;
    }
}

.mt-25-30 {
    margin-top: 25px;
}

@media screen and (max-width: 768px) {
    .mt-25-30 {
        margin-top: 30px;
    }
}

.mt-35 {
    margin-top: 35px !important;
}

.mt-40 {
    margin-top: 40px;
}

.mt-55-25{
  margin-top: 55px;
}

@media screen and (max-width: 768px) {
.mt-55-25{
  margin-top: 25px;
}
}

.mt-58-36{
margin-top: 58px;
}

@media screen and (max-width: 768px) {
    .mt-58-36{
    margin-top: 36px;
    }
}

.mt-60-0 {
    margin-top: 60px;
}

@media screen and (max-width: 768px) {
    .mt-60-0 {
        margin-top: 0;
    }
}

.mt-76-60{
margin-top: 76px;
}

@media screen and (max-width: 768px) {
    .mt-76-60{
    margin-top: 60px;
    }
}

.mt-80-0{
    margin-top: 80px;
}

@media screen and (max-width: 768px) {
    .mt-80-0{
        margin-top: 0;
    }
}

.mb-60{
    margin-bottom: 60px;
}

.mb-80{
    margin-bottom: 80px;
}

.mb-120{
margin-bottom: 120px;
}

.mt100-30{
  margin-top: 100px;
}

@media screen and (max-width: 768px) {
  .mt100-30{
    margin-top: 30px;
  }
}

.mt-190-130{
    margin-top: 190px !important;
}

@media screen and (max-width: 768px) {
    .mt-190-130{
        margin-top: 130px !important;
    }
}


.pt0 {
    padding-top: 0 !important;
}

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

.img-center{
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .u-pc {
      display: none !important;
  }
  .u-sp {
      display: block !important;
  }
  .mt28 {
      margin-top: 0;
  }
  .ml-14 {
      margin-left: 14px;
  }
}
