@charset "UTF-8";
/* =========================================================
parts
========================================================= */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700&display=swap");
/* =========================================================
body
========================================================= */
html {
  font-size: 62.5%;
  letter-spacing: 0.03em;
}

body {
  color: #000;
  font-family: "Noto Sans JP", "メイリオ", sans-serif;
  background: #fff;
  -webkit-overflow-scrolling: touch;
  -ms-word-break: break-all;
  word-break: break-all;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  font-family: "Noto Sans JP", "メイリオ", sans-serif;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #000;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
  color: #000;
}

@media screen and (min-width: 769px) {
  .opacity-link {
    transition: opacity 0.2s ease;
  }
  .opacity-link:hover {
    opacity: 0.7;
  }
}
*:before, *:after {
  display: block;
}

@media screen and (min-width: 769px) {
  .sp-disp {
    display: none;
  }
}

.pc-disp {
  display: none;
}
@media screen and (min-width: 769px) {
  .pc-disp {
    display: block;
  }
}

.wrapper {
  min-width: 320px;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .wrapper {
    min-width: 1280px;
    padding: 0;
  }
}

.main-cont {
  display: block;
}

.cmn-ttl04 {
  padding: 0 0 10px;
  border-bottom: 2px solid #DE0000;
  font-size: 5.8666666667vw;
  line-height: 1.3636363636;
}
.cmn-ttl04 + * {
  margin-top: 25px;
}
@media screen and (min-width: 769px) {
  .cmn-ttl04 {
    padding: 0 0 15px;
    border-bottom: 3px solid #DE0000;
    font-size: 3rem;
    line-height: 1.3333333333;
  }
}

