@charset "UTF-8";
/* -----------------
root
-------------------- */
:root {
  --base-font: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  --base-font-en: "Josefin Slab", serif;
  --base-color-black: #231815;
}

/* -----------------
mixin
-------------------- */
/* -----------------
reset
-------------------- */
*, *::after, *::before {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
}

body, h1, h2, h3, h4, h5, h6, p, address, ul, ol, li, dl, dt, dd, table, th, td, img, figure, picture, form {
  font-feature-settings: "palt";
  font-family: var(--base-font);
  font-style: normal;
  font-weight: normal;
  color: var(--base-color-black);
  line-height: 100%;
  text-align: left;
  margin: 0;
  padding: 0;
  border: none;
  list-style-type: none;
  word-break: break-word;
}

button, textarea, select {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: var(--base-font);
  color: var(--base-color-black);
}

picture {
  display: block;
}

button {
  display: inline-block;
  cursor: pointer;
}

::placeholder {
  color: #B9B9B9;
}

/* ie11 */
:-ms-input-placeholder {
  color: #B9B9B9;
}

select:invalid {
  color: #B9B9B9;
}

textarea {
  resize: vertical;
}

select::-ms-expand {
  display: none;
}

/* ie11 */
[type=checkbox],
[type=radio] {
  visibility: hidden;
  width: 1px;
  position: absolute;
}

a {
  color: inherit;
  text-decoration: none;
  outline: none;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

small {
  font-size: inherit;
}

/* -----------------
responsive
-------------------- */
@media screen and (min-width: 768px) {
  body {
    min-width: 1000px;
  }

  a,
button {
    transition: 0.3s;
  }

  a:hover,
button:hover {
    opacity: 0.5;
  }

  a[href*="tel:"] {
    pointer-events: none;
  }

  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  a:active,
button:active {
    opacity: 0.5;
  }

  .pc {
    display: none !important;
  }
}
/* -----------------
common
-------------------- */
p,
dt,
dd,
li,
th,
td,
input,
button,
textarea,
select {
  font-size: 1.8rem;
  line-height: 1;
}

span {
  font-size: inherit;
  line-height: 1;
}

#all_wrap.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  #all_wrap.fixed {
    position: static;
  }
}

