@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  color: #000;
  font-size: 16px;
  font-family: "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

a {
  text-decoration: none;
}

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

b {
  font-weight: bold;
}

.container {
  margin: 0 auto;
  max-width: 1280px;
}

/* ヘッダー */
.header {
  background: #ffe100;
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  padding: 50px 0 0;
}
.header h1 {
  color: #f15a24;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-size: 100px;
  font-weight: 900;
  text-align: center;
}
.header .sub_header {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-size: 70px;
  font-weight: 900;
  text-align: center;
}
.header nav {
  background: #ffe100;
  padding: 16px;
  text-align: center;
}
.header nav ul {
  display: inline-flex;
  gap: 0 20px;
}
.header nav ul li {
  font-size: 20px;
  position: relative;
}
.header nav ul li a {
  color: #000;
  display: flex;
  align-items: center;
}
.header nav ul li a:hover {
  opacity: 0.7;
}
.header nav ul li::after {
  content: "";
  background: #000;
  position: absolute;
  right: -10px;
  top: 50%;
  height: 15px;
  width: 1px;
  transform: translateY(-50%);
}
.header nav ul li:last-child::after {
  display: none;
}

/* メインビジュアル */
.main_visual .slick-dots {
  bottom: 10px;
}
.main_visual .slick-dots li button::before {
  font-size: 10px;
  color: #fff;
  opacity: 1;
}
.main_visual .slick-dots li.slick-active button::before {
  color: #000;
  opacity: 1;
}

h2.section_headline {
  color: #f5c51d;
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 50px;
  text-align: center;
}
h2.section_headline span {
  display: inline-block;
  position: relative;
}
h2.section_headline span::before, h2.section_headline span::after {
  content: "";
  background: url(../images/headline_deco.png) 0 0 no-repeat;
  position: absolute;
  top: 50%;
  height: 57px;
  width: 140px;
  transform: translateY(-50%);
}
h2.section_headline span::before {
  left: -200px;
}
h2.section_headline span::after {
  right: -200px;
}
h2.section_headline span br {
  display: none;
}

.concept {
  padding: 80px 0 100px;
}
.concept h2.section_headline {
  margin-bottom: 90px;
}
.concept_appeal {
  text-align: center;
}
.concept_appeal_point {
  background: url(../images/bg_concept.jpg) center center no-repeat;
  font-size: 48px;
}
.concept_appeal_copy {
  font-size: 68px;
}
.concept_appeal_copy div {
  display: inline-block;
  position: relative;
  padding: 0 60px;
  line-height: 1;
}
.concept_appeal_copy div::after {
  content: "";
  background: #ffe100;
  border-radius: 22px;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 50%;
  width: 100%;
  z-index: -1;
}
.concept_appeal_copy p {
  font-size: 22px;
}

.section01 {
  background: #ffe100;
  padding: 100px 0 60px;
}
.section01 h2.section_headline {
  color: #000;
  margin-bottom: 60px;
}
.section01 h2.section_headline span::before, .section01 h2.section_headline span::after {
  background-image: url(../images/headline_deco_wh.png);
}
.section01_mv {
  margin-bottom: 60px;
  text-align: center;
}
.section01_point {
  display: flex;
  justify-content: center;
  gap: 0 140px;
  margin-bottom: 15px;
}
.section01_point:nth-child(odd) {
  flex-direction: row-reverse;
  gap: 0 70px;
}
.section01_point .text {
  font-size: 22px;
  max-width: 500px;
}
.section01_point .text h3 {
  color: #f15a24;
  font-size: 46px;
  margin-bottom: 10px;
}
.section01_point .text .icon {
  margin-bottom: 10px;
  padding-left: 20px;
}

.section02 {
  background: #ffe100;
}
.section02 .container {
  border-top: 1px solid #fff;
  padding: 120px 20px 110px;
}
.section02 h2.section_headline {
  color: #000;
  margin-bottom: 120px;
}
.section02 h2.section_headline span::before, .section02 h2.section_headline span::after {
  background-image: url(../images/headline_deco_wh.png);
}
.section02 .flex {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 70px;
}
.section02 ol {
  counter-reset: listnum;
}
.section02 ol li {
  font-size: 22px;
  margin-bottom: 55px;
  padding-left: 80px;
  position: relative;
}
.section02 ol li h3 {
  color: #754c24;
  font-size: 45px;
  position: relative;
  top: -0.2em;
  margin-bottom: -0.2em;
}
.section02 ol li::before {
  counter-increment: listnum;
  content: counter(listnum);
  background: #754c24;
  color: #fff;
  font-size: 62px;
  line-height: 85px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  height: 85px;
  width: 62px;
}
.section02 ol li:last-child {
  margin-bottom: 0;
}

