@charset "UTF-8";

@media screen and (max-width: 959px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
  .sp_only_img {
    display: block;
  }
  .yoko-sp_only {
    display: none;
  }
}
@media screen and (min-width: 960px) {
  .pc_only {
    display: block;
  }
  .sp_only {
    display: none;
  }
  .sp_only_img {
    display: none;
  }
  .yoko-sp_only {
    display: none;
  }
}
/*iPhone横*/
@media (orientation: landscape) and (max-width: 1024px){
  .yoko-sp_only {
      display: block;
  }
  .sp_only_img {
    display: none;
  }
}

.fade-in {
    opacity: 0;
    -webkit-transition: opacity 0.4s ease, -webkit-filter 0.4s ease 0.2s, -webkit-transform 0.4s ease 0.2s;
    transition: opacity 0.4s ease, -webkit-filter 0.4s ease 0.2s, -webkit-transform 0.4s ease 0.2s;
    transition: opacity 0.4s ease, filter 0.4s ease 0.2s, transform 0.4s ease 0.2s;
    transition: opacity 0.4s ease, filter 0.4s ease 0.2s, transform 0.4s ease 0.2s, -webkit-filter 0.4s ease 0.2s, -webkit-transform 0.4s ease 0.2s;
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
    will-change: filter;
}
.fade-in.active {
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}


/* html body*/
html, body {
    overflow-x: hidden;
}
html {
     scroll-padding-top: 140px;
}
body {
	color: #803b2d;
	letter-spacing: 0.02em;
	line-height: 1.4;
	font-size: 1.1vw;
	background-color: #f7f6f2;
	font-family: "fot-tsukuardgothic-std", sans-serif;
	font-weight: 700;
	font-style: normal;
}
body input,
body button {
	font-family: inherit;
}
body a {
	color: inherit;
}
body a:hover {
	cursor: pointer;
	opacity: 0.5;
}
body p {
	line-height: 1.6;
}
body strong {
  font-weight: 700;
}
body .underline {
  text-decoration: underline;
}
body iframe {
  max-width: 100%;
}


/* フォント */
@font-face {
	font-family: 'Keep on Truckin FW';
	src: url("../font/keeptf__.woff") format('woff');
	font-weight: normal;
	font-style: normal;
}
.Truckin {
  font-family: 'Keep on Truckin FW', sans-serif;
}


/* テキスト関連 */
.txt-center {
    text-align: center;
}
h2 {
    font-size: 29px;
}
h3 {
    font-size: 30px;
    margin-top: 10px;
}
h4 {
    font-size: 25px;
    margin: 10px 0;
}
/*黄色の文字*/
span.color {
	color: #FFD347;
}
@media screen and (max-width: 959px) {
    h2 {
        font-size: 23px;
    }
    h3 {
        font-size: 20px;
    }
	h4 {
		font-size: 18px;
	}
    .txt-center {
        text-align: justify;
    }
}


/* FLEX */
.flex {
    display: flex;
    justify-content: space-between;
    gap: 0 2em;
}
.flex-reverse {
	flex-direction: row-reverse;
}
@media screen and (max-width: 960px) {
	.flex {
		flex-direction: column;
	}
}

/* WRAP */
.wrap750 {
	max-width: 70vw;
	width: 100%;
	margin: 0 auto;
}
.wrap590 {
	max-width: 55vw;
	width: 100%;
	margin: 0 auto;
}
.wrap-sp,
.wrap-sp2 {
	display: block;
}
@media screen and (max-width: 959px) {
	.wrap750 {
		max-width: 100%;
	}
	.wrap590 {
		max-width: 100%;
	}
	.wrap-sp {
		max-width: 90%;
        margin: 0 auto;
	}
	.wrap-sp2 {
		max-width: 85%;
        margin: 0 auto;
	}
	.reduce {
		max-width: 95%;
        margin: 0 auto;
	}
}


/* リバース */
@media screen and (min-width: 960px) {
	.pc_reverse {
		flex-direction: row-reverse;
	}
}
@media screen and (max-width: 959px) {
	.sp_reverse {
		flex-direction: column-reverse;
	}
}


/* img */
img {
	width: 100%;
	height: 100%;
}


/* トップページ 
------------------------*/
main {
    margin-top: 10em;
}
@media screen and (max-width: 959px) {
	main {
		margin-top: 15em;
	}
}

