@charset "utf-8";

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
  outline: 0;
}
header,
footer,
article,
section,
aside,
hgroup,
nav,
menu,
figure,
figcaption,
time {
  display: block;
}
li {
  list-style: none;
}
ol li {
  list-style: decimal;
}
img {
  max-width: 100%;
  height: auto;
  font-size: 0;
  line-height: 0;
  vertical-align: top;
  border: 0;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
caption,
th {
  text-align: left;
}
hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #ccc;
}
input,
select {
  vertical-align: middle;
}
input,
textarea {
  margin: 0;
  padding: 0;
}
a {
  transition: opacity .2s linear;
}
a:hover {
  opacity: .75;
}
/*----------------------------------------
	Common
----------------------------------------*/
html {
  width: 100%;
  font-size: 62.5%;
}
body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","Meiryo","Osaka","ＭＳ Ｐゴシック", "MS P Gothic",Verdana,Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #282B2B;
  position:relative;
  z-index: 0;
  line-height: 2;
  letter-spacing: .1em;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
  height: 100%;
}
a {
  color: #282B2B;
  outline: none;
  overflow: hidden;
  text-decoration: underline;
}
a:hover {
  color: #282B2B;
  text-decoration: none;
}
a[href^="tel:"] {
	cursor: default;
}
.show-mobile-inline,
.show-mobile {
  display: none;
}
.hide-mobile {
  display: block;
}
.hide-mobile-inline {
	display: inline-block;
}
.br-mobile {
  display: none !important;
}
@media (min-width: 768px) and (max-width: 1439px){

}
@media only screen and (max-width: 767px) {
	.show-mobile {
		display: block;
	}
	.show-mobile-inline {
		display: inline-block;
	}
	.hide-mobile {
		display: none;
	}
	.hide-mobile-inline {
		display: none;
	}
  .br-mobile {
    display: block !important;
  }
  main {
    overflow-x: hidden;
  }
}
@media only screen and (max-width: 999px) {
  body {
  }
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}
/*----------------------------------------
	Animation
----------------------------------------*/
.animate.delay1 {
  transition-delay: .1s;
}
.animate.delay2 {
  transition-delay: .2s;
}
.animate.delay3 {
  transition-delay: .3s;
}
.animate.delay4 {
  transition-delay: .4s;
}
.animate.delay5 {
  transition-delay: .5s;
}
.animate.delay6 {
  transition-delay: .6s;
}
.animate.delay7 {
  transition-delay: .7s;
}
.animate.delay8 {
  transition-delay: .8s;
}
.animate.delay9 {
  transition-delay: .9s;
}
.animate.delay10 {
  transition-delay: 1s;
}
.fadeIn {
  transition: opacity 1s .1s;
  transition: transform 1s cubic-bezier(.4, 0, .2, 1) .1s, opacity 1s .1s;
  opacity: 0;
}
.fadeIn.inview {
  opacity: 1;
}
.fadeUpIn {
  transition: opacity 1s .1s;
  transition: transform 1s cubic-bezier(.4, 0, .2, 1) .1s, opacity 1s .1s;
  transform: translateY(30px);
  opacity: 0;
}
.fadeUpIn.inview {
  transform: translateY(0);
  opacity: 1;
}
.blurIn {
  animation-name: blurInAnime;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
}
@keyframes blurInAnime {
  0% {
    filter:blur(15px);
    transform:scale(1.02);
    opacity:0
  }
  100% {
    filter:blur(0);
    transform:scale(1);
    opacity:1
  }
}
.maskIn {
  color: transparent;
  max-width: fit-content;
  overflow: hidden;
  position: relative;
  transition: color 0ms 450ms;
}
.maskIn::after {
  background: #000;
  bottom: 0;
  content: '';
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(-101%, 0)
}
.maskIn.inview {
  color: inherit;
}
.maskIn.inview::after {
  animation: maskIn 1.2s cubic-bezier(0.8, 0, 0.170, 1);
}
@keyframes maskIn {
  0% {
    transform: translate(-101%, 0)
  }
  40%, 60% {
    transform: translate(0, 0)
  }
  100% {
    transform: translate(101%, 0)
  }
}
@keyframes blink {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}
.rotateX.inview {
  animation-name: rotateX;
  animation-duration: 1s;
  animation-fill-mode:forwards;
}
@keyframes rotateX {
  from{
    transform: rotateX(0);
  }
  to{
    transform: rotateX(-360deg);
  }
}
.zoomIn {
  transform: scale(0.6);
  opacity: 0;
}
.zoomIn.inview {
  animation-name: zoomInAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
@keyframes zoomInAnime{
  from {
    transform: scale(0.6);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/*----------------------------------------
	Misc
----------------------------------------*/
.inner {
  width: 91.667vw;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.full-width {
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.f-bold {
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .inner {
  }
}
/*----------------------------------------
	Components
----------------------------------------*/
.c-button {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4rem;
  line-height: 1;
  text-decoration: none;
  padding: 1.6rem 4rem 2rem 4rem;
  font-weight: bold;
  max-width: fit-content;
  background-color: #202124;
  color: #fff;
}
.c-more-block {
  text-align: center;
  margin-top: 4rem;
}
.c-more-block .c-button {
  margin: 0 auto;
}
.c-section-heading {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-align: center;
  margin-bottom: 6rem;
}
.c-section-heading .en {
  font-size: 5.6rem;
  letter-spacing: .05em;
  font-family: 'Josefin Sans', sans-serif;
  padding-bottom: .4rem;
}
.c-section-heading .jp {
  font-size: 1.5rem;
  letter-spacing: .16rem;
}
.c-page-heading {
  margin: 8rem auto 4rem auto;
}
.c-page-heading h1,
.c-page-heading h2 {
  display: flex;
  flex-direction: column;
}
.c-page-heading h1 .en,
.c-page-heading h2 .en {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 7rem;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 1rem;
}
.c-page-heading h1 .jp,
.c-page-heading h2 .jp {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1;
}
.c-bread-crumb {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.4rem;
}
.c-bread-crumb ul {
  display: flex;
}
.c-bread-crumb ul li {
  position: relative;
  flex: 0 0 auto;
  list-style: none;
}
.c-bread-crumb ul li:not(:first-child):before {
  position: absolute;
  top: 50%;
  display: block;
  content: '・';
  transform: translate(-50%, -50%);
}
.c-bread-crumb ul li a {
  padding-right: 1.4rem;
  text-decoration: none;
}
.c-bread-crumb ul li:not(:first-child) a {
  padding-left: 1.4rem;
}
.c-bread-crumb ul li span {
  color: #929292;
  padding-left: 1.4rem;
}
@media only screen and (max-width: 767px) {
  .c-page-heading {
    margin: 6rem auto 6rem auto;
  }
  .c-section-heading .en {
    font-size: 4.2rem;
  }
  .c-section-heading .jp {
    font-size: 1.5rem;
    letter-spacing: .14rem;
  }
}
/*----------------------------------------
	Custom Cursor
----------------------------------------*/
#cursor {
    pointer-events: none;
    position: fixed;
    top: -6px;
    left: -6px;
    width: 12px;
    height: 12px;
    background: rgba(0, 0, 0, 1);
    border-radius: 50%;
    transition: transform 0.6s, top, 0.5s, left 0.5s, width .5s, height .5s, background-color .5s;
    transition-timing-function: cubic-bezier(0.000, 1.005, 0.975, 1.000);
    z-index: 999;
}
#cursor.is_hover {
    top: -32px;
    left: -32px;
    width: 64px;
    height: 64px;
    transition: .5s;
    background: rgba(0, 0, 0, 0.4);
}
@media only screen and (max-width: 999px) {
    #cursor {
        display: none;
    }
}
/*----------------------------------------
	layout
----------------------------------------*/
.l-header {
    width: 100%;
    display: flex;
    align-items: center;
    z-index: 10;
    height: 12rem;
    position: fixed;
    top: 0;
    line-height: 1;
}
.l-header .inner {
  max-width: initial;
}
.l-main {
}
.l-footer {
}
@media only screen and (max-width: 767px) {
  .l-header {
    height: 8rem;
  }
  .l-main {
    min-height: calc(100vh - 30rem);
  }
}
/*----------------------------------------
	Header
----------------------------------------*/
.p-header-logo {
  width: 25rem;
  transition: all .4s cubic-bezier(0.18, 0.06, 0.23, 1) 0s;
}
.p-header-logo a {
  display: block;
}
.when_scroll .p-header-logo {
  width: 18rem;
}
@media only screen and (max-width: 767px) {
  .p-header-logo {
    width: 20rem;
  }
}
/*----------------------------------------
	Footer
----------------------------------------*/
.p-footer {
  background-color: #202124;
  color: #fff;
  font-size: 1.2rem;
  font-family: 'Josefin Sans', sans-serif;
  text-align: center;
  padding: 10rem;
  margin-top: 16rem;
}
@media only screen and (max-width: 767px) {
  .p-footer {
    font-size: 1rem;
    padding: 6rem;
    margin-top: 8rem;
  }
}
/*----------------------------------------
	Loading
----------------------------------------*/
body:not(.loaded) {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
#loading {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000000;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  transition: .18s linear;
  transition-delay: .6s;
  background-color: #fff;
}
#loading img {
  width: 80%;
  max-width: 40rem;
  position: relative;
  z-index: 1;
}
.loaded #loading {
  opacity: 0;
}
.p-progress-bar {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000001;
  height: 8px;
  background-color: #000;
}