.section03 {
  background: #000;
  padding: 130px 0 40px;
}
.section03_items {
  margin-bottom: 150px;
}
.section03_items h3 {
  color: #fff;
  font-size: 45px;
  text-align: center;
  margin-bottom: 70px;
}
.section03_items h3 br {
  display: none;
}
.section03_items p {
  color: #fff;
  font-size: 38px;
  text-align: center;
  margin-bottom: 40px;
}
.section03_items ul {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 10px;
}
.section03_items ul li p {
  color: #ff0;
  font-size: 38px;
  margin-top: 20px;
  text-align: center;
}
.section03_flow h2.section_headline {
  margin-bottom: 70px;
}
.section03_flow_title {
  background: #fbb03b;
  font-size: 38px;
  line-height: 1.3;
  padding: 10px;
  text-align: center;
}
.section03_flow_title span {
  font-size: 58px;
}
.section03_flow_title h3 {
  font-size: 58px;
}
.section03_flow_text {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  height: 5em;
  margin: 10px auto;
}
.section03_flow ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 70px 50px;
  margin-bottom: 110px;
}
.section03_flow ul li {
  flex-basis: calc(50% - 25px);
  font-size: 20px;
}
.section03_flow ul li:nth-child(odd) .section03_flow_title {
  background: #fbb03b url(../images/flow_icon.png) right 16px bottom 16px no-repeat;
}
.section03_flow ul li:last-child {
  flex-basis: 100%;
}
.section03_flow ul li:last-child .section03_flow_title {
  background: #ffe100;
}
.section03_flow ul li:last-child .section03_flow_text {
  height: auto;
  margin-bottom: 40px;
}

.section04 {
  padding: 140px 0;
}
.section04 h2.section_headline {
  color: #000;
  margin-bottom: 100px;
}
.section04_box {
  display: flex;
  justify-content: space-between;
}
.section04_left {
  flex-basis: 590px;
}
.section04_left h3 {
  background: #ffe100;
  clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 0% 100%);
  font-size: 45px;
  margin-bottom: 20px;
  padding: 10px 80px;
}
.section04_left h3:nth-of-type(n+2) {
  margin-top: 50px;
}
.section04_left p {
  font-size: 26px;
}
.section04_left .flex {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 20px;
}

.section05 {
  margin-bottom: 120px;
}
.section05 .container {
  border: 2px solid #222;
  padding: 80px;
}
.section05 h2.section_headline {
  color: #000;
  margin-bottom: 80px;
}
.section05_image {
  text-align: center;
  margin-bottom: 80px;
}
.section05_text {
  font-size: 28px;
  text-align: center;
}