.wrap {
  margin: 0 auto;
  width: calc(100% - 20px);
  max-width: 850px;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

.tac {
  text-align: center !important;
}

.tar {
  text-align: right !important;
}

.tal {
  text-align: left !important;
}

.fw_md {
  font-weight: 500;
}

.fw_bd {
  font-weight: 700;
}

.ff_jos_slab {
  font-family: var(--base-font-en);
  font-style: italic;
  font-weight: 300;
}

/* clearfix */
.cf::after {
  content: "";
  display: block;
  clear: both;
}

.m_ttl {
  text-align: center;
}
.m_ttl .en {
  font-size: 4rem;
  font-weight: 700;
  color: #e20e0e;
  line-height: 2;
  display: inline-block;
  border-bottom: 2px solid #e20e0e;
}
@media screen and (max-width: 767px) {
  .m_ttl .en {
    font-size: 3rem;
    font-weight: 650;
    line-height: 1.3;
  }
}
.m_ttl .jp {
  margin-top: 15px;
  font-size: 1.8rem;
  line-height: 2;
  display: block;
}
@media screen and (max-width: 767px) {
  .m_ttl .jp {
    font-size: 1.8rem;
    line-height: 1.3;
  }
}

@media screen and (max-width: 767px) {
  body {
    -webkit-text-size-adjust: 100%;
    min-height: 100vh;
  }

  p,
dt,
dd,
li,
th,
td,
input,
button,
textarea,
select {
    font-size: 1.6rem;
    line-height: 1;
  }

  .wrap {
    width: 80.46875%;
  }
}
/* -----------------
header
-------------------- */
header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100px;
  background: rgba(255, 241, 0, 1);
}
@media screen and (max-width: 767px) {
  header {
    position: fixed;
    height: 60px;
  }
}
header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: max(850px, 85%);
  height: 100%;
}
@media screen and (max-width: 767px) {
  header .wrap {
    padding: 0 3.255208333% 0 4.036458333%;
    max-width: 100%;
  }
}
header .logo {
  width: 300px;
}
@media screen and (max-width: 767px) {
  header .logo {
    width: 200px;
  }
}
header .logo_link {
  display: block;
}
header .box {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  header .box {
    display: block;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  header .menu_btn {
    position: relative;
    z-index: 1;
    width: 19px;
  }
  header .menu_btn span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: #000000;
    transition: 0.3s;
  }
  header .menu_btn span:nth-of-type(n+2) {
    margin: 5px auto 0;
  }
  header .menu_btn span:nth-of-type(1) {
    margin-top: 0;
  }
  header .menu_btn.active span:nth-of-type(1) {
    transform: translateY(6px) rotate(-45deg);
  }
  header .menu_btn.active span:nth-of-type(2) {
    opacity: 0;
  }
  header .menu_btn.active span:nth-of-type(3) {
    transform: translateY(-6px) rotate(45deg);
  }
}
@media screen and (max-width: 767px) {
  header .gnav {
    display: none;
    position: fixed;
    top: 38px;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(252, 251, 251, 0.7);
  }
}
header .gnav_list {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  header .gnav_list {
    display: block;
    padding: 30px 0 68px;
    height: 100%;
    overflow-y: scroll;
  }
}
header .gnav_list li {
  font-size: 1.4rem;
  line-height: 2;
  color: #000000;
}
@media screen and (max-width: 767px) {
  header .gnav_list li {
    color: #000000;
  }
}
header .gnav_list > li {
  padding: 0 12px;
}
@media screen and (max-width: 767px) {
  header .gnav_list > li {
    padding: 0 5%;
  }
}
header .gnav_list > li:nth-child(n+2) {
  position: relative;
}
@media screen and (max-width: 767px) {
  header .gnav_list > li:nth-child(n+2) {
    margin-top: 0.5em;
  }
}
header .gnav_list > li:nth-child(n+2)::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 15px;
  background: #fff;
  transform: translateY(-50%);
}
header .gnav_list .works_item {
  position: relative;
}
@media screen and (min-width: 768px) {
  header .gnav_list .works_item:hover .under_list {
    opacity: 1;
    pointer-events: all;
  }
}
@media screen and (min-width: 768px) {
  header .gnav_list .works_item .under_list {
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    background: #fff;
    transition: 0.3s;
    opacity: 0;
    pointer-events: none;
  }
}
header .gnav_list .under_list li {
  position: relative;
}
@media screen and (min-width: 768px) {
  header .gnav_list .under_list li {
    font-size: 1.5rem;
    text-align: center;
  }
  header .gnav_list .under_list li:nth-child(n+2)::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 90%;
    height: 1px;
    background: #fff;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 767px) {
  header .gnav_list .under_list li {
    padding-left: 2em;
  }
  header .gnav_list .under_list li::before {
    content: "・";
    display: block;
    position: absolute;
    top: 0;
    left: 1em;
  }
}
header .gnav_list .under_list a {
  color: #000;
}
header .list {
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
  margin-left: 12px;
  height: 75px;
}
@media screen and (max-width: 767px) {
  header .list {
    margin: 0;
    height: auto;
  }
}
@media screen and (min-width: 768px) {
  header .list li {
    width: 191px;
  }
}
header .list li a {
  display: block;
}
@media screen and (max-width: 767px) {
  header .list .con_item {
    margin-right: 27px;
    width: 90px;
  }
}
@media screen and (min-width: 768px) {
  header .list .contact_item {
    position: absolute;
    bottom: -55px;
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  header .list .contact_item {
    margin-right: 27px;
    width: 30px;
  }
}

/* -----------------
footer
-------------------- */
footer {
  padding: 28px 0 7px;
  background: #fff100;
}
footer .footer_fixed {
  position: fixed;
  bottom: 24px;
  right: 50px;
  z-index: 500;
}
@media screen and (max-width: 767px) {
  footer .footer_fixed {
    bottom: 29px;
    right: 15px;
  }
}
footer .footer_fixed_list li:nth-child(n+2) {
  margin-top: 9px;
}
footer .footer_fixed_list a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e60012;
}
footer .footer_fixed_list .top_item a {
  font-size: 1rem;
  line-height: 1;
  color: #fff;
  text-align: center;
  display: block;
  position: relative;
  padding-top: 20px;
}
footer .footer_fixed_list .top_item a::before, footer .footer_fixed_list .top_item a::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  width: 13px;
  height: 13px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: translateX(-50%) rotate(45deg);
}
footer .footer_fixed_list .top_item a::before {
  top: 7px;
}
footer .footer_fixed_list .top_item a::after {
  top: 10px;
}
footer .footer_fixed_list .insta_item a img {
  width: 24px;
}
footer .footer_fixed_list .tw_item a img {
  width: 23px;
}
footer .inner {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
}
@media screen and (min-width: 768px) {
  footer .wrap {
    padding-left: 288px;
    max-width: 880px;
  }
}
@media screen and (max-width: 767px) {
  footer .wrap {
    width: 94%;
  }
}
footer .logo {
  width: 235px;
}
@media screen and (max-width: 767px) {
  footer .logo {
    margin: 0 auto;
  }

}
footer .d_list dt {
  font-size: 1.7rem;
  color: #000000;
  margin-top: 23px;
}
@media screen and (max-width: 767px) {
  footer .d_list dt {
    text-align: center;
  }
}
footer .d_list dd {
  display: flex;
  margin-top: 14px;
}
@media screen and (max-width: 767px) {
  footer .d_list dd {
    justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  footer .d_list address {
    margin-right: 46px;
  }
}
footer .d_list address .txt {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #000000;
}
@media screen and (max-width: 767px) {
  footer .d_list address .txt {
    text-align: center;
  }
}
footer .d_list address .sns_list {
  display: flex;
  margin-top: 9px;
}
@media screen and (max-width: 767px) {
  footer .d_list address .sns_list {
    justify-content: center;
  }
}
footer .d_list address .sns_list li {
  width: 25px;
}
footer .d_list address .sns_list li:nth-child(n+2) {
  margin-left: 12px;
}
footer .d_list address .sns_list a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #231815;
}
footer .d_list address .sns_list .instagram {
  width: 17px;
}
footer .d_list address .sns_list .twitter {
  width: 16px;
}
footer .d_list .list li {
  font-size: 1.3rem;
  line-height: 1.9;
  color: #000000;
}
footer .d_list .list + .list {
  margin-left: 35px;
}
footer .copy {
  font-size: 1rem;
  line-height: 1.9;
  color: #000000;
  text-align: right;
  margin-top: 19px;
}