/* MV */
.main-visual {
	height: auto;
}
.main-visual__container {
	display: grid;
    width: 100%;
    margin: 0 auto;
}
.mv-fade-in.delay-1 {
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
}
.mv-fade-in {
    opacity: 0;
    /*-webkit-transform: translateY(-20px);
    transform: translateY(-20px);*/
    -webkit-filter: blur(10px);
    filter: blur(10px);
    will-change: transform, filter, opacity;
    -webkit-transition: opacity 1s ease, -webkit-filter 0.7s ease 0.2s, -webkit-transform 1.7s ease 0.2s;
    transition: opacity 1s ease, -webkit-filter 0.7s ease 0.2s, -webkit-transform 1.7s ease 0.2s;
    transition: opacity 1s ease, filter 0.7s ease 0.2s, transform 1.7s ease 0.2s;
    transition: opacity 1s ease, filter 0.7s ease 0.2s, transform 1.7s ease 0.2s, -webkit-filter 0.7s ease 0.2s, -webkit-transform 1.7s ease 0.2s;
}
.mv-fade-in.active {
    opacity: 1;
    /*-webkit-transform: translateY(0);
    transform: translateY(0);*/
    -webkit-filter: blur(0);
    filter: blur(0);
}
.main-visual__bg {
    width: 100%;
	margin-top: -50px;
    grid-area: 1/1;
}
.main-visual__bg img {
    height: auto;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.main-visual__catch {
    grid-area: 1 / 1;
    margin-left: auto;
    margin-right: auto;
	margin-top: -90px;
	width: fit-content;
    text-align: center;
    height: fit-content;
}
.main-visual__catch figure {
	width: 21vw;
    margin: 0 auto 20px;
}
.main-visual__catch p.jp {
	font-size: 1.8vw;
	margin-bottom: 10px;
}
.main-visual__catch p.en {
	font-size: 1.2vw;
}
@media screen and (max-width: 959px) {
    .main-visual__catch {
        width: 100%;
        margin-top: -60px;
    }
	.main-visual__catch figure {
		width: 35vw;
	}
	.main-visual__catch p.jp {
		font-size: 4.8vw;
	}
	.main-visual__catch p.en {
		font-size: 3.5vw;
	}
}
.mv-fade-in.delay-3 {
    -webkit-transition-delay: 3.5s;
    transition-delay: 3.5s;
}

/* sec-01 */
.sec-01 {
	margin: 1vw 0 0;
}
.sec-01 .wrap750 {
	background: url("../images/index/sec-01bg.webp");
    background-size: 100%;
    background-repeat: no-repeat;
    height: 32vw;
}
.sec-01 .title {
	font-size: 1.8vw;
    padding-top: 2vw;
    padding-left: 4.5vw;
}
.sec-01 .title span.en {
	padding-left: 5px;
}
.sec-01 p.jp {
	margin: 7px 0 2vw;
    padding-left: 8vw;
    line-height: 2;
}
.sec-01 p.en {
    padding-left: 13vw;
    padding-bottom: 2vw;
    width: 41vw;
    text-align: justify;
}
@media screen and (max-width: 959px) {
	.sec-01 .wrap750 {
		background: url("../images/index/sec-01bg_sp.webp");
		background-size: 100%;
		background-repeat: no-repeat;
        margin-top: 10px;
		height: auto;
	}
	.sec-01 .title {
		font-size: 5.5vw;
        padding-top: 6vw;
        padding-left: unset;
	}
	.sec-01 p.jp {
        padding-left: unset;
        width: 53vw;
        text-align: justify;
        line-height: 1.5;
        font-size: 3.5vw;
	}
	.sec-01 p.en {
		padding-left: unset;
        text-align: justify;
        font-size: 3.5vw;
        width: 100%;
	}
}

/* sec-02 */
.sec-02 .wrap750 {
	background: url("../images/index/sec-02bg.webp");
    background-size: 100%;
    background-repeat: no-repeat;
	height: 56vw;
	position: relative;
}
.sec-02 .title {
    font-size: 1.8vw;
    padding-top: 5vw;
    padding-left: 29vw;
}
.sec-02 p.jp {
	margin: 7px 0 15px;
    padding-left: 29vw;
    line-height: 2;
}
.sec-02 p.en {
    padding-left: 29vw;
    padding-bottom: 2vw;
    width: 39vw;
    text-align: justify;
}
.sec-02 .title2 {
    font-size: 1.8vw;
    padding-top: 5vw;
    padding-left: 17vw;
}
.sec-02 p.jp2 {
	margin: 5px 0 10px;
    padding-left: 20.5vw;
    line-height: 1.8;
}
.sec-02 p.en2 {
    padding-left: 26vw;
    padding-bottom: 10vw;
    width: 39vw;
    text-align: justify;
}
.sec-02 .wrap-sp2.position {
	position: absolute;
    top: 23.5em;
}
@media screen and (max-width: 959px) {
	.sec-02 .wrap750 {
		background: url("../images/index/sec-02bg_sp.webp");
		background-size: 100%;
		background-repeat: no-repeat;
        margin-top: 10px;
		position: unset;
		height: auto;
	}
	.sec-02 .title {
		font-size: 5.5vw;
        padding-top: 6vw;
        padding-left: unset;
	}
	.sec-02 p.jp {
		padding-left: unset;
        width: 100%;
        text-align: justify;
        line-height: 1.5;
        font-size: 3.5vw;
        margin: 3px 0 5px;
		letter-spacing: -0.3vw;
	}
	.sec-02 p.en {
		padding-left: unset;
        text-align: justify;
        font-size: 3.5vw;
        width: 100%;
		line-height: 1.4;
	}
	.sec-02 .title2 {
		font-size: 5.5vw;
        padding-top: 70vw;
        padding-left: unset;
	}
	.sec-02 p.jp2 {
		padding-left: unset;
        width: 100%;
        text-align: justify;
        line-height: 1.5;
        font-size: 3.5vw;
        margin: 5px 0;
        letter-spacing: -0.08vw;
	}
	.sec-02 p.en2 {
		padding-left: unset;
        text-align: justify;
        font-size: 3.5vw;
        width: 100%;
        line-height: 1.4;
	}
	.sec-02 .wrap-sp2.position {
		position: unset;
		top: unset;
	}
}

/* sec-03 */
.sec-03 .wrap750 {
	background: url("../images/index/sec-03bg.webp");
    background-size: 100%;
    background-repeat: no-repeat;
	height: 29.5vw;
	position: relative;
}
.sec-03 .title {
    font-size: 1.8vw;
    padding-top: 5vw;
    padding-left: 3vw;
}
.sec-03 p.jp {
	margin: 7px 0 15px;
    padding-left: 3vw;
    line-height: 2;
}
.sec-03 p.en {
    padding-left: 3vw;
    width: 39vw;
    text-align: justify;
}
@media screen and (max-width: 959px) {
	.sec-03 .wrap750 {
		background: url("../images/index/sec-03bg_sp.webp");
		background-size: 100%;
		background-repeat: no-repeat;
        margin-top: 10px;
		position: unset;
		height: auto;
	}
	.sec-03 .title {
		font-size: 5.3vw;
        padding-top: 10vw;
        padding-left: unset;
		letter-spacing: -0.3vw;
	}
	.sec-03 p.jp {
        padding-left: unset;
        width: 100%;
        text-align: justify;
        line-height: 1.5;
        font-size: 3.5vw;
        margin: 3px 0 5px;
        letter-spacing: normal;
	}
	.sec-03 p.en {
		padding-left: unset;
        text-align: justify;
        font-size: 3.5vw;
        width: 100%;
		line-height: 1.6;
		padding-bottom: 102vw;
	}
}

/* sec-04 */
.sec-04 .wrap750 {
	background: url("../images/index/sec-04bg.webp");
    background-size: 100%;
    background-repeat: no-repeat;
	height: 22.5vw;
	position: relative;
}
.sec-04 .title {
    font-size: 1.8vw;
    padding-top: 3.5vw;
    padding-left: 28vw;
}
.sec-04 p.jp {
    margin: 2px 0 10px;
    padding-left: 28vw;
    line-height: 1.9;
}
.sec-04 p.en {
    padding-left: 28vw;
    width: 39vw;
    text-align: justify;
}
@media screen and (max-width: 959px) {
	.sec-04 .wrap750 {
		background: url("../images/index/sec-04bg_sp.webp");
		background-size: 100%;
		background-repeat: no-repeat;
        margin-top: 10px;
		position: unset;
		height: auto;
	}
	.sec-04 .title {
		font-size: 5.3vw;
        padding-top: 7vw;
        padding-left: unset;
		letter-spacing: 0;
	}
	.sec-04 p.jp {
        padding-left: unset;
        width: 100%;
        text-align: justify;
        line-height: 1.5;
        font-size: 3.5vw;
        margin: 3px 0 5px;
        letter-spacing: normal;
	}
	.sec-04 p.en {
		padding-left: unset;
        text-align: justify;
        font-size: 3.5vw;
        width: 100%;
		line-height: 1.5;
		padding-bottom: 57vw;
	}
}

/* sec-05 */
.sec-05 .wrap750 {
	background: url("../images/index/sec-05bg.webp");
    background-size: 100%;
    background-repeat: no-repeat;
	height: 23.3vw;
	position: relative;
}
.sec-05 .title {
    font-size: 1.8vw;
    padding-top: 2.5vw;
    padding-left: 2.5vw;
}
.sec-05 p.jp {
    margin: 2px 0 10px;
    padding-left: 2.5vw;
    line-height: 1.9;
}
.sec-05 p.en {
    padding-left: 2.5vw;
    width: 39vw;
    text-align: justify;
}
@media screen and (max-width: 959px) {
	.sec-05 .wrap750 {
		background: url("../images/index/sec-05bg_sp.webp");
		background-size: 100%;
		background-repeat: no-repeat;
        margin-top: 10px;
		position: unset;
		height: auto;
	}
	.sec-05 .title {
		font-size: 5.3vw;
        padding-top: 7vw;
        padding-left: unset;
		letter-spacing: 0;
	}
	.sec-05 p.jp {
        padding-left: unset;
        width: 100%;
        text-align: justify;
        line-height: 1.5;
        font-size: 3.5vw;
        margin: 3px 0 5px;
        letter-spacing: normal;
	}
	.sec-05 p.en {
		padding-left: unset;
        text-align: justify;
        font-size: 3.5vw;
        width: 100%;
		line-height: 1.5;
		padding-bottom: 67vw;
	}
}

/* sec-06 */
.sec-06 .wrap590 {
	background: url(../images/index/bronze-statue.svg);
    background-size: 35%;
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: 1vw;
    height: 50vw;
}
.sec-06 .title {
    font-size: 1.8vw;
    padding-top: 1.5vw;
    padding-left: 2.5vw;
    letter-spacing: -0.07vw;
}
.sec-06 p.jp {
    margin: 2px 0 10px;
    padding-left: 2.5vw;
    line-height: 1.9;
}
.sec-06 p.en {
    padding-left: 2.5vw;
    width: 39vw;
    text-align: justify;
}
@media screen and (max-width: 959px) {
	.sec-06 .wrap590 {
        background: url(../images/index/bronze-statue.svg);
		background-size: 60%;
        background-repeat: no-repeat;
        background-position-x: 20px;
        background-position-y: 0;
        margin-top: -10vw;
        position: unset;
        height: auto;
	}
	.sec-06 .title {
		font-size: 5.3vw;
        padding-top: 22vw;
        padding-left: unset;
		letter-spacing: 0;
		text-align: center;
	}
	.sec-06 p.jp {
        padding-left: unset;
        width: 100%;
        text-align: justify;
        line-height: 1.5;
        font-size: 3.5vw;
        margin: 3px 0 10px;
        letter-spacing: normal;
	}
	.sec-06 p.en {
		padding-left: unset;
        text-align: justify;
        font-size: 3.5vw;
        width: 100%;
		line-height: 1.5;
		padding-bottom: 3vw;
	}
	.sec-06 .title span.en {
		white-space: nowrap;
	    letter-spacing: -0.2vw;
	}
	.sec-06 .flex.bento {
		flex-wrap: wrap;
        flex-direction: unset;
		justify-content: space-around;
		gap: 2em 0;
	}
	.sec-06 .flex.bento figure {
		width: 45%;
	}
	.sec-06 .flex.bento figure.end {
		width: 70%;
	}
}

/* sec-07 */
.sec-07 .flex.footer {
	justify-content: space-around;
	gap: 0;
}
.sec-07 .footer-mark {
	margin-bottom: 20px;
}
.sec-07 .footer-mark p {
	text-align: center;
	font-size: 2vw;
}
.sec-07 .footer-mark figure {
	width: 124px;
	margin: 0 auto;
}
.sec-07 .row figure.pc_only {
	width: 31px;
	margin: 10px auto 20px;
}
.sec-07 .row {
	text-align: center;
}
.sec-07 .row p.shop-name {
	font-size: 1.8vw;
}
.sec-07 .row p.en.Truckin {
	font-size: 1.6vw;
}
.sec-07 .row p.address {
	font-size: 1.4vw;
}
.sec-07 .row p.address-en {
	font-size: 1.1vw;
}
.sec-07 .row p.tel {
	font-size: 2.0vw;
}
.sec-07 .copyright {
	text-align: center;
	font-size: 1.2vw;
	margin: 70px 0;
}
@media screen and (max-width: 959px) {
	.sec-07 {
		margin-top: 20vw;
	}
	.sec-07 .row p.shop-name {
		font-size: 7vw;
	}
	.sec-07 .row p.en.Truckin {
		font-size: 6.5vw;
	}
	.sec-07 .row p.address {
		font-size: 5vw;
	}
	.sec-07 .row p.address-en {
		font-size: 3vw;
	}
	.sec-07 .row p.tel {
		font-size: 6.5vw;
	}
	.sec-07 .footer-mark p {
		text-align: center;
		font-size: 8vw;
		margin: 20px 0;
	}
	.sec-07 .copyright {
		font-size: 5.5vw;
		margin: 50px 0 60px;
	}
	.sec-07 .row figure.sp_only {
		width: 110px;
		display: inline-block;
		margin: 0 5px;
	}
	.sec-07 .row figure.sp_only.border {
		width: 90vw;
		margin: 30px 0 20px;
    }
}

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