.shopinfo {
  background: url(../images/bg_shopinfo.jpg) 0 0 no-repeat;
  background-size: cover;
  padding: 100px 0;
}
.shopinfo h2.section_headline {
  color: #000;
  margin-bottom: 30px;
}
.shopinfo h2.section_headline span::before, .shopinfo h2.section_headline span::after {
  background-image: url(../images/headline_deco_wh.png);
}
.shopinfo_lead {
  background: #fff;
  border-radius: 28px;
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
  padding: 10px;
}
.shopinfo .flex {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
.shopinfo .flex .info {
  font-size: 28px;
}
.shopinfo .flex .info a {
  color: #000;
}
.shopinfo .flex .info .name {
  margin-bottom: 1em;
}
.shopinfo .flex .info .address {
  line-height: 2;
  margin-bottom: 0.5em;
}
.shopinfo .flex .info .note {
  font-size: 24px;
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 60px;
}

.support {
  padding: 130px 0 120px;
}
.support h2.section_headline {
  color: #000;
  margin-bottom: 120px;
}
.support ul li {
  display: flex;
  gap: 60px;
  font-size: 22px;
  margin-bottom: 80px;
}
.support ul li .text {
  flex-basis: 855px;
  position: relative;
  top: -0.2em;
  margin-bottom: -0.2em;
}
.support ul li .text h3 {
  color: #a67c52;
  font-size: 45px;
  margin-bottom: 10px;
}

.flow .container {
  border-top: 2px solid #222;
  padding: 100px 20px 120px;
}
.flow h2.section_headline {
  color: #000;
  margin-bottom: 80px;
}
.flow_image {
  text-align: center;
}
.flow_note {
  font-size: 30px;
  text-align: center;
  margin-top: 60px;
}

.about {
  background: #f5f2e9;
  padding: 100px 0 60px;
}
.about h2.section_headline {
  color: #000;
  margin-bottom: 80px;
}
.about table {
  margin: 0 auto;
  max-width: 970px;
  width: 100%;
}
.about table th, .about table td {
  font-size: 30px;
  border-bottom: 1px solid #222;
  padding: 25px 0;
  text-align: left;
}
.about table th {
  width: 31%;
}
.about table tr:last-child th, .about table tr:last-child td {
  border-bottom: none;
}

.footer {
  background: #f5f2e9;
  padding: 60px 0;
}
.footer_contact {
  text-align: center;
  margin-bottom: 80px;
}
.footer_contact a {
  display: inline-block;
  background: #000;
  border-radius: 64px;
  color: #ffe100;
  font-size: 58px;
  padding: 20px 120px;
}
.footer_contact a br {
  display: none;
}
.footer_copy {
  font-size: 15px;
  text-align: center;
}

@media screen and (min-width: 1281px) and (max-width: 1400px) {
  .header nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  .header nav ul li {
    flex-basis: 15%;
  }
  .header nav ul li a {
    justify-content: center;
  }
  .header nav ul li:nth-child(6)::after {
    display: none;
  }
}
@media screen and (min-width: 1px) and (max-width: 1280px) {
  .container {
    padding: 0 20px;
  }
  .menu_btn {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    height: 60px;
    width: 60px;
    z-index: 100;
  }
  .menu_btn i {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 20px;
    width: 30px;
    transform: translate(-50%, -50%);
    transition: all 0.3s;
  }
  .menu_btn i span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
    transition: all 0.3s;
  }
  .menu_btn i span:nth-child(1) {
    top: 0;
  }
  .menu_btn i span:nth-child(2) {
    top: 9px;
  }
  .menu_btn i span:nth-child(3) {
    bottom: 0;
  }
  .menu_btn.open i span {
    background: #000;
  }
  .menu_btn.open i span:nth-child(1) {
    transform: translateY(9px) rotate(-45deg);
  }
  .menu_btn.open i span:nth-child(2) {
    display: none;
  }
  .menu_btn.open i span:nth-child(3) {
    transform: translateY(-9px) rotate(45deg);
  }
  .header h1 {
    font-size: 50px;
  }
  .header .sub_header {
    font-size: 32px;
  }
  .header nav {
    background: #f15a24;
    padding: 50px 20px 20px;
    text-align: left;
    position: fixed;
    top: 0;
    right: -100%;
    min-width: 40%;
    z-index: 99;
    transition: all 0.6s;
  }
  .header nav ul {
    display: block;
  }
  .header nav ul li {
    margin: 0.5em 0;
  }
  .header nav ul li::after {
    display: none;
  }
  .header nav.open {
    right: 0;
  }
  .concept .container {
    padding: 0;
  }
  .section02 ol li h3 {
    font-size: 36px;
  }
  .section02 ol li::before {
    font-size: 50px;
    line-height: 70px;
    height: 70px;
    width: 50px;
  }
  .section04_right {
    flex-basis: 400px;
  }
  .section05 {
    padding: 0 20px;
  }
  .support ul li .text h3 {
    font-size: 36px;
  }
  .footer_contact a {
    font-size: 42px;
  }
}
@media screen and (min-width: 1px) and (max-width: 820px) {
  .header {
    padding: 20px 0;
  }
  .header h1 {
    font-size: 36px;
  }
  .header .sub_header {
    font-size: 24px;
  }
  h2.section_headline {
    font-size: 42px;
  }
  h2.section_headline span::before, h2.section_headline span::after {
    background-size: 70px 28px;
    height: 28px;
    width: 70px;
  }
  h2.section_headline span::before {
    left: -100px;
  }
  h2.section_headline span::after {
    right: -100px;
  }
  .section01_point {
    gap: 0 70px;
  }
  .section01_point .text h3 {
    font-size: 36px;
  }
  .section03_items h3 {
    font-size: 36px;
  }
  .section03_items p {
    font-size: 32px;
  }
  .section03_flow_title {
    background-size: 28px 35px !important;
    background-position: right 10px bottom 10px !important;
    font-size: 24px;
  }
  .section03_flow_title h3, .section03_flow_title span {
    font-size: 36px;
  }
  .section04_box {
    flex-direction: column;
    gap: 40px;
  }
  .section04_left .flex {
    justify-content: flex-end;
  }
  .section04_right {
    flex-basis: auto;
    margin: 0 auto;
    width: 60%;
  }
  .shopinfo_lead {
    font-size: 20px;
  }
  .shopinfo .flex {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  .shopinfo .flex .info {
    flex-basis: auto;
    font-size: 20px;
  }
  .shopinfo .flex .info .note {
    font-size: 18px;
  }
  .flow_note {
    font-size: 24px;
  }
  .about table th, .about table td {
    font-size: 24px;
  }
  .footer_contact a {
    font-size: 32px;
    padding: 20px 60px;
  }
}
@media screen and (min-width: 1px) and (max-width: 450px) {
  .header h1 {
    font-size: 24px;
  }
  .header .sub_header {
    font-size: 18px;
  }
  h2.section_headline {
    font-size: 24px;
  }
  h2.section_headline span::before, h2.section_headline span::after {
    background-size: 50px 20px;
    height: 20px;
    width: 50px;
  }
  h2.section_headline span::before {
    left: -70px;
  }
  h2.section_headline span::after {
    right: -70px;
  }
  h2.section_headline span br {
    display: inline;
  }
  .concept {
    padding: 40px 0 100px;
  }
  .concept h2.section_headline {
    margin-bottom: 50px;
  }
  .concept_appeal_point {
    font-size: 24px;
  }
  .concept_appeal_copy {
    font-size: 24px;
  }
  .concept_appeal_copy p {
    font-size: 18px;
  }
  .section01 {
    padding: 60px 0 40px;
  }
  .section01 h2.section_headline {
    margin-bottom: 40px;
  }
  .section01_mv {
    margin-bottom: 40px;
  }
  .section01_point {
    flex-direction: column !important;
    margin-bottom: 30px;
  }
  .section01_point .text {
    font-size: 18px;
  }
  .section01_point .text h3 {
    font-size: 24px;
  }
  .section01_point .text .icon {
    max-width: 90px;
  }
  .section01_point .image {
    margin: 20px auto 0;
    width: 80%;
  }
  .section02 .container {
    padding: 80px 20px;
  }
  .section02 h2.section_headline {
    margin-bottom: 80px;
  }
  .section02 .flex {
    flex-direction: column-reverse;
  }
  .section02 ol li {
    font-size: 18px;
  }
  .section02 ol li h3 {
    font-size: 24px;
  }
  .section03 {
    padding: 80px 0 30px;
  }
  .section03_items {
    margin-bottom: 100px;
  }
  .section03_items h3 {
    font-size: 20px;
    margin-bottom: 50px;
  }
  .section03_items h3 br {
    display: inline;
  }
  .section03_items ul {
    flex-direction: column;
    gap: 10px;
  }
  .section03_items ul li {
    margin: 0 auto;
    max-width: 90%;
  }
  .section03_items ul li p {
    font-size: 20px;
    margin-top: 10px;
  }
  .section03_items p {
    font-size: 20px;
    text-align: justify;
  }
  .section03_items p br {
    display: none;
  }
  .section03_flow ul {
    flex-direction: column;
  }
  .section03_flow_title {
    background: #fbb03b !important;
  }
  .section03_flow_text {
    font-size: 18px;
    height: auto;
  }
  .section03_flow_text br {
    display: none;
  }
  .section04 {
    padding: 90px 0;
  }
  .section04 h2.section_headline {
    margin-bottom: 60px;
  }
  .section04_left h3 {
    font-size: 28px;
    padding: 5px 40px;
  }
  .section04_left p {
    font-size: 22px;
  }
  .section04_left p br {
    display: none;
  }
  .section04_left .flex {
    flex-direction: column;
  }
  .section05 {
    margin-bottom: 80px;
  }
  .section05 .container {
    padding: 40px;
  }
  .section05 h2.section_headline {
    margin-bottom: 50px;
  }
  .section05_image {
    margin-bottom: 50px;
  }
  .section05_text {
    font-size: 20px;
    text-align: justify;
  }
  .shopinfo {
    padding: 60px 0;
  }
  .shopinfo_lead {
    font-size: 20px;
  }
  .shopinfo .flex .info .note br {
    display: none;
  }
  .support {
    padding: 80px 0 20px;
  }
  .support h2.section_headline {
    margin-bottom: 80px;
  }
  .support ul li {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }
  .support ul li .text {
    flex-basis: auto;
  }
  .support ul li .text h3 {
    font-size: 24px;
  }
  .support ul li .text p {
    font-size: 18px;
  }
  .flow .container {
    padding: 60px 20px 80px;
  }
  .flow h2.section_headline {
    margin-bottom: 50px;
  }
  .flow_note {
    font-size: 18px;
    margin-top: 40px;
    text-align: justify;
  }
  .about {
    padding: 60px 0 40px;
  }
  .about table th, .about table td {
    font-size: 18px;
  }
  .footer {
    padding: 20px 0 40px;
  }
  .footer_contact {
    margin-bottom: 40px;
  }
  .footer_contact a {
    font-size: 20px;
    padding: 10px 35px;
  }
  .footer_contact a br {
    display: inline;
  }
}