/* -----------------
m_breadcrumb_list
-------------------- */
.m_breadcrumb_list {
  font-size: 0;
  margin: 0 auto;
  padding: 6px 0;
  max-width: 870px;
}
@media screen and (max-width: 767px) {
  .m_breadcrumb_list {
    width: 83.072916666%;
  }
}
.m_breadcrumb_list li {
  font-size: 1.3rem;
  line-height: 1.7692307692;
  letter-spacing: 0.05em;
  color: #201621;
  display: inline-block;
}
.m_breadcrumb_list li:nth-child(n+2)::before {
  content: ">";
}
.m_breadcrumb_list li a {
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

/*==================================================
ミニスライダーのためのcss
===================================*/
.mini_slider_wrap {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .mini_slider_wrap {
  width: 83.072916666%;
  margin-top: 30px;
  margin-bottom: 30px;
  }
}
.mini_slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
   width:94%;
   margin:0 auto;
}

.mini_slider img {
    margin-top: 60px;
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
}
.mini_p {
  font-weight: 400;
  font-size: 4rem;
  line-height: 1.8571428571;
  text-align: center;
  margin-bottom: 70px;
}
.mini_p {
  font-weight: 400;
  font-size: 4rem;
  line-height: 1.8571428571;
  text-align: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .mini_p {
    font-weight: 400;
    font-size: 4rem;
    line-height: 1.8571428571;
    text-align: center;
    margin-bottom: 70px;
  }
}
.mini_pm {
  font-weight: 400;
  font-size: 4rem;
  line-height: 1.8571428571;
  text-align: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .mini_pm {
    font-weight: 400;
    font-size: 4rem;
    line-height: 1.8571428571;
    text-align: center;
    margin-bottom: 70px;
  }
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.mini_slider .slick-slide {
    margin:0 10px;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
	margin:20px 0 0 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}


/*# sourceMappingURL=common.css.map */
