@charset "UTF-8";
  *:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
all: unset;
display: revert;
} *,
*::before,
*::after {
box-sizing: border-box;
} a,
button {
cursor: revert;
} ol,
ul,
menu {
list-style: none;
} img {
max-width: 100%;
} table {
border-collapse: collapse;
} input,
textarea {
-webkit-user-select: auto;
} textarea {
white-space: revert;
} meter {
-webkit-appearance: revert;
appearance: revert;
} ::placeholder {
color: unset;
} :where([hidden]) {
display: none;
} :where([contenteditable]:not([contenteditable=false])) {
-moz-user-modify: read-write;
-webkit-user-modify: read-write;
overflow-wrap: break-word;
-webkit-line-break: after-white-space;
-webkit-user-select: auto;
} :where([draggable=true]) {
-webkit-user-drag: element;
}
:root {
--main-color: #333;
--sub-color: #fff;
--shop-color: #d9070a;
--bg-color: #F3D282;
} @keyframes circlemove {
0% {
bottom: 45px;
}
100% {
bottom: -5px;
}
}
@keyframes cirlemovehide {
0% {
opacity: 0;
}
50% {
opacity: 1;
}
80% {
opacity: 0.9;
}
100% {
opacity: 0;
}
} @keyframes fluidrotate {
0%, 100% {
border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
}
14% {
border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
}
28% {
border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
}
42% {
border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
}
56% {
border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
}
70% {
border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
}
84% {
border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
}
} @keyframes loop {
to {
transform: translateX(-50%);
}
} @keyframes move-y {
from {
transform: translateY(0);
}
to {
transform: translateY(10px);
}
}
* {
box-sizing: border-box;
}
body {
height: 100%;
margin: 0 auto;
font-family: "Noto Serif JP", serif;
font-size: clamp(0.875rem, 0.792rem + 0.174vw, 1rem);
line-height: 2;
color: var(--main-color);
background: var(--bg-color);
}
body .wrap {
overflow: hidden;
}
a {
text-decoration: none;
transition: 0.2s ease-in-out;
}
img {
width: 100%;
height: auto;
vertical-align: top;
}
.pc__view {
display: block;
}
.sp__view {
display: none;
}
@media screen and (max-width: 768px) {
.pc__view {
display: none;
}
.sp__view {
display: block;
}
}  .fa-arrow-up-right-from-square {
margin-left: 0.5em;
}
header {
width: 100%;
height: 100px;
display: flex;
justify-content: space-between;
align-items: center;
position: fixed;
padding: 10px 40px;
z-index: 90;
}
@media screen and (max-width: 768px) {
header {
padding: 10px 3%;
}
}
.header__logo {
width: 45%;
}
.header__logo img {
width: 170px;
}
.menu {
display: flex;
}
.header__shop__btn a {
display: block;
background: var(--shop-color);
color: var(--sub-color);
padding: 10px 40px;
margin-right: 30px;
font-size: clamp(0.75rem, 0.563rem + 0.391vw, 0.875rem);
border-radius: 70px;
}
@media screen and (max-width: 768px) {
.header__shop__btn a {
margin-right: 15px;
}
}
@media screen and (max-width: 480px) {
.header__shop__btn a {
display: none;
}
} nav {
display: flex;
align-items: center;
}
@media screen and (max-width: 768px) {
nav {
margin-right: 15px;
}
}
.menu__box {
display: flex;
justify-content: center;
align-items: center;
position: fixed;
visibility: hidden;
top: 0;
left: 0;
width: 100%;
height: 100vh;
margin: -100vh 0 0 0;
text-align: center;
background-color: rgba(243, 210, 130, 0.9);
z-index: 1;
transition-duration: 0.5s;
}
.menu__box ul .menu__sns a {
margin-right: 10px;
color: var(--sub-color);
}
.menu__item {
display: block;
padding: 0 0 30px 0;
color: var(--sub-color);
font-size: clamp(0.875rem, 0.728rem + 0.643vw, 1.5rem);
font-weight: bold;
text-transform: uppercase;
transition-duration: 0.5s;
position: relative;
left: 0;
}
.menu__item:hover {
left: 5px;
}
#menu__toggle:checked ~ .menu__btn > span {
transform: rotate(45deg);
}
#menu__toggle:checked ~ .menu__btn > span::before {
top: 0;
transform: rotate(0);
background: var(--sub-color);
}
#menu__toggle:checked ~ .menu__btn > span::after {
top: 0;
transform: rotate(90deg);
background: var(--sub-color);
}
#menu__toggle:checked ~ .menu__box {
visibility: visible;
left: 0;
margin: 0;
}
.menu__btn {
transition-duration: 0.25s;
box-sizing: border-box;
display: flex;
align-items: center;
position: relative;
width: 26px;
height: 26px;
cursor: pointer;
z-index: 2;
}
.menu__btn span {
display: inline-block;
position: absolute;
width: 100%;
height: 3px;
background-color: var(--sub-color);
}
.menu__btn span::before {
display: inline-block;
position: absolute;
width: 100%;
height: 3px;
background-color: var(--sub-color);
content: "";
top: -8px;
transition-duration: 0.25s;
}
.menu__btn span::after {
display: inline-block;
position: absolute;
width: 100%;
height: 3px;
background-color: var(--sub-color);
content: "";
top: 8px;
transition-duration: 0.25s;
}
footer {
width: 100%;
height: auto;
background: var(--sub-color);
padding: 50px 0;
text-align: center;
border-radius: 200px 200px 0 0;
filter: drop-shadow(0px -10px 10px rgba(51, 51, 51, 0.3));
}
.footer__logo {
text-align: center;
margin-bottom: 25px;
}
.footer__logo img {
width: 150px;
}
.footer__nav ul {
display: flex;
justify-content: center;
margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
.footer__nav ul {
display: block;
}
}
.footer__nav ul li {
margin-right: 20px;
font-weight: bold;
}
@media screen and (max-width: 768px) {
.footer__nav ul li {
margin-right: 0;
margin-bottom: 20px;
}
.footer__nav ul li:last-child {
margin-bottom: 0;
}
}
.footer__sns ul {
display: flex;
justify-content: center;
margin-bottom: 25px;
}
.footer__sns ul li {
margin-right: 20px;
font-size: 20px;
}
.rule {
display: flex;
justify-content: center;
margin-bottom: 30px;
}
.privacy {
padding-right: 10px;
position: relative;
}
.privacy::after {
content: "｜";
position: absolute;
right: 0;
top: 0;
bottom: 0;
margin-top: auto;
margin-bottom: auto;
}
.footer__shop__link {
font-weight: bold;
}
.copylight {
font-size: 8px;
} .site__opening {
width: 100%;
height: 100vh;
position: relative;
position: fixed;
top: 0;
left: 0;
z-index: 99;
display: flex;
align-items: center;
justify-content: center;
}
.site__opening .site__opening__mask {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background-color: var(--shop-color);
z-index: 1;
}
.site__opening .site__opening__logo {
display: block;
width: 30%;
height: auto;
z-index: 2;
clip-path: inset(0 100% 0 0);
transform: scale(1.1);
opacity: 0;
}
@media screen and (max-width: 768px) {
.site__opening .site__opening__logo {
width: 70%;
height: auto;
}
}
@media screen and (max-width: 480px) {
.site__opening .site__opening__logo {
width: 80%;
height: auto;
}
} .loop__wrapper {
overflow: hidden;
}
.loop__text {
animation: loop 50s infinite linear;
width: max-content;
}
.loop__text span {
word-break: keep-all;
font-size: clamp(7.5rem, 6.62rem + 3.859vw, 11.25rem);
font-weight: bold;
color: var(--sub-color);
line-height: 1;
}
.swiper-wrapper {
transition-timing-function: linear;
}
.swiper {
margin-top: 150px;
z-index: 0;
}
@media screen and (max-width: 768px) {
.swiper {
margin-top: 100px;
}
}
.slide__img__list.m-t {
margin-top: 50px;
}
.list__img img {
border-radius: 1000px;
} .mv {
width: 100%;
min-height: 100vh;
position: relative;
}
.mv .loop__wrapper {
padding-top: 150px;
padding-bottom: 0;
}
@media screen and (max-width: 768px) {
.mv .loop__wrapper {
padding-top: 70px;
}
}
.mv__img {
width: 55%;
min-height: 130vh;
background: url(//www.milch-japan.co.jp/wp-content/themes/yufuinMilch/img/page/front/mv.jpg);
background-position: bottom -400px right 50%;
background-size: 4500px;
border-radius: 1000px;
position: absolute;
top: 100px;
left: 60%;
transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
.mv__img {
width: 90%;
position: absolute;
top: 100px;
left: 50%;
transform: translateX(-50%);
}
}
@media screen and (max-width: 480px) {
.mv__img {
min-height: 110vh;
}
}
.mv__cc {
position: absolute;
top: 70%;
left: 40px;
transform: translateY(-50%);
}
@media screen and (max-width: 480px) {
.mv__cc {
top: 60%;
left: 5px;
}
}
.mv__cc p {
font-size: clamp(2rem, 1.413rem + 2.572vw, 4.5rem);
font-weight: bold;
color: var(--sub-color);
}
.mv__sns {
position: relative;
position: absolute;
bottom: 0;
right: 5%;
padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
.mv__sns {
right: 50%;
transform: translateX(50%);
}
}
@media screen and (max-width: 768px) {
.mv__sns ul {
display: none;
}
}
.mv__sns ul li {
font-size: 20px;
}
.mv__sns ul li a {
width: 40px;
height: 40px;
display: flex;
justify-content: center;
align-items: center;
border: 1px solid var(--main-color);
border-radius: 50%;
margin-bottom: 10px;
}
.online-shop__btn--sp {
display: none;
}
@media screen and (max-width: 480px) {
.online-shop__btn--sp {
display: block;
width: 90%;
position: fixed;
bottom: 10px;
left: 50%;
transform: translateX(-50%);
transition: 0.5s;
}
.online-shop__btn--sp.is-hidden {
visibility: hidden;
opacity: 0;
}
.online-shop__btn--sp .fixed__shop__btn--sp a {
display: block;
background: var(--shop-color);
color: var(--sub-color);
padding: 20px 40px;
font-size: clamp(0.75rem, 0.563rem + 0.391vw, 0.875rem);
font-weight: bold;
border-radius: 70px;
z-index: 5;
}
} .scroll__down {
position: absolute;
bottom: 10px;
left: 50%;
}
@media screen and (max-width: 480px) {
.scroll__down {
bottom: 80px;
}
}
.scroll__down span {
position: absolute;
left: 10px;
bottom: 10px;
color: var(--main-color);
font-size: 0.7rem;
font-weight: bold;
letter-spacing: 0.05em;
writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
.scroll__down span {
color: var(--sub-color);
}
}
.scroll__down:before {
content: "";
position: absolute;
bottom: 0;
left: -4px;
width: 10px;
height: 10px;
border-radius: 50%;
background: var(--main-color);
animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
@media screen and (max-width: 768px) {
.scroll__down:before {
background: var(--sub-color);
}
}
.scroll__down:after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 2px;
height: 50px;
background: var(--main-color);
}
@media screen and (max-width: 768px) {
.scroll__down:after {
background: var(--sub-color);
}
} .lead {
display: flex;
flex-wrap: wrap;
padding: 300px 40px;
max-width: 1400px;
margin: 0 auto;
position: relative;
}
@media screen and (max-width: 768px) {
.lead {
padding: 800px 3% 100px;
overflow: hidden;
}
}
@media screen and (max-width: 480px) {
.lead {
padding: 650px 3% 100px;
}
}
.lead__left {
width: 50%;
}
@media screen and (max-width: 768px) {
.lead__left {
width: 100%;
}
}
.lead__img--left {
width: 300px;
min-height: 500px;
background: url(//www.milch-japan.co.jp/wp-content/themes/yufuinMilch/img/page/front/lead_01.jpg);
background-position: center;
background-size: cover;
border-radius: 1000px;
position: absolute;
top: 200px;
left: 5%;
}
@media screen and (max-width: 768px) {
.lead__img--left {
width: 65%;
min-height: 45%;
top: 500px;
}
}
@media screen and (max-width: 480px) {
.lead__img--left {
min-height: 40%;
top: 250px;
}
}
.lead__img--right {
width: 200px;
min-height: 350px;
background: url(//www.milch-japan.co.jp/wp-content/themes/yufuinMilch/img/page/front/lead_02.jpg);
background-position: center;
background-size: cover;
border-radius: 1000px;
position: absolute;
top: 550px;
left: 30%;
}
@media screen and (max-width: 768px) {
.lead__img--right {
width: 50%;
min-height: 35%;
top: 750px;
left: 45%;
}
}
@media screen and (max-width: 480px) {
.lead__img--right {
min-height: 30%;
top: 450px;
}
}
.lead__right {
width: 50%;
padding-top: 200px;
}
@media screen and (max-width: 768px) {
.lead__right {
padding-top: 500px;
width: 100%;
z-index: -1;
}
}
@media screen and (max-width: 480px) {
.lead__right {
padding-top: 100px;
}
}
.lead__bg {
width: 55vh;
height: 45vh;
margin: 0 auto;
background: var(--sub-color);
animation: fluidrotate 30s ease 0s infinite;
position: relative;
}
@media screen and (max-width: 768px) {
.lead__bg {
width: 120vw;
margin: 0 calc(50% - 60vw);
}
}
.lead__text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.lead__text__ttl {
font-size: clamp(1rem, 0.667rem + 0.694vw, 1.5rem);
font-weight: bold;
margin-bottom: 10px;
} .products {
max-width: 1400px;
padding: 0 40px 300px;
margin: 0 auto;
}
@media screen and (max-width: 768px) {
.products {
padding: 0 3% 100px;
}
}
.products .section__ttl {
font-size: clamp(2.25rem, -0.417rem + 5.556vw, 6.25rem);
font-weight: bold;
position: relative;
}
.products .section__ttl span {
font-size: clamp(3.5rem, 1.681rem + 7.974vw, 11.25rem);
font-weight: bold;
color: #fff;
position: absolute;
top: 50px;
left: 20px;
line-height: 1;
z-index: -1;
}
@media screen and (max-width: 768px) {
.products .section__ttl span {
top: 20px;
left: 10px;
}
}
.products__contents {
margin-top: 200px;
}
@media screen and (max-width: 768px) {
.products__contents {
margin-top: 100px;
}
}
.products__list {
margin-bottom: 200px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.products__list:last-child {
margin-bottom: 0;
}
@media screen and (max-width: 768px) {
.products__list {
margin-bottom: 100px;
}
.products__list .order__1 {
order: 2;
}
.products__list .order__2 {
order: 1;
}
}
.products__desc {
margin-top: 70px;
}
.list__name {
position: relative;
}
.milk-shape {
width: 25vh;
height: 30vh;
background: var(--sub-color);
animation: fluidrotate 30s ease 0s infinite;
position: absolute;
bottom: -100px;
left: 50%;
transform: translateX(-50%);
z-index: -1;
}
@media screen and (max-width: 768px) {
.milk-shape {
width: 20vh;
height: 25vh;
}
}
.list__name .en__name--left {
font-size: clamp(1.5rem, 0.796rem + 3.087vw, 4.5rem);
font-weight: bold;
line-height: 1;
writing-mode: vertical-lr;
}
@media screen and (max-width: 768px) {
.list__name .en__name--left {
writing-mode: horizontal-tb;
margin-bottom: 30px;
}
}
.list__name .en__name--left span {
display: block;
font-size: 14px;
font-weight: normal;
margin-left: 7px;
}
@media screen and (max-width: 768px) {
.list__name .en__name--left span {
margin-top: 5px;
margin-left: 0px;
}
}
.list__name .en__name--right {
font-size: clamp(1.5rem, 0.796rem + 3.087vw, 4.5rem);
font-weight: bold;
line-height: 1;
writing-mode: vertical-rl;
margin-left: auto;
}
@media screen and (max-width: 768px) {
.list__name .en__name--right {
writing-mode: horizontal-tb;
margin-bottom: 30px;
}
}
.list__name .en__name--right span {
display: block;
font-size: 14px;
font-weight: normal;
margin-right: 12px;
}
@media screen and (max-width: 768px) {
.list__name .en__name--right span {
margin-top: 5px;
margin-right: 0;
}
}
.list__detail {
width: 40%;
display: flex;
justify-content: space-between;
}
@media screen and (max-width: 1180px) {
.list__detail {
width: 50%;
}
}
@media screen and (max-width: 768px) {
.list__detail {
flex-wrap: wrap;
width: 100%;
padding: 50px 3% 0;
}
.list__detail .name__order__1 {
order: 1;
}
.list__detail .name__order__2 {
order: 2;
}
}
.sweet__desc__wrap {
padding: 0 30px;
}
@media screen and (max-width: 768px) {
.sweet__desc__wrap {
width: 100%;
padding: 0 3%;
}
}
.sweets__name {
font-size: clamp(1rem, 0.667rem + 0.694vw, 1.5rem);
font-weight: bold;
margin-bottom: 10px;
}
.sweets__cooking {
margin: 20px 0;
}
.sweets__cooking__ttl {
font-size: clamp(1rem, 0.833rem + 0.347vw, 1.25rem);
font-weight: bold;
margin-bottom: 10px;
}
.sweets__cooking__method {
display: flex;
}
.method__list {
width: 80px;
border: 1px solid var(--main-color);
border-radius: 25px;
padding: 5px 0;
margin-right: 10px;
text-align: center;
font-size: 12px;
}
.method__list:last-child {
margin-right: 0;
}
@media screen and (max-width: 1180px) {
.method__list {
width: 60px;
margin-right: 5px;
font-size: 10px;
}
}
.products__list:nth-child(odd) .list__image {
filter: drop-shadow(35px -35px 0 rgba(255, 255, 255, 0.7));
}
.products__list:nth-child(even) .list__image {
filter: drop-shadow(-35px 35px 0 rgba(255, 255, 255, 0.7));
}
.list__image {
width: 55%;
}
@media screen and (max-width: 1180px) {
.list__image {
width: 45%;
}
}
@media screen and (max-width: 768px) {
.list__image {
width: 100%;
}
}
.products__page__view {
margin: 10px 0;
}
.products__page__view a {
position: relative;
display: inline-block;
padding-right: 20px;
color: var(--main-color);
font-weight: bold;
}
.products__page__view a::before {
content: "";
position: absolute;
bottom: -7px;
left: 13%;
width: 85%;
height: 1px;
background: var(--main-color);
transition: all 0.3s;
}
.products__page__view a::after {
content: "";
position: absolute;
bottom: -3px;
right: 0;
width: 15px;
height: 1px;
background: var(--main-color);
transform: rotate(35deg);
transition: all 0.3s;
}
.products__page__view a:hover::before {
left: 30%;
}
.products__page__view a:hover::after {
right: -17%;
}
.list__shop__btn a {
display: inline-block;
background: var(--shop-color);
color: var(--sub-color);
padding: 10px 40px;
margin: 30px 0;
font-size: clamp(0.75rem, 0.563rem + 0.391vw, 0.875rem);
}
.view__more__btn a {
display: block;
background: var(--sub-color);
width: 25%;
min-width: 250px;
padding: 20px 0 20px 40px;
margin: 100px auto 0 auto;
border-radius: 50px;
font-weight: bold;
position: relative;
}
.view__more__btn a::before {
content: "";
position: absolute;
top: 50%;
right: 10%;
width: 40px;
height: 1px;
background: var(--main-color);
transition: all 0.2s linear;
}
.view__more__btn a::after {
content: "";
position: absolute;
top: 35.5%;
right: 11.5%;
width: 1px;
height: 11px;
background: var(--main-color);
transform: skewX(45deg);
transition: all 0.2s linear;
}
.view__more__btn a:hover::before {
right: 4.9%;
}
.view__more__btn a:hover::after {
right: 6.3%;
} .news {
max-width: 1280px;
padding: 0 40px 300px;
margin: 200px auto 0 auto;
}
@media screen and (max-width: 768px) {
.news {
padding: 0 3% 200px;
margin: 100px auto 0 auto;
}
}
.news .section__ttl {
font-size: clamp(2.25rem, -0.417rem + 5.556vw, 6.25rem);
font-weight: bold;
text-align: right;
position: relative;
}
.news .section__ttl span {
font-size: clamp(3.5rem, 1.681rem + 7.974vw, 11.25rem);
font-weight: bold;
color: #fff;
position: absolute;
top: 50px;
right: 20px;
line-height: 1;
z-index: -1;
}
@media screen and (max-width: 768px) {
.news .section__ttl span {
top: 20px;
right: 10px;
}
}
.news__contents {
margin-top: 200px;
}
@media screen and (max-width: 768px) {
.news__contents {
margin-top: 100px;
}
}
.news__lists {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.news__list {
width: 30%;
}
@media screen and (max-width: 768px) {
.news__list {
width: 100%;
margin-bottom: 50px;
}
.news__list:last-child {
margin-bottom: 0;
}
}
.article__thumb {
width: 100%;
}
.article__thumb img {
aspect-ratio: 16/9;
object-fit: cover;
}
.article__text {
padding: 20px;
}
.article__ttl {
margin-bottom: 20px;
font-weight: bold;
} .shops {
max-width: 1280px;
padding: 0 40px 200px;
margin: 0 auto;
}
@media screen and (max-width: 768px) {
.shops {
padding: 0 3% 100px;
}
}
.shops .section__ttl {
font-size: clamp(2.25rem, -0.417rem + 5.556vw, 6.25rem);
font-weight: bold;
position: absolute;
top: -22%;
left: -2%;
}
@media screen and (max-width: 1180px) {
.shops .section__ttl {
top: -17%;
}
}
@media screen and (max-width: 968px) {
.shops .section__ttl {
top: -14%;
}
}
@media screen and (max-width: 768px) {
.shops .section__ttl {
top: -40px;
left: 50%;
transform: translateX(-50%);
}
}
.shops__wrap {
width: 100%;
background: var(--sub-color);
padding: 5%;
position: relative;
}
.shops__contents {
display: flex;
flex-wrap: wrap;
align-items: flex-end;
justify-content: space-between;
}
.shops__desc {
width: 47%;
padding-right: 30px;
}
@media screen and (max-width: 768px) {
.shops__desc {
width: 100%;
padding-right: 0;
padding-top: 20px;
margin-bottom: 50px;
}
}
.shops__desc__text {
margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
.shops__desc__text {
margin-bottom: 20px;
}
}
.view__more__btn--line a {
display: flex;
background: var(--sub-color);
width: 100%;
padding: 20px 0 20px 40px;
margin: 0 auto;
border: 1px solid var(--main-color);
border-radius: 50px;
font-weight: bold;
position: relative;
}
@media screen and (max-width: 768px) {
.view__more__btn--line a {
width: 90%;
}
}
.view__more__btn--line a::before {
content: "";
position: absolute;
top: 49.5%;
right: 10.5%;
width: 40px;
height: 1px;
background: var(--main-color);
transition: all 0.2s linear;
}
.view__more__btn--line a::after {
content: "";
position: absolute;
top: 35.5%;
right: 11.5%;
width: 1px;
height: 11px;
background: var(--main-color);
transform: skewX(45deg);
transition: all 0.2s linear;
}
.view__more__btn--line a:hover::before {
right: 5.4%;
}
.view__more__btn--line a:hover::after {
right: 6.3%;
}
.shops__img {
width: 47%;
position: absolute;
top: -15%;
right: 5%;
}
@media screen and (max-width: 768px) {
.shops__img {
width: 100%;
position: static;
}
} .other {
max-width: 1280px;
padding: 0 40px 200px;
margin: 0 auto;
}
@media screen and (max-width: 768px) {
.other {
padding: 0 3% 100px;
}
}
.otehr__wrap {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.online-shop {
width: 48%;
background: var(--sub-color);
padding: 5%;
position: relative;
}
.online-shop .section__ttl {
font-size: clamp(2.25rem, -0.417rem + 5.556vw, 6.25rem);
font-weight: bold;
position: absolute;
top: -80px;
left: 50%;
transform: translateX(-50%);
}
@media screen and (max-width: 1180px) {
.online-shop .section__ttl {
top: -60px;
}
}
@media screen and (max-width: 968px) {
.online-shop .section__ttl {
top: -50px;
}
}
@media screen and (max-width: 868px) {
.online-shop .section__ttl {
top: -40px;
}
}
@media screen and (max-width: 768px) {
.online-shop {
width: 100%;
}
}
.online-shop__desc__text {
margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
.online-shop__desc__text {
margin-top: 20px;
}
}
.online-shop__btn a {
display: block;
background: var(--shop-color);
color: var(--sub-color);
padding: 20px 0 20px 40px;
font-size: clamp(0.75rem, 0.563rem + 0.391vw, 0.875rem);
}
@media screen and (max-width: 768px) {
.online-shop__btn a {
width: 90%;
margin: 0 auto;
}
}
.contact {
width: 48%;
background: var(--sub-color);
padding: 5%;
position: relative;
}
.contact .section__ttl {
font-size: clamp(2.25rem, -0.417rem + 5.556vw, 6.25rem);
font-weight: bold;
position: absolute;
top: -80px;
left: 50%;
transform: translateX(-50%);
}
@media screen and (max-width: 1180px) {
.contact .section__ttl {
top: -60px;
}
}
@media screen and (max-width: 968px) {
.contact .section__ttl {
top: -50px;
}
}
@media screen and (max-width: 868px) {
.contact .section__ttl {
top: -40px;
}
}
@media screen and (max-width: 768px) {
.contact {
width: 100%;
margin-top: 100px;
}
}
.contact__desc__text {
margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
.contact__desc__text {
margin-top: 20px;
}
} .products__archive {
max-width: 1400px;
padding: 150px 40px;
margin: 0 auto 150px auto; }
@media screen and (max-width: 768px) {
.products__archive {
padding: 100px 3%;
margin: 0 auto 0 auto;
}
}
.products__archive h1.section__ttl {
font-size: clamp(2.25rem, -0.417rem + 5.556vw, 6.25rem);
font-weight: bold;
position: relative;
}
.products__archive h1.section__ttl span {
font-size: clamp(3.5rem, 1.681rem + 7.974vw, 11.25rem);
font-weight: bold;
color: #fff;
position: absolute;
top: 50px;
left: 20px;
line-height: 1;
z-index: -1;
}
@media screen and (max-width: 768px) {
.products__archive h1.section__ttl span {
top: 20px;
left: 10px;
}
}
.products__archive .products__explan {
margin: 150px 0;
}
@media screen and (max-width: 768px) {
.products__archive .products__explan {
margin: 100px 0;
}
}
@media screen and (max-width: 480px) {
.products__archive .products__explan {
margin: 50px 0;
}
}
.products__archive .products__intro__wrap {
max-width: 1080px;
margin: 0 auto;
}
.products__archive .products__intro__wrap .product__name {
font-size: clamp(1.5rem, 0.796rem + 3.087vw, 4.5rem);
font-weight: bold;
line-height: 1;
margin-bottom: 20px;
text-align: center;
}
.products__archive .products__intro__wrap .product__name--ja {
font-size: clamp(0.875rem, 0.846rem + 0.129vw, 1rem);
text-align: center;
}
.products__archive .products__intro__wrap .product__main__img {
margin: 50px 0;
}
.products__archive .products__intro__wrap .product__desc {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
@media screen and (max-width: 768px) {
.products__archive .products__intro__wrap .product__desc .order__1 {
order: 2;
}
.products__archive .products__intro__wrap .product__desc .order__2 {
order: 1;
}
}
.products__archive .products__intro__wrap .product__desc .product__sub__img {
width: 48%;
}
@media screen and (max-width: 768px) {
.products__archive .products__intro__wrap .product__desc .product__sub__img {
width: 100%;
}
}
.products__archive .products__intro__wrap .product__desc .product__text {
width: 48%;
}
@media screen and (max-width: 768px) {
.products__archive .products__intro__wrap .product__desc .product__text {
width: 100%;
padding: 0 20px;
margin-bottom: 50px;
}
}
.products__archive .products__intro__wrap .product__desc .product__text .text__ttl {
font-size: clamp(1.125rem, 1.096rem + 0.129vw, 1.25rem);
font-weight: bold;
margin-bottom: 20px;
}
.products__archive .products__intro__wrap .product__desc .product__text p {
margin-bottom: 10px;
}
.products__archive .products__intro__wrap .product__desc .product__text p:last-child {
margin-bottom: 0;
}
.products__archive .products__intro__wrap .product__desc .product__text .volume {
font-weight: bold;
margin-top: 10px;
}
.products__archive .products__intro__wrap ul li {
margin-bottom: 100px;
}
.products__archive .products__intro__wrap ul li:last-child {
margin-bottom: 0;
}
.products__archive .products__intro__wrap ul li .online__shop__btn {
text-align: center;
margin: 30px 0;
}
.products__archive .products__intro__wrap ul li .online__shop__btn a {
display: inline-block;
background: var(--shop-color);
color: var(--sub-color);
padding: 20px 80px;
margin: 30px 0;
font-size: clamp(0.75rem, 0.563rem + 0.391vw, 0.875rem);
}
.products__archive .products__intro__wrap .page__back__btn a {
display: block;
background: var(--sub-color);
width: 25%;
min-width: 250px;
padding: 20px 0 20px 40px;
margin: 100px auto 0 auto;
border-radius: 50px;
font-weight: bold;
position: relative;
}
@media screen and (max-width: 768px) {
.products__archive .products__intro__wrap .page__back__btn a {
margin: 50px auto 0 auto;
}
}
.products__archive .products__intro__wrap .page__back__btn a::before {
content: "";
position: absolute;
top: 50%;
right: 10%;
width: 40px;
height: 1px;
background: var(--main-color);
transition: all 0.2s linear;
}
.products__archive .products__intro__wrap .page__back__btn a::after {
content: "";
position: absolute;
top: 35.5%;
right: 11.5%;
width: 1px;
height: 11px;
background: var(--main-color);
transform: skewX(45deg);
transition: all 0.2s linear;
}
.products__archive .products__intro__wrap .page__back__btn a:hover::before {
right: 4.9%;
}
.products__archive .products__intro__wrap .page__back__btn a:hover::after {
right: 6.3%;
}
.campany {
max-width: 1400px;
padding: 150px 40px;
margin: 0 auto;
}
@media screen and (max-width: 768px) {
.campany {
padding: 100px 3%;
}
}
.campany__wrap {
width: 100%;
}
.campany__wrap .section__ttl {
font-size: clamp(2.25rem, -0.417rem + 5.556vw, 6.25rem);
font-weight: bold;
position: relative;
}
.campany__wrap .section__ttl span {
font-size: clamp(3.5rem, 1.681rem + 7.974vw, 11.25rem);
font-weight: bold;
color: #fff;
position: absolute;
top: 50px;
left: 20px;
line-height: 1;
z-index: -1;
}
@media screen and (max-width: 768px) {
.campany__wrap .section__ttl span {
top: 20px;
left: 10px;
}
}
.campany__wrap table {
width: 80%;
margin: 150px auto 0 auto;
}
@media screen and (max-width: 768px) {
.campany__wrap table {
width: 90%;
margin: 100px auto 0 auto;
}
}
@media screen and (max-width: 480px) {
.campany__wrap table {
width: 95%;
margin: 50px auto 0 auto;
}
}
.campany__wrap table,
.campany__wrap td,
.campany__wrap th {
border-collapse: collapse;
}
.campany__wrap td,
.campany__wrap th {
padding: 30px;
vertical-align: middle;
}
@media screen and (max-width: 768px) {
.campany__wrap td,
.campany__wrap th {
padding: 20px;
}
}
@media screen and (max-width: 480px) {
.campany__wrap td,
.campany__wrap th {
padding: 15px;
}
}
.campany__wrap th {
font-weight: bold;
}
.shops__child {
max-width: 1400px;
padding: 150px 40px;
margin: 0 auto;
}
@media screen and (max-width: 768px) {
.shops__child {
padding: 100px 3%;
}
}
.shops__child .section__ttl {
font-size: clamp(2.25rem, -0.417rem + 5.556vw, 6.25rem);
font-weight: bold;
position: relative;
}
.shops__child .section__ttl span {
font-size: clamp(3.5rem, 1.681rem + 7.974vw, 11.25rem);
font-weight: bold;
color: #fff;
position: absolute;
top: 50px;
left: 20px;
line-height: 1;
z-index: -1;
}
@media screen and (max-width: 768px) {
.shops__child .section__ttl span {
top: 20px;
left: 10px;
}
}
.shops__child .shops__explan {
margin: 150px 0;
}
@media screen and (max-width: 768px) {
.shops__child .shops__explan {
margin: 100px 0;
}
}
@media screen and (max-width: 480px) {
.shops__child .shops__explan {
margin: 50px 0;
}
}
.shops__child .shops__child__wrap {
margin-top: 100px;
width: 100%;
}
.shops__child .shops__child__wrap .shops__japanese {
margin-bottom: 200px;
}
@media screen and (max-width: 768px) {
.shops__child .shops__child__wrap .shops__japanese {
margin-bottom: 100px;
}
}
.shops__child .shops__child__wrap .shops__japanese .country__name {
font-size: clamp(1.5rem, 0.796rem + 3.087vw, 4.5rem);
font-weight: bold;
border-bottom: 1px solid var(--main-color);
margin-bottom: 50px;
}
.shops__child .shops__child__wrap .shops__japanese .shop__lists .shop__list {
margin-bottom: 100px;
}
.shops__child .shops__child__wrap .shops__japanese .shop__lists .shop__list:last-child {
margin-bottom: 0;
}
.shops__child .shops__child__wrap .shops__japanese .shop__lists .shop__list .shop__flex {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
@media screen and (max-width: 768px) {
.shops__child .shops__child__wrap .shops__japanese .shop__lists .shop__list .shop__flex .order__1 {
order: 1;
}
.shops__child .shops__child__wrap .shops__japanese .shop__lists .shop__list .shop__flex .order__2 {
order: 2;
}
}
.shops__child .shops__child__wrap .shops__japanese .shop__lists .shop__list .shop__flex .shop__photo {
width: 50%;
}
@media screen and (max-width: 768px) {
.shops__child .shops__child__wrap .shops__japanese .shop__lists .shop__list .shop__flex .shop__photo {
width: 100%;
}
}
.shops__child .shops__child__wrap .shops__japanese .shop__lists .shop__list .shop__flex .shop__datail {
width: 48%;
padding: 20px;
}
@media screen and (max-width: 768px) {
.shops__child .shops__child__wrap .shops__japanese .shop__lists .shop__list .shop__flex .shop__datail {
width: 100%;
}
}
.shops__child .shops__child__wrap .shops__japanese .shop__lists .shop__list .shop__flex .shop__datail .shop__name {
font-size: clamp(1.25rem, 1.074rem + 0.772vw, 2rem);
font-weight: bold;
margin-bottom: 15px;
}
.shops__child .shops__child__wrap .shops__japanese .shop__lists .shop__list .gmap {
width: 100%;
position: relative;
padding-top: 36.25%;
margin-top: 30px;
}
.shops__child .shops__child__wrap .shops__japanese .shop__lists .shop__list .gmap iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.shops__child .shops__child__wrap .shops__thailand .country__name {
font-size: clamp(1.5rem, 0.796rem + 3.087vw, 4.5rem);
font-weight: bold;
border-bottom: 1px solid var(--main-color);
margin-bottom: 50px;
text-align: right;
}
.shops__child .shops__child__wrap .shops__thailand .shop__lists .shop__list {
margin-bottom: 50px;
}
.shops__child .shops__child__wrap .shops__thailand .shop__lists .shop__list:last-child {
margin-bottom: 0;
}
.shops__child .shops__child__wrap .shops__thailand .shop__lists .shop__list .shop__flex {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
@media screen and (max-width: 768px) {
.shops__child .shops__child__wrap .shops__thailand .shop__lists .shop__list .shop__flex .order__1 {
order: 1;
}
.shops__child .shops__child__wrap .shops__thailand .shop__lists .shop__list .shop__flex .order__2 {
order: 2;
}
}
.shops__child .shops__child__wrap .shops__thailand .shop__lists .shop__list .shop__flex .shop__photo {
width: 50%;
}
@media screen and (max-width: 768px) {
.shops__child .shops__child__wrap .shops__thailand .shop__lists .shop__list .shop__flex .shop__photo {
width: 100%;
}
}
.shops__child .shops__child__wrap .shops__thailand .shop__lists .shop__list .shop__flex .shop__datail {
width: 48%;
padding: 20px;
}
@media screen and (max-width: 768px) {
.shops__child .shops__child__wrap .shops__thailand .shop__lists .shop__list .shop__flex .shop__datail {
width: 100%;
}
}
.shops__child .shops__child__wrap .shops__thailand .shop__lists .shop__list .shop__flex .shop__datail .shop__name {
font-size: clamp(1.25rem, 1.074rem + 0.772vw, 2rem);
font-weight: bold;
margin-bottom: 15px;
}
.shops__child .shops__child__wrap .shops__thailand .shop__lists .shop__list .gmap {
width: 100%;
position: relative;
padding-top: 36.25%;
margin-top: 30px;
}
.shops__child .shops__child__wrap .shops__thailand .shop__lists .shop__list .gmap iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
} .news__archive {
max-width: 1400px;
padding: 150px 40px;
margin: 0 auto;
}
@media screen and (max-width: 768px) {
.news__archive {
padding: 100px 3%;
}
}
.news__archive .section__ttl {
font-size: clamp(2.25rem, -0.417rem + 5.556vw, 6.25rem);
font-weight: bold;
position: relative;
}
.news__archive .section__ttl span {
font-size: clamp(3.5rem, 1.681rem + 7.974vw, 11.25rem);
font-weight: bold;
color: #fff;
position: absolute;
top: 50px;
left: 20px;
line-height: 1;
z-index: -1;
}
@media screen and (max-width: 768px) {
.news__archive .section__ttl span {
top: 20px;
left: 10px;
}
}
.news__archive .news__explan {
margin: 150px 0;
}
@media screen and (max-width: 768px) {
.news__archive .news__explan {
margin: 100px 0;
}
}
@media screen and (max-width: 480px) {
.news__archive .news__explan {
margin: 50px 0;
}
}
.news__archive .article__contents {
width: 100%;
}
.news__archive .article__contents .article__lists {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.news__archive .article__contents .article__lists .article__list {
width: 48%;
margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
.news__archive .article__contents .article__lists .article__list {
width: 100%;
}
.news__archive .article__contents .article__lists .article__list:last-child {
margin-bottom: 0;
}
}
.news__archive .article__contents .article__lists .article__list .article__thumb img {
aspect-ratio: 16/9;
object-fit: cover;
}
.news__archive .article__contents .article__lists .article__list .article__desc {
padding: 30px;
}
@media screen and (max-width: 1080px) {
.news__archive .article__contents .article__lists .article__list .article__desc {
padding: 20px;
}
}
.news__archive .article__contents .article__lists .article__list .article__desc .article__ttl {
font-weight: bold;
} .news__article {
max-width: 1080px;
padding: 150px 40px;
margin: 0 auto;
}
@media screen and (max-width: 768px) {
.news__article {
padding: 100px 3%;
}
}
.news__article .article__ttl {
font-size: clamp(1.25rem, 1.074rem + 0.772vw, 2rem);
margin-bottom: 10px;
}
.news__article .article__date {
margin-bottom: 30px;
}
.news__article .article__contents {
padding: 50px 3% 0 3%;
}
.news__article .page__back__btn a {
display: block;
background: var(--sub-color);
width: 25%;
min-width: 250px;
padding: 20px 0 20px 40px;
margin: 100px auto 0 auto;
border-radius: 50px;
font-weight: bold;
position: relative;
}
@media screen and (max-width: 768px) {
.news__article .page__back__btn a {
margin: 50px auto 0 auto;
}
}
.news__article .page__back__btn a::before {
content: "";
position: absolute;
top: 50%;
right: 10%;
width: 40px;
height: 1px;
background: var(--main-color);
transition: all 0.2s linear;
}
.news__article .page__back__btn a::after {
content: "";
position: absolute;
top: 35.5%;
right: 11.5%;
width: 1px;
height: 11px;
background: var(--main-color);
transform: skewX(45deg);
transition: all 0.2s linear;
}
.news__article .page__back__btn a:hover::before {
right: 4.9%;
}
.news__article .page__back__btn a:hover::after {
right: 6.3%;
} .contact__page {
max-width: 1400px;
padding: 150px 40px;
margin: 0 auto; }
@media screen and (max-width: 768px) {
.contact__page {
padding: 100px 3%;
}
}
.contact__page .section__ttl {
font-size: clamp(2.25rem, -0.417rem + 5.556vw, 6.25rem);
font-weight: bold;
position: relative;
}
.contact__page .section__ttl span {
font-size: clamp(3.5rem, 1.681rem + 7.974vw, 11.25rem);
font-weight: bold;
color: var(--sub-color);
position: absolute;
top: 50px;
left: 20px;
line-height: 1;
z-index: -1;
}
@media screen and (max-width: 768px) {
.contact__page .section__ttl span {
top: 20px;
left: 10px;
}
}
.contact__page .contact__explan {
margin: 150px 0;
}
@media screen and (max-width: 768px) {
.contact__page .contact__explan {
margin: 100px 0;
}
}
@media screen and (max-width: 480px) {
.contact__page .contact__explan {
margin: 50px 0;
}
}
.contact__page .contact__form__wrap {
width: 80%;
margin: 0 auto 150px auto; }
@media screen and (max-width: 768px) {
.contact__page .contact__form__wrap {
width: 90%;
margin: 0 auto 100px auto;
}
}
@media screen and (max-width: 480px) {
.contact__page .contact__form__wrap {
width: 100%;
margin: 0 auto 50px auto;
}
}
.contact__page .contact__form__wrap table {
width: 100%;
background-color: var(--bg-color);
}
.contact__page .contact__form__wrap .contact__item,
.contact__page .contact__form__wrap .contact__item__detail {
border-collapse: collapse;
padding: 30px;
}
.contact__page .contact__form__wrap .contact__item {
width: 100%;
display: block;
border-bottom: none;
padding: 30px 30px 0 30px;
font-weight: bold;
}
.contact__page .contact__form__wrap .contact__item__detail {
width: 100%;
display: block;
border-top: none;
}
.contact__page .contact__form__wrap .optional {
margin-left: 8px;
padding: 4px 8px;
text-align: center;
background: var(--main-color);
color: var(--sub-color);
font-size: 12px;
}
.contact__page .contact__form__wrap .required {
margin-left: 8px;
padding: 4px 8px;
text-align: center;
background: var(--shop-color);
color: var(--sub-color);
font-size: 12px;
}
.contact__page .contact__form__wrap .contact__item__detail input {
border: 1px solid #ddd;
padding: 1em;
height: 58px;
width: 100%;
background: var(--sub-color);
font-size: 14px;
}
.contact__page .contact__form__wrap .contact__item__detail input::placeholder {
color: #ddd;
}
.contact__page .contact__form__wrap .contact__item__detail select {
border: 1px solid #ddd;
padding: 1em;
height: 58px;
width: 100%;
background: var(--sub-color);
font-size: 14px;
}
.contact__page .contact__form__wrap .contact__item__detail textarea {
border: 1px solid #ddd;
padding: 1em;
height: 216px;
width: 100%;
background: var(--sub-color);
font-size: 14px;
}
.contact__page .contact__form__wrap .contact__item__detail textarea::placeholder {
color: #ddd;
}
.contact__page .contact__form__wrap .consent {
text-align: center;
margin-top: 30px;
}
.contact__page .contact__form__wrap .consent input[type=checkbox] {
cursor: pointer;
padding-left: 30px; vertical-align: middle;
position: relative;
}
.contact__page .contact__form__wrap .consent input[type=checkbox]::before,
.contact__page .contact__form__wrap .consent input[type=checkbox]::after {
content: "";
display: block;
position: absolute;
}
.contact__page .contact__form__wrap .consent input[type=checkbox]::before {
background-color: var(--sub-color);
border-radius: 0%;
border: 1px solid var(--shop-color);
width: 20px; height: 20px; transform: translateY(-50%);
top: 50%;
left: 5px;
}
.contact__page .contact__form__wrap .consent input[type=checkbox]::after {
border-bottom: 3px solid var(--shop-color); border-left: 3px solid var(--shop-color); opacity: 0; height: 6px; width: 11px; transform: rotate(-45deg);
top: -5px; left: 10px; }
.contact__page .contact__form__wrap .consent input[type=checkbox]:checked::after {
opacity: 1; }
.contact__page .contact__form__wrap .submit__btn input {
border-radius: 6px;
margin: 32px auto 32px auto;
padding: 20px 0;
width: 280px;
display: block;
background: var(--shop-color);
color: var(--sub-color);
font-weight: bold;
font-size: 16px;
text-align: center;
}
.contact__page .contact__form__wrap .submit__btn input:hover {
cursor: pointer;
opacity: 0.7;
transition: all 0.3s ease;
}
.contact__page .contact__form__wrap .wpcf7 form.sent .wpcf7-response-output {
border-color: var(--shop-color);
}
.contact__page .contact__note .contact__note__advance {
margin-bottom: 50px;
font-size: clamp(0.625rem, 0.566rem + 0.257vw, 0.875rem);
}
.contact__page .contact__note .contact__note__desc {
margin-bottom: 50px;
font-size: clamp(0.625rem, 0.566rem + 0.257vw, 0.875rem);
}
.contact__page .contact__note .contact__note__desc .note__ttl {
display: block;
font-weight: bold;
margin-bottom: 20px;
}
.contact__page .contact__note .contact__note__item {
margin-bottom: 20px;
font-size: clamp(0.625rem, 0.566rem + 0.257vw, 0.875rem);
}
.contact__page .contact__thanks {
text-align: center;
margin-top: 150px;
}
.contact__page .contact__thanks .send__finish {
display: block;
font-size: clamp(0.875rem, 0.787rem + 0.386vw, 1.25rem);
font-weight: bold;
margin-bottom: 50px;
}
.contact__page .page__back__btn a {
display: block;
background: var(--sub-color);
width: 25%;
min-width: 250px;
padding: 20px 0 20px 40px;
margin: 100px auto 0 auto;
border-radius: 50px;
font-weight: bold;
position: relative;
}
@media screen and (max-width: 768px) {
.contact__page .page__back__btn a {
margin: 50px auto 0 auto;
}
}
.contact__page .page__back__btn a::before {
content: "";
position: absolute;
top: 50%;
right: 10%;
width: 40px;
height: 1px;
background: var(--main-color);
transition: all 0.2s linear;
}
.contact__page .page__back__btn a::after {
content: "";
position: absolute;
top: 35.5%;
right: 11.5%;
width: 1px;
height: 11px;
background: var(--main-color);
transform: skewX(45deg);
transition: all 0.2s linear;
}
.contact__page .page__back__btn a:hover::before {
right: 4.9%;
}
.contact__page .page__back__btn a:hover::after {
right: 6.3%;
} .grecaptcha-badge {
visibility: hidden;
}
.recaptcha {
text-align: center;
font-size: 10px;
}
.recaptcha a {
color: var(--sub-color);
}
.privacy-policy {
max-width: 1400px;
padding: 150px 40px;
margin: 0 auto;
}
@media screen and (max-width: 768px) {
.privacy-policy {
padding: 100px 3%;
}
}
.privacy-policy__wrap {
width: 100%;
}
.privacy-policy__wrap .section__ttl {
font-size: clamp(2.25rem, -0.417rem + 5.556vw, 6.25rem);
font-weight: bold;
position: relative;
}
.privacy-policy__wrap .section__ttl span {
font-size: clamp(3.5rem, 1.681rem + 7.974vw, 11.25rem);
font-weight: bold;
color: #fff;
position: absolute;
top: 50px;
left: 20px;
line-height: 1;
z-index: -1;
}
@media screen and (max-width: 768px) {
.privacy-policy__wrap .section__ttl span {
top: 20px;
left: 10px;
}
}
.privacy-policy__wrap .privacy-policy__text {
width: 80%;
margin: 300px auto 0 auto;
}
@media screen and (max-width: 768px) {
.privacy-policy__wrap .privacy-policy__text {
width: 90%;
margin: 180px auto 0 auto;
}
}
@media screen and (max-width: 480px) {
.privacy-policy__wrap .privacy-policy__text {
width: 95%;
margin: 150px auto 0 auto;
}
}
.privacy-policy__wrap .privacy-policy__text p {
margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
.privacy-policy__wrap .privacy-policy__text p {
font-size: 12px;
}
}
.privacy-policy__wrap .privacy-policy__text .privacy-policy__text__explan {
margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
.privacy-policy__wrap .privacy-policy__text .privacy-policy__text__explan {
margin-bottom: 50px;
}
}
.privacy-policy__wrap .privacy-policy__text .privacy-policy__text__ttl {
font-weight: bold;
margin-top: 50px;
}  .recruit {
max-width: 1400px;
padding: 150px 40px;
margin: 0 auto;
}
@media screen and (max-width: 768px) {
.recruit {
padding: 100px 3%;
}
}
.recruit__wrap {
width: 100%;
}
.recruit__wrap .section__ttl {
font-size: clamp(2.25rem, -0.417rem + 5.556vw, 6.25rem);
font-weight: bold;
position: relative;
}
.recruit__wrap .section__ttl span {
font-size: clamp(3.5rem, 1.681rem + 7.974vw, 11.25rem);
font-weight: bold;
color: #fff;
position: absolute;
top: 50px;
left: 20px;
line-height: 1;
z-index: -1;
}
@media screen and (max-width: 768px) {
.recruit__wrap .section__ttl span {
top: 20px;
left: 10px;
}
}
.recruit__wrap table {
width: 80%;
margin: 150px auto 0 auto;
}
@media screen and (max-width: 768px) {
.recruit__wrap table {
width: 90%;
margin: 100px auto 0 auto;
}
}
@media screen and (max-width: 480px) {
.recruit__wrap table {
width: 95%;
margin: 50px auto 0 auto;
}
}
.recruit__wrap table,
.recruit__wrap td,
.recruit__wrap th {
border-collapse: collapse;
}
.recruit__wrap td,
.recruit__wrap th {
padding: 5px 20px 20px 5px;
vertical-align: middle;}
.recruit__wrap th {
width:20%;}
@media screen and (max-width: 768px) {
.recruit__wrap td,
.recruit__wrap th {
padding: 10px;
}
}
@media screen and (max-width: 480px) {
.recruit__wrap td,
.recruit__wrap th {
padding: 10px; display:block; width:100%;  }
.recruit__wrap th{padding-bottom: 0px;}
.recruit__wrap td{padding-top: 0px;}
}
.recruit__wrap th {
font-weight: bold;
}