/*----------------------------------------
	Top
----------------------------------------*/
.p-top {

}
/* スクロール */
.p-scroll {
  width: 15rem;
  height: auto;
  position: fixed;
  right: 0;
  bottom: 6rem;
  transform: translateX(5rem) rotate(90deg);
  z-index: 1;
  display: flex;
  align-items: center;
  transition: opacity .2s linear;
}
.when_scroll .p-scroll {
  opacity: 0;
}
.p-scroll span {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
  margin-right: .8rem;
}
.p-scroll::after,
.p-scroll::before {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  display: block;
  width: 8.6rem;
  height: 1px;
  margin: 0;
  content: '';
  background-color: rgba(0, 0, 0, .1);
}
.p-scroll::after {
  z-index: 2;
  animation-name: pagerScroll;
  animation-duration: 1.6s;
  animation-timing-function: cubic-bezier(.77, 0, .175, 1);
  animation-delay: 0s;
  animation-iteration-count: infinite;
  background-color: rgba(0, 0, 0, 1);
  animation-fill-mode: forwards;
}
@keyframes pagerScroll {
  0%,
  20% {
      right: 8.6rem;
      width: 0;
  }
  60% {
      right: 0;
      width: 8.6rem;
  }
  100% {
      right: 0;
      width: 0;
  }
}
/* メインビジュアル */
.p-visual {
  width: 100vw;
  height: 100vh;
  min-height: 120rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
.p-visual .item-list {
  width: 100vw;
  height: 100%;
}
.p-visual #item-list1 {
  animation: bubble 150s -75s linear infinite;
}
.p-visual #item-list2 {
  animation: bubbleClone 150s linear infinite;
}
@keyframes bubble {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes bubbleClone {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-200%);
  }
}
.p-visual .item-list .item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  transform: scale(0);
  transition: transform .4s cubic-bezier(.175, .885, .32, 1.275);
  transform-origin: center;
  transition-delay: 1s;
}
.loaded .p-visual .item-list .item {
  transform: scale(1);
}
.p-visual .item-list .item1 {
  width: 9%;
  top: 10%;
  left: 20%;
}
.p-visual .item-list .item2 {
  width: 13%;
  top: 8%;
  left: 60%;
}
.p-visual .item-list .item3 {
  width: 6%;
  top: 12%;
  left: 45%;
}
.p-visual .item-list .item4 {
  width: 17%;
  top: 22%;
  right: 10%;
}
.p-visual .item-list .item5 {
  width: 10%;
  top: 33%;
  right: 33%;
}
.p-visual .item-list .item6 {
  width: 6%;
  top: 37%;
  right: 19%;
}
.p-visual .item-list .item7 {
  width: 9%;
  top: 3%;
  right: 11%;
}
.p-visual .item-list .item8 {
  width: 11%;
  top: 42%;
  right: 3%;
}
.p-visual .item-list .item9 {
  width: 7%;
  top: 20%;
  left: 0;
}
.p-visual .item-list .item10 {
  width: 19%;
  top: 48%;
  right: 30%;
}
.p-visual .item-list .item11 {
  width: 8%;
  top: 51%;
  right: 15%;
}
.p-visual .item-list .item12 {
  width: 7%;
  bottom: 36%;
  right: 3%;
}
.p-visual .item-list .item13 {
  width: 8%;
  bottom: 24%;
  right: 4%;
}
.p-visual .item-list .item14 {
  width: 8%;
  bottom: 7%;
  right: 2%;
}
.p-visual .item-list .item15 {
  width: 7%;
  bottom: 31%;
  right: 24%;
}
.p-visual .item-list .item16 {
  width: 12%;
  bottom: 20%;
  right: 29%;
}
.p-visual .item-list .item17 {
  width: 8%;
  bottom: 10%;
  right: 19%;
}
.p-visual .item-list .item18 {
  width: 6%;
  bottom: 5%;
  right: 37%;
}
.p-visual .item-list .item19 {
  width: 11%;
  bottom: 28%;
  left: 44%;
}
.p-visual .item-list .item20 {
  width: 18%;
  bottom: 16%;
  left: 32%;
}
.p-visual .item-list .item21 {
  width: 4%;
  bottom: 7%;
  left: 37%;
}
.p-visual .item-list .item22 {
  width: 11%;
  bottom: 29%;
  left: 19%;
}
.p-visual .item-list .item23 {
  width: 14%;
  bottom: 4%;
  left: 11%;
}
.p-visual .item-list .item24 {
  width: 8%;
  bottom: 21%;
  left: 3%;
}
.p-visual .item-list .item25 {
  width: 10%;
  left: 40%;
  top: 0;
}
.p-visual .item-list .item26 {
  width: 6%;
  left: -2%;
  top: 10%;
}
.p-visual .item-list .item27 {
  width: 7%;
  left: -1%;
  bottom: 43%;
}
.p-visual .item-list .item28 {
  width: 6%;
  right: 0;
  top: 17%;
}
.p-visual .item-list .item29 {
  width: 2%;
  left: 36%;
  top: 11%;
}
.p-visual .item-list .item30 {
  width: 2%;
  top: 25%;
  right: 34%;
}
.p-visual .item-list .item31 {
  width: 2%;
  top: 1%;
  right: 3%;
}
.p-visual .item-list .item32 {
  width: 2.4%;
  top: 37%;
  right: 4%;
}
.p-visual .item-list .item33 {
  width: 2%;
  top: 57%;
  right: 8%;
}
.p-visual .item-list .item34 {
  width: 2%;
  bottom: 28%;
  right: 16%;
}
.p-visual .item-list .item35 {
  width: 2%;
  bottom: 14%;
  right: 8%;
}
.p-visual .item-list .item36 {
  width: 1.4%;
  bottom: 8%;
  right: 47%;
}
.p-visual .item-list .item37 {
  width: 2%;
  bottom: 35%;
  left: 33%;
}
.p-visual .item-list .item38 {
  width: 3%;
  bottom: 16%;
  left: 20%;
}
.p-visual .item-list .item39 {
  width: 2%;
  bottom: 3%;
  left: 6%;
}
.p-visual .item-list .item40 {
  width: 2%;
  bottom: 33%;
  left: 9%;
}
.p-visual .item-list .item41 {
  width: 12%;
  top: 23%;
  left: 40%;
}
.p-visual .item-list .item42 {
  width: 9%;
  top: 30%;
  left: 16%;
}
.p-visual .item-list .item43 {
  width: 8%;
  top: 38%;
  left: 37%;
}
.p-visual .item-list .item44 {
  width: 9%;
  top: 49%;
  left: 21%;
}
.p-visual .item-list .item45 {
  width: 2%;
  top: 34%;
  left: 37%;
}
.p-visual .item-list .item46 {
  width: 2%;
  top: 45%;
  left: 15%;
}
.p-top-visual {
  position: relative;
  height: 120rem;
}
.p-top-visual__content {
  position: absolute;
  top: 24rem;
  left: 5%;
}
.p-top-visual__content .catch-copy {
  margin-bottom: 8rem;
}
.p-top-visual__content .catch-copy > h2 {
  display: flex;
  flex-direction: column;
  font-family: "YakuHanJP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "Yu Gothic", sans-serif, sans-serif;
  font-size: 7rem;
  line-height: 1.4;
  letter-spacing: .8rem;
}
.p-top-visual__content .catch-copy > h2 span {
  width: fit-content;
  background-color: rgba(255, 255, 255, .95);
  backdrop-filter: blur(5px);
  padding: 2rem 2rem 2rem 2rem;
    line-height: 1;
}
.p-top-visual__content .catch-copy > h2 span img {
  height: 6.6rem;
  width: auto;
}
.p-top-visual__content .catch-copy > h2 span:first-of-type {
  padding-top: 1.4rem;
  padding-bottom: 1rem;
}
.p-top-visual__content .catch-copy > p {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: .1rem;
  padding: 1rem 2.2rem;
    line-height: 1;
  background-color: rgba(255, 255, 255, .95);
  backdrop-filter: blur(5px);
  max-width: fit-content;
}
.p-top-visual__content .body-copy {
  font-size: 1.6rem;
  line-height: 2.45;
  padding: 1rem 2rem;
  background-color: rgba(255, 255, 255, .95);
  backdrop-filter: blur(5px);
  width: fit-content;
}
.p-top-visual__content .body-copy span {
  display: block;
}
.p-section {
  margin-bottom: 12rem;
}
/* 取り扱い商品 */
.p-section.service .inner {
  background-color: rgba(255, 255, 255, .95);
  backdrop-filter: blur(5px);
  padding: 10rem 8rem 2rem 8rem;
  max-width: 100rem;
}
.p-service {
  margin: 0 auto;
}
.p-service ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
}
.p-service ul li {
  width: 42%;
  margin-bottom: 8rem;
}
.p-service ul li > figure {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  width: 86%;
  margin-left: auto;
  margin-right: auto;
}
.p-service ul li > h3 {
  font-size: 2.6rem;
  letter-spacing: .14em;
  text-align: center;
  padding-bottom: 1.6rem;
  position: relative;
}
.p-service ul li > p {
  text-align: justify;
}
/* お問い合わせ */
.p-section.contact {
}
.p-section.contact .inner {
  max-width: 110rem;
  padding: 10rem 8rem;
  background-color: rgba(255, 255, 255, .95);
  backdrop-filter: blur(5px);
  border-radius: 1.4rem;
}
.p-contact {
  text-align: center;
}
.p-contact__guide {
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: .2rem;
  margin-bottom: 4rem;
}
.p-contact__tel {
  display: flex;
  flex-direction: column;
  color: #E35252;
  line-height: 1;
}
.p-contact__tel .number {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 4rem;
}
.p-contact__tel .time {
  font-size: 1.4rem;
  letter-spacing: .16rem;
  margin-top: 0.6rem;
}
.p-contact__mail {

}
.p-contact__mail a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 40rem;
  padding: 1.7rem 2rem 2.3rem 2rem;
  margin: 5rem auto 0 auto;
  border-radius: 10rem;
  font-size: 1.7rem;
  letter-spacing: .16rem;
  font-weight: 700;
  text-decoration: none;
  background-color: #E35252;
  color: #fff;
  box-shadow: 0 4px 8px rgb(0 0 0 / 20%);
  line-height: 1;
  transition: transform .3s cubic-bezier(.175, .885, .32, 1.275);
}
.p-contact__mail a img {
  margin-right: 1rem;
}
.p-contact__mail a:hover {
  transform: scale(.94);
}
/* 会社概要 */
.p-section.profile .inner {
  padding: 10rem 8rem;
  background-color: rgba(255, 255, 255, .95);
  backdrop-filter: blur(5px);
}
.p-profile {
  display: flex;
  flex-wrap: wrap;
  max-width: 66rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}
