@charset "UTF-8";

html, body, img,
h1, h2, h3, h4, h5, h6, p, a,
div, section, article, aside,
table, tr, th, td, dl, dt, dd,
ul, ol, li,
figure, figcaption {
  margin: 0;
  padding: 0;
  text-decoration: none;
  border: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

table {
  border-collapse: collapse;
}

input, button, textarea, select {
  display: block;
  margin: 0;
  padding: 0;
  background: none;
  color: inherit;
  font-family: inherit;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
}

ul, ol, li {
  list-style: none;
  line-height: 1;
}

:focus {
  outline: none;
}

:focus-ring {
  outline: 2px dotted dimgray;
}

::placeholder {
  color: #ccc;
}

/* google material icons */

.material-icons.md-24 { display: block; font-size: 24px; }
.material-icons.md-32 { display: block; font-size: 32px; }

/* 余白 */

.mt8 { margin-top: 8px; }
.mt16 { margin-top: 16px; }
.mt24 { margin-top: 24px; }
.mt32 { margin-top: 32px; }
.mt88 { margin-top: 88px; }

.mb8 { margin-bottom: 8px; }
.mb16 { margin-bottom: 16px; }
.mb24 { margin-bottom: 24px; }
.mb32 { margin-bottom: 32px; }

.mr8 { margin-right: 8px; }
.mr16 { margin-right: 16px; }
.mr24 { margin-right: 24px; }
.mr32 { margin-right: 32px; }

.ml8 { margin-left: 8px; }
.ml16 { margin-left: 16px; }
.ml24 { margin-left: 24px; }
.ml32 { margin-left: 32px; }

/* 基本レイアウト */

html, body {
  height: 100%;
}

body {
  margin: 0 auto;
  padding: 0 32px;
  width: 1024px;
  color: #715548;
  font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN', Meiryo, メイリオ, arial, helvetica, sans-serif;
  font-size: 14px;
  line-height: 1;
}

body:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFF7C7;
  background: linear-gradient(#FFF, #FFF7C7);
  z-index: -100;
}

.wrapper {
  padding: 32px 0;
}

.news,
.store,
.company,
.career,
.career_approach,
.contact,
.contents,
.privacy {
  margin-bottom: 80px;
}

.pc {
  display: block;
}
.sp {
  display: none;
}

a {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: 0.2s;
}

p a,
dd a {
  display: inline-block;
}

h1 { margin-bottom: 56px; }

.about h1,
.news h1,
.store h1,
.company h1,
.career h1,
.contact h1,
.privacy h1 {
  font-size: 26px;
  text-align: center;
}

.about h1 i,
.news h1 i,
.store h1 i,
.company h1 i,
.career h1 i,
.contact h1 i,
.privacy h1 i{
  display: block;
  color: #FFD800;
  font-size: 48px;
}

h2 {
  margin: 0 auto 56px;
  padding-bottom: 8px;
  width: fit-content;
  font-size: 24px;
  border-bottom: 5px solid #FFD800;
}

h4 {
  font-size: 18px;
}

.tel::before {
  content: "TEL：";
  display: inline-block;
}

.text {
  line-height: 1.8;
}

/* button */

.button_yellow a {
  display: flex;
  align-items: center;
  padding: 8px 24px;
  background: #FFD800;
  color: #FFF;
  font-weight: bold;
  border-radius: 24px;
}

.button_white a {
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 16px 32px 16px 56px;
  width: fit-content;
  background: #FFF;
  font-size: 16px;
  font-weight: bold;
  border: 3px solid #FFD800;
  border-radius: 64px;
}

.button_white a i {
  margin-left: 16px;
  color: #FFD800;
  transition: 0.2s;
}

.button_white a:hover { 
  background: #FFD800;
  transition: 0.2s;
}

.button_white a:hover i { 
  color: #715548;
  transition: 0.2s;
}

.button_white-min a {
  display: flex;
  align-items: center;
  padding: 2px 16px 2px 32px;
  background: #FFF;
  font-size: 14px;
  font-weight: bold;
  border: 2px solid #FFD800;
  border-radius: 64px;
}

.button_white-min a i {
  margin-left: 8px;
  color: #FFD800;
  transition: 0.2s;
}

.button_white-min a:hover { 
  background: #FFD800;
  transition: 0.2s;
}

.button_white-min a:hover i { 
  color: #715548;
  transition: 0.2s;
}

.button_gradation a {
  margin: 0 auto 120px;
  padding: 16px 80px;
  width: fit-content;
  background: linear-gradient(-45deg,#FFD800,#FFA700);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border-radius: 56px;
  transition: .5s;
}

.button_gradation a:hover {
  box-shadow: 0 0 24px rgba(255, 216, 0, .8);
  transition: .5s;
}

/* header */

.header {
  padding: 16px 0;
  margin-bottom: 56px;
}

.header_navi {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* main navi */

.main_navi ul {
  display: flex;
}

.main_navi ul li {
  margin: 0 32px;
  font-weight: bold;
  text-align: center;
}

.main_navi ul li i {
  margin-bottom: 4px;
  color: #FFD800;
}

/* FV */

.FV {
  background-image: url(../images/FV_bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin-bottom: 80px;
  text-align: center;
}

.FV h1 {
  margin: 56px 0 32px;
  font-family: 'ヒラギノ丸ゴ ProN W4', 'Hiragino Maru Gothic ProN', "游明朝体", "YuMincho", "游明朝", "Yu Mincho", serif;
  font-size: 26px;
  letter-spacing: 0.25em;
}

.FV p {
  margin: 0 80px 56px;
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
}

/* news */

.news section {
  max-height: 300px;
  overflow-y: scroll;
  padding: 40px 24px;
  background: #ffffff88;
  border-radius: 16px;
}

.news article {
  margin-bottom: 40px;
}

.news article:last-child {
  margin-bottom: 0;
}

.news h3 {
  margin-bottom: 8px;
}

.news p {
  line-height: 1.4;
}

.news ul li {
  list-style: disc;
  margin-left: 1em;
  padding: 4px 0;
  line-height: 1.4;
}

/* store */

.store_hours {
  margin-bottom: 8px;
}

.store_hours dt,
.store_hours dd {
  display: inline-block;
  margin-bottom: 8px;
}

.store_lists {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.store_list {
  width: 280px;
  margin-bottom: 80px;
}

.store_list:last-child {
  margin-bottom: 0;
}

.store_list img {
  width: 280px;
  height: 190px;
  object-fit: cover;
  border-radius: 16px;
}

.store_list .label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 16px 0;
}

.store_list .label h4 {
  display: flex;
  align-items: center;
}

.store_list .label h4::before {
  content: "store";
  font-family: 'Material Icons';
  margin-right: 4px;
  color: #FFD800;
  font-size: 24px;
}

.store_list address {
  font-style: normal;
}

/* slider */

.slick-slide {
  padding: 0 32px;
  opacity: 0.6;
  transition: all 300ms ease;
}

.slick-center.slick-slide {
  opacity: 1;
}

.store_slider img {
  width: 100%;
  border-radius: 16px;
}

.store_slider .label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}

/* company */

.author {
  margin-top: 24px;
  font-family: 'ヒラギノ丸ゴ ProN W4', 'Hiragino Maru Gothic ProN', "游明朝体", "YuMincho", "游明朝", "Yu Mincho", serif;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: right;
}

/* career */

.career_approach {
  display: flex;
  justify-content: space-between;
}

.approach {
  width: 250px;
}

.approach-img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 24px;
  width: 200px;
  height: 200px;
  background: #fff;
  border: 10px solid #FFD800;
  border-radius: 50%;
}

.approach h3 {
  margin-bottom: 16px;
  font-family: 'ヒラギノ丸ゴ ProN W4', 'Hiragino Maru Gothic ProN', "游明朝体", "YuMincho", "游明朝", "Yu Mincho", serif;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
}

.approach ul,
.approach ul li {
  list-style: disc;
  list-style-type: disc;
}

.approach ul {
  padding-left: 16px;
}

.approach ul li {
  margin-bottom: 8px;
}

.approach ul li:last-child {
  margin-bottom: 0;
}

.career_select {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.career_select input {
  display: none;
}

.career_select label {
  padding: 12px;
  background: #FFF;
  font-weight: bold;
  border: 2px solid #FFD800;
  border-radius: 64px;
  transition: 0.2s;
  cursor: pointer;
  margin: 0 12px;
}

.career_select input:checked + label {
  padding: 12px;
  background: #FFD800;
  border: 2px solid #FFD800;
  border-radius: 64px;
  transition: 0.2s;
}

.career_table {
  display: none;
}
.career_table:first-of-type {
  display: block;
}

/* table */

.company_table,
.career_table,
.store_table {
  margin-bottom: 56px;
  width: 100%;
  background: #fff;
  line-height: 1.4;
  border: 3px solid #FFD800;
  border-radius: 12px;
  border-collapse: separate;
  border-spacing: 0;
}

.company_table th,
.company_table td,
.career_table th,
.career_table td {
  padding: 16px 32px;
  text-align: left;
}

.company_table th {
  width: calc( 6em + 67px );
  border-right: 3px solid #FFD800;
}

.career_table th {
  width: calc( 5em + 67px );
  border-right: 3px solid #FFD800;
}


.company_table tr:first-child th,
.company_table tr:first-child td,
.career_table tr:first-child th,
.career_table tr:first-child td {
  padding: 32px 32px 16px;
}

.company_table tr:last-child th,
.company_table tr:last-child td,
.career_table tr:last-child th,
.career_table tr:last-child td {
  padding: 16px 32px 32px;
}

.store_table thead th {
  padding: 24px;
  font-size: 18px;
  border-bottom: 3px solid #FFD800;
}

.store_table tbody th,
.store_table tbody td {
  padding: 12px 24px;
}

.store_table tbody td {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

.store_table tbody tr:first-child th,
.store_table tbody tr:first-child td {
  padding: 24px 24px 12px;
}

.store_table tbody tr:last-child th,
.store_table tbody tr:last-child td {
  padding: 12px 24px 24px;
}

.store_table th:first-child {
  width: 242px;
  border-right: 3px solid #FFD800;
}

/* contents */

.contents {
  display: flex;
}

.about .contents:nth-of-type(2n) {
  flex-direction: row-reverse; 
}

.contents img {
  width: 100%;
  border-radius: 16px;
}

.contents h3 {
  margin-bottom: 32px;
  font-family: 'ヒラギノ丸ゴ ProN W4', 'Hiragino Maru Gothic ProN', "游明朝体", "YuMincho", "游明朝", "Yu Mincho", serif;
  font-size: 20px;
  letter-spacing: 0.1em;
}

.contents p {
  font-size: 14px;
  line-height: 1.8;
  text-align: justify;
}

.contents .button_white-min {
  display: block;
  float: right;
}

.contents_left {
  overflow: hidden;
  margin-right: 28px;
  width: 50%;
}

.about .contents:nth-of-type(2n) .contents_left {
  margin-right: 0;
  margin-left: 28px;
}

.contents_right {
  overflow: hidden;
  margin-left: 28px;
  width: 50%;
}

.about .contents:nth-of-type(2n) .contents_right {
  margin-right: 28px;
  margin-left: 0;
}

.contents dl {
  margin-bottom: 32px;
}

.contents dl:last-child {
  margin-bottom: 0;
}

.contents dl dt {
  margin-bottom: 8px;
  font-weight: bold;
}
/* category_list */

.category_list {
  display: flex;
  justify-content: space-between;
  margin: 120px 0 80px;
  text-align: center;
}

.category_list h1 {
  margin-bottom: 0;
  color: #FFF;
  font-size: 26px;
  text-align: center;
  text-shadow: 0px 1px 6px rgba(0,0,0,0.48);
}

.category_list h1 i {
  display: block;
  font-size: 60px;
}

.category_list-link a {
  padding: 48px 0;
  width: calc( 480px - 16px );
  background-color: rgba(255,255,255,0.3);
  border-radius: 16px;
}

.category_list-link_company {
  background-image: url(../images/company.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 16px;
}

.category_list-link_contact {
  background-image: url(../images/contact.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 16px;
}

/* privacy */

.privacy h3 {
  margin-bottom: 16px;
  font-size: 16px;
}

.privacy p {
  margin-bottom: 56px;
  line-height: 1.4;
}

.privacy ol,
.privacy ol li {
  list-style: decimal;
  line-height: 1.4;
}

.privacy ol {
  margin-bottom: 56px;
  padding-left: 16px;
}

.privacy ol li {
  margin-bottom: 16px;
}

.privacy ol li:last-child {
  margin-bottom: 0;
}

/* footer */

.footer {
  display: flex;
  justify-content: space-between;
  padding: 32px 0;
}

.footer_navi ul {
  display: flex;
  font-weight: bold;
}

.footer_navi ul li {
  margin-right: 32px;
}

.footer_navi ul li a:hover {
  opacity: 0.8;
  transition: 0.2s;
}
/* 404 */

.notfound {
  height: calc( 100vh - 170px - 135px - 16px - 56px );
}

.notfound h1 {
  font-size: 80px;
}

.notfound p {
  font-size: 24px;
  text-align: center;
}

.fadein {
  opacity : 0;
  transform: translateY(20px);
  transition: all 1s;
}

@media screen and (max-width: 1023px) {
  body {
    width: 100%;
    padding: 0 16px;
  }
  .wrapper {
    padding: 0;
  }
  .about, .store, .career, .company, .contact .contents, .privacy {
    margin-bottom: 56px;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  h1, h2 {
    margin-bottom: 24px;
  }
  .about h1, .store h1, .career h1, .company h1, .contact h1, .privacy h1 {
    font-size: 20px;
  }
  .about h1 i, .store h1 i, .career h1 i, .company h1 i, .contact h1 i, .privacy h1 i {
    font-size: 48px;
  }
  h2 {
    font-size: 18px;
  }
  .small {
    font-size: 10px;
  }
  .button_white a {
    padding: 12px 16px 12px 32px;
    font-size: 14px;
    border-radius: 32px;
  }
  .button_white-min a {
    padding: 2px 8px 2px 24px;
    font-size: 12px;
  }
  .button_gradation a {
    margin: 0 auto 56px;
  }
  .header {
    margin-bottom: 24px;
  }
  .header_navi {
    display: block;
  }
  .header_navi-left  {
    margin-bottom: 16px;
    text-align: center;
  }
  .header_navi-right {
    display: none;
  }
  .main_navi ul {
    justify-content: space-between;
  }
  .main_navi ul li {
    margin: 0;
  }
  .FV {
    margin-bottom: 56px;
    background: none;
  }
  .FV img {
    width: 160px;
    height: auto;
  }
  .FV h1 {
    margin: 32px 0;
    font-size: 20px;
  }
  .FV p {
    margin: 0 0 32px;
    font-size: 14px;
  }
  .slick-slide {
    padding: 0 12px;
    opacity: 1;
  }
  .store_slider .label h4 {
    font-size: 14px;
  }
  .contents {
    display: block;
  }
  .contents h3 {
    margin-bottom: 24px;
  }
  .contents_left {
    margin:0 0 24px;
    width: 100%;
  }
  .about .contents:nth-of-type(2n) .contents_left {
    margin: 0 0 24px; 
  }
  .contents_right {
    margin: 0;
    width: 100%;
  }
  .about .contents:nth-of-type(2n) .contents_right {
    margin: 0; 
  }
  .contents dl {
    margin-bottom: 24px;
  }
  .store_lists {
    display: block;
  }
  .store_list {
    width: 100%;
    margin-bottom: 56px;
  }
  .store_list img {
    width: 100%;
    height: 220px;
  }
  .author {
    margin-top: 8px;
    font-size: 14px;
  }
  .career_approach {
    display: block;
  }
  .approach {
    margin: 0 auto 56px;
  }
  .career_select label {
    margin: 0 4px;
  }
  .company_table th, .company_table td, .career_table th, .career_table td {
    padding: 12px;
  }
  .company_table tr:first-child th, .company_table tr:first-child td, .career_table tr:first-child th, .career_table tr:first-child td {
    padding: 24px 12px 12px;
  }
  .company_table tr:last-child th, .company_table tr:last-child td, .career_table tr:last-child th, .career_table tr:last-child td {
    padding: 12px 12px 24px;
  }
  .company_table th {
    width: calc( 6em + 27px );
  }
  .career_table th {
    width: calc( 5em + 27px );
  }
  .store_table thead th {
    padding: 8px;
    font-size: 12px;
    border-bottom: 3px solid #FFD800;
  }
  .store_table tbody th, .store_table tbody td {
    padding: 4px 8px;
  }
  .store_table tbody td {
    font-size: 12px;
    font-weight: bold;
    text-align: center;
  }
  .store_table tbody tr:first-child th, .store_table tbody tr:first-child td {
    padding: 8px 8px 4px;
  }
  .store_table tbody tr:last-child th, .store_table tbody tr:last-child td {
    padding: 4px 8px 8px;
  }
  .store_table th:first-child {
    width: auto;
    font-size: 12px;
    border-right: 3px solid #FFD800;
  }
  .category_list {
    display: block;
    margin: 56px 0;
  }
  .category_list h1 {
    font-size: 20px;
  }
  .category_list h1 i {
    font-size: 48px;
  }
  .category_list-link {
    margin-bottom: 32px;
  }
  .category_list-link:last-child {
    margin-bottom: 0;
  }
  .category_list-link a {
    width: 100%;
    padding: 24px;
  }
  .footer {
    display: block;
    border-top: 1px solid #715548;
  }
  .footer_navi ul {
    flex-wrap: wrap;
  }
  .footer_navi ul li {
    margin-bottom: 16px;
  }
  .frame {
    height: 870px !important;
  }
  .notfound h1 {
    margin-bottom: 16px;
    font-size: 60px;
  }
  .notfound p {
    font-size: 18px;
    text-align: center;
  }
}