/* =========================================================
header
========================================================= */
.contact-hd {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-hd-logo {
  width: 143px;
  height: 35px;
}

@media screen and (min-width: 769px) {
  .contact-hd {
    height: 70px;
  }
  .contact-hd-logo {
    width: 187px;
    height: 44px;
  }
}
/* =========================================================
footer
========================================================= */
.contact-ft {
  padding: 0 15px 20px;
}

.copyright {
  color: #8D9191;
  text-align: center;
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.copyright .se {
  display: none;
}
@media screen and (max-width: 340px) {
  .copyright .se {
    display: block;
  }
}
@media screen and (min-width: 769px) {
  .copyright {
    letter-spacing: 0.05em;
  }
}

/* =========================================================
contents
========================================================= */
/*------------------------------------------
button
------------------------------------------*/
[class*=cmn-btn] a {
  height: 53px;
  background: #DE0000;
  border-radius: 6px;
  color: #fff;
  display: flex;
  align-items: center;
  position: relative;
}
[class*=cmn-btn] .ico svg {
  fill: #fff;
}

@media screen and (min-width: 769px) {
  [class*=cmn-btn] a {
    height: 46px;
    border: 2px solid #DE0000;
    border-radius: 4px;
    transition: background 0.2s ease, color 0.2s ease;
  }
  [class*=cmn-btn] a .ico svg {
    transition: fill 0.2s ease;
  }
  [class*=cmn-btn] a:hover {
    background: #fff;
    color: #DE0000;
  }
  [class*=cmn-btn] a:hover .ico svg {
    fill: #DE0000;
  }
}
.cmn-btn01 a {
  padding: 0 20px;
  text-align: center;
}
.cmn-btn01 .ico {
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: relative;
}
.cmn-btn01 .ico:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 8px;
  border-color: transparent transparent transparent #DE0000;
  position: absolute;
  top: 5px;
  left: 6px;
}
.cmn-btn01 .txt {
  width: calc(100% - 18px);
  padding: 0 0 1px 10px;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
.cmn-btn01.type02 a {
  border-color: #707070;
  background: #707070;
}
.cmn-btn01.type02 .ico:after {
  border-color: transparent transparent transparent #707070;
}

@media screen and (min-width: 769px) {
  .cmn-btn01 a {
    padding: 0 15px;
  }
  .cmn-btn01 .ico {
    width: 16px;
    height: 16px;
    transition: background 0.2s ease;
  }
  .cmn-btn01 .ico:after {
    border-width: 3px 0 3px 6px;
    transition: border-color 0.2s ease;
  }
  .cmn-btn01 .txt {
    width: calc(100% - 16px);
    font-size: 1.7rem;
    line-height: 1;
  }
  .cmn-btn01 a:hover .ico {
    background: #DE0000;
  }
  .cmn-btn01 a:hover .ico:after {
    border-color: transparent transparent transparent #fff;
  }
  .cmn-btn01.type02 a:hover {
    background: #fff;
    color: #707070;
  }
  .cmn-btn01.type02 a:hover .ico {
    background: #707070;
  }
  .cmn-btn01.type02 a:hover .ico:after {
    border-color: transparent transparent transparent #fff;
  }
}
.cmn-btn02 a {
  padding: 0 14px;
}
.cmn-btn02 a:after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
}
.cmn-btn02 .ico svg {
  width: 20px;
  height: 17px;
}
.cmn-btn02 .txt {
  width: calc(100% - 20px);
  padding: 0 0 0 18px;
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

@media screen and (min-width: 769px) {
  .cmn-btn02 a {
    padding: 11px 0;
    display: block;
  }
  .cmn-btn02 a:after {
    right: 15px;
    transition: border-color 0.2s ease;
  }
  .cmn-btn02 a:hover:after {
    border-color: #DE0000;
  }
  .cmn-btn02 .ico {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
  }
  .cmn-btn02 .txt {
    width: 100%;
    text-align: center;
    font-size: 1.7rem;
  }
}
/* ショップ一覧ボタン */
.cmn-btn-shop .ico svg {
  width: 20px;
  height: 17px;
}

@media screen and (min-width: 769px) {
  .cmn-btn-shop .ico {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
  }
}
/* ページタイトル */
.page-hd {
  background: #DE0000;
}
.page-hd-in {
  padding: 25px 0 23px;
}
.page-hd .ico {
  display: none;
}

.page-ttl {
  text-align: center;
  color: #fff;
  font-weight: bold;
}
.page-ttl .ja {
  font-size: 5.3333333333vw;
  line-height: 1;
  letter-spacing: 0.04em;
}
.page-ttl .en {
  margin: 10px auto 0;
  font-size: 2.9333333333vw;
  line-height: 1;
  letter-spacing: 0.075em;
}

@media screen and (min-width: 769px) {
  .page-hd-in {
    height: 180px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
  }
  .page-hd .ico {
    width: 70px;
    height: 70px;
    margin: 0 32px 0 0;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .page-hd .ico svg {
    fill: #DE0000;
  }
  .page-ttl {
    text-align: left;
  }
  .page-ttl .ja {
    font-size: 2.6rem;
    letter-spacing: 0;
  }
  .page-ttl .en {
    margin: 13px auto 0;
    font-size: 1.6rem;
  }
}
.contact-block {
  padding: 40px 15px;
}
.contact-sec + .contact-sec {
  margin: 50px auto 0;
}
.contact-sec > * {
  margin: 0 auto 20px;
}
.contact-sec > *:last-child {
  margin-bottom: 0;
}
.contact-sec .cmn-btn02 {
  width: 190px;
  margin-left: auto;
  margin-right: auto;
}
.contact-ttl {
  padding: 0 0 0 26px;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1;
  position: relative;
}
.contact-ttl:before {
  content: "";
  width: 15px;
  height: 15px;
  background: #DE0000;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.contact-txt01 {
  font-size: 1.6rem;
  line-height: 1.875;
}
.contact-txt01 a {
  color: #DE0000;
  text-decoration: underline;
}
.contact-tel {
  border: 1px solid #ccc;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1;
}
.contact-tel .item {
  padding: 7px 0;
  background: #E1E7E6;
  border-bottom: 1px solid #ccc;
}
.contact-tel .txt {
  padding: 16px 0;
}

@media screen and (min-width: 769px) {
  .contact-block {
    max-width: 1280px;
    margin: 0 auto;
    padding: 55px 40px 80px;
  }
  .contact-sec + .contact-sec {
    margin: 65px auto 0;
  }
  .contact-sec > * {
    margin: 0 0 20px;
  }
  .contact-sec .cmn-btn02 {
    margin-left: 0;
  }
  .contact-ttl {
    padding: 0 0 0 30px;
    font-weight: bold;
    font-size: 2.2rem;
  }
  .contact-txt01 {
    font-size: 1.6rem;
    line-height: 2.1875;
  }
  .contact-txt01 a:hover {
    text-decoration: none;
  }
  .contact-tel {
    width: 400px;
    margin-top: 30px;
    display: flex;
  }
  .contact-tel > * {
    width: 50%;
  }
  .contact-tel .item {
    padding: 16px 0;
    border-bottom: none;
    border-right: 1px solid #ccc;
  }
  .contact-tel .txt {
    padding: 16px 0;
  }
}
.contact-policy {
  height: 380px;
  margin: 20px auto 0;
  padding: 20px 10px;
  border: 1px solid #ccc;
  overflow: hidden;
}
.contact-policy-in {
  height: 100%;
  -ms-overflow-y: scroll;
  overflow-y: scroll;
}
.contact-policy-in .ttl01 {
  margin: 35px auto 0;
  font-size: 1.6rem;
  line-height: 2.1875;
  font-weight: bold;
}
.contact-policy-in .txt01 {
  font-size: 1.6rem;
  line-height: 1.875;
}
.contact-policy-in .list01 {
  margin: 15px auto 0;
}
.contact-policy-in .list01 li {
  margin: 0 0 0 1em;
}
.contact-policy-in .list01 li:before {
  content: "・";
  display: inline-block;
  margin: 0 0 0 -1em;
}

@media screen and (min-width: 769px) {
  .contact-policy {
    height: 240px;
    padding: 35px 20px;
  }
  .contact-policy-in {
    height: 100%;
  }
  .contact-policy-in .ttl01 {
    margin: 35px auto 0;
    font-size: 1.6rem;
    line-height: 2.1875;
    font-weight: bold;
  }
  .contact-policy-in .txt01 {
    font-size: 1.6rem;
    line-height: 1.875;
  }
}
.contact-btn {
  width: 200px;
  margin: 0 auto 15px;
}
.contact-btn-list {
  margin: 40px auto 0;
}
.contact-btn:last-child {
  margin-bottom: 0;
}
.contact-btn-notice {
  margin: 10px auto 0;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .contact-btn {
    margin: 0 10px 0 0;
  }
  .contact-btn-list {
    margin: 30px auto 0;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
  }
  .contact-btn:first-child {
    margin-right: 0;
  }
  .contact-btn-notice {
    margin: 33px auto 0;
  }
}
/*# sourceMappingURL=../css/maps/contact.css.map */