.p-profile dt {
  width: 30%;
  padding: 2.8rem 2rem;
  border-bottom: 1px solid #00A297;
}
.p-profile dd {
  width: 70%;
  padding: 2.8rem;
  border-bottom: 1px solid #C4C4C4;
}
.p-profile__address {
  display: flex;
}
.p-profile__address a {
  display: flex;
  align-items: center;
  width: fit-content;
  background-color: #00A297;
  color: #fff;
  padding: 0.3rem 1.6rem 0.3rem 1.6rem;
  margin-left: 1.4rem;
  font-weight: normal;
  border-radius: 4rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
}
.p-profile__address a img {
  width: 1rem;
  margin-right: 0.6rem;
}

@media only screen and (max-width: 767px) {
  .p-section {
    margin-bottom: 8rem;
  }
  /* メインビジュアル */
  .p-visual {
    min-height: 90rem;
  }
  .p-visual .item-list .item1 {
    width: 13%;
  }
  .p-visual .item-list .item2 {
    width: 14%;
  }
  .p-visual .item-list .item3 {
    width: 8%;
  }
  .p-visual .item-list .item4 {
    width: 20%;
  }
  .p-visual .item-list .item5 {
    top: 33%;
  }
  .p-visual .item-list .item6 {
    width: 7%;
  }
  .p-visual .item-list .item7 {
    width: 11%;
  }
  .p-visual .item-list .item8 {
    width: 12%;
  }
  .p-visual .item-list .item10 {
    width: 21%;
  }
  .p-visual .item-list .item11 {
    width: 10%;
  }
  .p-visual .item-list .item12 {
    width: 9%;
  }
  .p-visual .item-list .item13 {
    width: 10%;
  }
  .p-visual .item-list .item14 {
    width: 12%;
  }
  .p-visual .item-list .item15 {
    width: 9%;
  }
  .p-visual .item-list .item16 {
    width: 14%;
  }
  .p-visual .item-list .item17 {
    width: 10%;
  }
  .p-visual .item-list .item18 {
    width: 8%;
  }
  .p-visual .item-list .item19 {
    width: 13%;
  }
  .p-visual .item-list .item20 {
    width: 22%;
    left: 29%;
  }
  .p-visual .item-list .item21 {
    width: 6%;
    left: 35%;
  }
  .p-visual .item-list .item22 {
    width: 13%;
  }
  .p-visual .item-list .item23 {
    width: 16%;
  }
  .p-visual .item-list .item24 {
    width: 10%;
  }
  .p-visual .item-list .item41 {
    width: 14%;
    left: 38%;
  }
  .p-visual .item-list .item42 {
    width: 11%;
  }
  .p-visual .item-list .item43 {
    width: 10%;
  }
  .p-visual .item-list .item44 {
    width: 11%;
  }
  .p-top-visual {
    height: 90rem;
  }
  .p-top-visual__content {
    top: 16rem;
    left: 0;
  }
  .p-top-visual__content .catch-copy > h2 {
    font-size: 4rem;
    letter-spacing: .5rem;
  }
  .p-top-visual__content .catch-copy > h2 span {
    padding: 1rem 1.4rem;
  }
  .p-top-visual__content .catch-copy > h2 span img {
    height: 3.8rem;
  }
  .p-top-visual__content .catch-copy > p {
    font-size: 1.6rem;
    letter-spacing: .07rem;
    padding: 1.4rem 1.5rem;
  }
  .p-top-visual__content .body-copy {
    font-size: 1.5rem;
    line-height: 2.25;
    padding: 1rem 1rem 1rem 1.4rem;
    width: 86vw;
  }
  .p-top-visual__content .body-copy span {
    max-width: inherit;
  }
  /* スクロール */
  .p-scroll span {
    font-size: 1.1rem;
  }
  /* 取り扱い商品 */
  .p-section.service .inner {
    padding: 6rem 2rem 0rem 3rem;
  }
  .p-service ul li {
    width: 100%;
    margin-bottom: 8rem;
  }
  .p-service ul li > figure {
    margin-bottom: 0.6rem;
  }
  .p-service ul li > h3 {
    font-size: 2.6rem;
  }
  /* お問い合わせ */
  .p-section.contact .inner {
    padding: 8rem 0rem;
    border-radius: 0;
  }
  .p-contact__guide {
    font-size: 1.7rem;
    letter-spacing: 1px;
  }
  .p-contact__tel .number {
    font-size: 3.6rem;
  }
  .p-contact__tel .time {
    font-size: 1.2rem;
  }
  .p-contact__mail a {
    max-width: 32rem;
    font-size: 1.5rem;
  }
  /* 会社概要 */
  .p-section.profile .inner {
    padding: 6rem 2rem;
  }
  .p-profile dt {
    width: 100%;
    padding: 2rem 1rem 1rem 1rem;
    border-bottom: 0;
  }
  .p-profile dd {
    width: 100%;
    padding: 0 1rem 2rem 1rem;
  }
  .p-profile__address {
    flex-direction: column;
  }
  .p-profile__address a {
    padding: 1.2rem 3rem 1.2rem 3rem;
    margin-left: 0;
    margin-top: 1rem;
    border-radius: 4rem;
    font-size: 1.3rem;
  }
}


/*----------------------------------------
	404
----------------------------------------*/
.p-404 {
    text-align: center;
    margin-top: 12rem;
}
@media only screen and (max-width: 767px) {
  .p-404 {
    margin-top: 8rem;
  }
    .p-404 .c-page-heading h1 .en,
    .p-404 .c-page-heading h2 .en {
        font-size: 3.2rem;
    }
}