@charset "UTF-8";
/*======================================================================================
  共通
======================================================================================*/
@media (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media (min-width: 1200px) {
  .is-sm {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .is-sm {
    display: none;
  }
}
body {
  font-size: 16px;
  background: #fffffe;
  color: #33272a;
  font-family: "Gill Sans", "Trebuchet MS", "Avenir", "Helvetica Neue", "Helvetica", "Arial", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

img {
  height: auto;
  display: block;
  width: 100%;
  -webkit-filter: brightness(1.1) saturate(150%) hue-rotate(-10deg);
  -moz-filter: brightness(1.1) saturate(150%) hue-rotate(-10deg);
  -o-filter: brightness(1.1) saturate(150%) hue-rotate(-10deg);
  -ms-filter: brightness(1.1) saturate(150%) hue-rotate(-10deg);
  filter: brightness(1.1) saturate(150%) hue-rotate(-10deg);
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: content-box;
}
@media (max-width: 767px) {
  .inner {
    padding-right: 24px;
    padding-left: 24px;
  }
}

.section_title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  padding-bottom: 16px;
  position: relative;
  color: #33272a;
  font-family: "Gill Sans", "Trebuchet MS", "Avenir", "Helvetica Neue", "Helvetica", "Arial", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .section_title {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .section_title {
    font-size: 28px;
    padding-top: 30px;
    padding-bottom: 12px;
  }
}

.btn {
  display: block;
  text-align: center;
  padding: 16px 40px;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  border-radius: 50px;
}

/*======================================================================================
      header
    ======================================================================================*/
.header {
  background: #fffffe;
}

.header_box {
  display: flex;
}
@media (min-width: 1200px) {
  .header_box {
    height: 100vh;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .header_box {
    height: 100vh;
  }
}
@media (max-width: 767px) {
  .header_box {
    height: 667px;
  }
}

.header_box2 {
  display: flex;
}
@media (min-width: 1200px) {
  .header_box2 {
    height: 70vh;
    position: relative;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .header_box2 {
    height: 60vh;
    position: relative;
  }
}
@media (max-width: 767px) {
  .header_box2 {
    height: 400px;
  }
}

.header_information {
  position: absolute;
  bottom: 3%;
  right: 2%;
  color: #33272a;
  background-color: #fffffe;
  z-index: 1;
  text-align: center;
  border-radius: 50px;
  font-weight: 700;
}
@media (min-width: 1200px) {
  .header_information {
    width: 420px;
    padding: 20px;
    font-size: 28px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .header_information {
    width: 360px;
    padding: 15px;
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .header_information {
    display: none;
  }
}

.header_left {
  position: relative;
}
@media (min-width: 1200px) {
  .header_left {
    flex: 0 0 420px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .header_left {
    flex: 0 0 360px;
  }
}

@media (min-width: 1200px) {
  .header_logo {
    margin: 20px auto 50px;
    width: 380px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .header_logo {
    margin: 20px auto 20px;
    width: 320px;
  }
}
.header_logo img {
  display: block;
}
@media (max-width: 767px) {
  .header_logo {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    width: 240px;
  }
}
.header_logo:hover {
  opacity: 0.8;
}

.header_nav {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 5px;
}
.header_nav li {
  text-align: center;
}
@media (min-width: 1200px) {
  .header_nav li {
    font-size: 20px;
    margin-bottom: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .header_nav li {
    font-size: 20px;
    margin-bottom: 32px;
  }
}
.header_nav li a {
  text-decoration: none;
  color: #33272a;
  position: relative;
}
.header_nav li a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: -3px;
  width: 100%;
  height: 1px;
  background: transparent;
  transition: all 0.3s ease 0s;
}
.header_nav li a:hover::after, .header_nav li a.is-active::after {
  content: "";
  background: #33272a;
}

.header_info {
  position: absolute;
  margin-top: auto;
  text-align: center;
  background: #faeee7;
}
@media (min-width: 1200px) {
  .header_info {
    padding: 50px 12px 30px;
    width: 420px;
    bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .header_info {
    padding: 50px 10px 30px;
    width: 360px;
    bottom: 0;
  }
}
@media (max-width: 767px) {
  .header_info {
    padding: 30px 5px 20px;
    width: 260px;
    top: 530px;
  }
}

.header_info2 {
  position: absolute;
  text-align: center;
}
@media (min-width: 1200px) {
  .header_info2 {
    position: absolute;
    bottom: 2%;
    left: 30%;
    padding: 20px;
    background: #fffffe;
    border-radius: 20px;
    z-index: 1;
    width: 420px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .header_info2 {
    position: absolute;
    bottom: 2%;
    left: 30%;
    padding: 15px;
    background: #fffffe;
    border-radius: 20px;
    z-index: 1;
    width: 360px;
  }
}
@media (max-width: 767px) {
  .header_info2 {
    top: 350px;
    right: 4%;
    padding: 10px;
    background: #fffffe;
    border-radius: 20px;
    width: 260px;
    bottom: auto;
  }
}

@media (min-width: 1200px) {
  .header_info-time {
    font-size: 28px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .header_info-time {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .header_info-time {
    font-size: 18px;
  }
}

.header_info-text {
  margin-top: 10px;
}
@media (min-width: 1200px) {
  .header_info-text {
    margin-left: 160px;
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .header_info-text {
    margin-left: 120px;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .header_info-text {
    margin-left: 90px;
    font-size: 12px;
  }
}

.header_info-buttom {
  display: block;
  padding: 15px 20px;
  border: 2px solid #33272a;
  width: 280px;
  margin: 20px auto 0px;
  letter-spacing: 4px;
}
@media (max-width: 767px) {
  .header_info-buttom {
    padding: 5px 10px 8px;
    width: 180px;
    margin: 15px auto 0;
  }
}
.header_info-buttom a {
  color: #33272a;
  font-size: 18px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .header_info-buttom a {
    font-size: 12px;
  }
}
.header_info-buttom:hover {
  background: #fffffe;
}
.header_info-buttom:hover a {
  color: #33272a;
}

.header_right {
  width: 100%;
  position: relative;
}
.header_right img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}
@media (max-width: 767px) {
  .header_right {
    position: relative;
  }
}

.header_right2 {
  width: 100%;
  position: relative;
}
.header_right2 img {
  display: block;
  width: 100%;
  position: absolute;
  object-fit: cover;
}
@media (min-width: 1200px) {
  .header_right2 img {
    height: 70vh;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .header_right2 img {
    height: 60vh;
  }
}
@media (max-width: 767px) {
  .header_right2 img {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .header_right2 {
    position: relative;
  }
}

.header_right-news {
  position: relative;
}
.header_right-news p {
  position: absolute;
  top: 50px;
  right: 50px;
  color: #fffffe;
}

/*======================================================================================
  drawer menu
======================================================================================*/
.drawer-icon {
  position: fixed;
  top: 24px;
  right: 20px;
  z-index: 100;
  transition: transform 0.5s ease 0s;
}
.drawer-icon.is-active {
  transform: translateX(-300px);
}
@media (max-width: 767px) {
  .drawer-icon.is-active {
    transform: translateX(-230px);
  }
}
.drawer-icon.is-active .drawer-icon_bars {
  border: 1px solid #fff;
}
.drawer-icon.is-active .drawer-icon_bars1 {
  transform: rotate(-45deg);
  top: 29px;
  background: #fff;
}
.drawer-icon.is-active .drawer-icon_bars2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon_bars3 {
  transform: rotate(45deg);
  top: 29px;
  background: #fff;
}

.drawer-icon_bars {
  width: 60px;
  height: 60px;
  display: block;
  position: relative;
  border: 1px solid #33272a;
  border-radius: 50%;
}

.drawer-icon_bars1,
.drawer-icon_bars2,
.drawer-icon_bars3 {
  position: absolute;
  width: 30px;
  height: 1px;
  background: #33272a;
  top: 0;
  left: 0;
  border-radius: 10px;
}

.drawer-icon_bars1 {
  top: 19px;
  left: 14px;
}

.drawer-icon_bars2 {
  top: 29px;
  left: 14px;
}

.drawer-icon_bars3 {
  top: 39px;
  left: 14px;
}

.drawer-content {
  width: 300px;
  height: 100%;
  background: #fff;
  top: 0;
  right: 0;
  position: fixed;
  z-index: 15;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
}
.drawer-content.is-active {
  transform: translateX(0);
}
@media (max-width: 767px) {
  .drawer-content {
    width: 230px;
  }
}

.drawer-content_items {
  padding-top: 32px;
}

.drawer-content_item {
  text-align: center;
}
.drawer-content_item a {
  display: block;
  color: #33272a;
  text-decoration: none;
  padding: 16px 0;
  height: 50px;
  position: relative;
}
.drawer-content_item a::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 90px;
  width: 50px;
  height: 1px;
  background: transparent;
  transition: all 0.3s ease 0s;
}
.drawer-content_item a:hover::after, .drawer-content_item a.is-active::after {
  content: "";
  background: #33272a;
}

.drawer-content_item-inst {
  text-align: center;
}
.drawer-content_item-inst a {
  display: block;
  color: rgb(239, 99, 12);
  padding: 16px 0;
}
.drawer-content_item-inst a:hover {
  opacity: 0.6;
}

.drawer-content_logo {
  margin: 20px auto 0px;
  width: 90%;
}
.drawer-content_logo a {
  text-align: center;
}
.drawer-content_logo:hover {
  opacity: 0.8;
}

.drawer-background {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(62, 62, 62, 0.7);
  z-index: 14;
  display: none;
}
.drawer-background.is-active {
  display: block;
}

/*======================================================================================
  concept
======================================================================================*/
@media (min-width: 1200px) {
  .concept {
    padding: 0 0 200px;
    position: relative;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .concept {
    padding: 0 0 160px;
    position: relative;
  }
}
@media (max-width: 767px) {
  .concept {
    position: relative;
    padding: 0 0 80px;
  }
}

.concept_background {
  background: #faeee7;
}
@media (min-width: 1200px) {
  .concept_background {
    width: 80%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .concept_background {
    width: 80%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media (max-width: 767px) {
  .concept_background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}

.section_title-concept {
  font-weight: bold;
}
@media (min-width: 1200px) {
  .section_title-concept {
    font-size: 32px;
    padding-top: 100px;
    padding-bottom: 12px;
    position: relative;
    margin-bottom: 28px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .section_title-concept {
    font-size: 30px;
    padding-top: 80px;
    padding-bottom: 12px;
    position: relative;
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .section_title-concept {
    font-size: 24px;
    padding-top: 60px;
    padding-bottom: 12px;
    position: relative;
    margin-bottom: 16px;
  }
}

.concept_inner {
  display: flex;
}
@media (min-width: 1200px) {
  .concept_inner {
    padding-left: 180px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .concept_inner {
    padding-left: 60px;
  }
}
@media (max-width: 767px) {
  .concept_inner {
    display: block;
  }
}

@media (min-width: 1200px) {
  .concept_message {
    flex: 0 1 55%;
    margin-right: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .concept_message {
    flex: 0 1 50%;
    margin-right: 20px;
  }
}
.concept_message-title {
  line-height: 1.5;
  position: relative;
  font-weight: 700;
}
@media (min-width: 1200px) {
  .concept_message-title {
    font-size: 34px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .concept_message-title {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .concept_message-title {
    font-size: 30px;
  }
}

.concept_message-text1 {
  margin-top: 72px;
  width: 100%;
  line-height: 2;
  font-size: 18px;
  position: relative;
}
@media (max-width: 767px) {
  .concept_message-text1 {
    margin-top: 40px;
  }
}

.concept_message-text2 {
  margin-top: 36px;
  width: 100%;
  line-height: 2;
  font-size: 18px;
  position: relative;
}
@media (max-width: 767px) {
  .concept_message-text2 {
    margin-top: 20px;
  }
}

.concept_picture {
  position: relative;
}
@media (min-width: 1200px) {
  .concept_picture {
    height: 500px;
    flex: 0 1 45%;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .concept_picture {
    flex: 0 1 50%;
    height: 400px;
  }
}
@media (max-width: 767px) {
  .concept_picture {
    display: none;
  }
}
.concept_picture img {
  display: block;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 1200px) {
  .concept_picture img {
    margin-top: 200px;
    height: 700px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .concept_picture img {
    margin-top: 200px;
    height: 600px;
  }
}

@media (min-width: 1200px) {
  .concept_picture_sm {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .concept_picture_sm {
    display: none;
  }
}
@media (max-width: 767px) {
  .concept_picture_sm {
    margin-top: 32px;
    display: block;
  }
}

/*======================================================================================
  menu (feature)
======================================================================================*/
@media (min-width: 1200px) {
  .feature {
    margin-top: 220px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .feature {
    margin-top: 180px;
  }
}
@media (max-width: 767px) {
  .feature {
    margin-top: 80px;
  }
}

.feature_inner {
  padding-bottom: 130px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .feature_inner {
    max-width: 700px;
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .feature_inner {
    padding-bottom: 2px;
  }
}

.feature_head {
  margin-bottom: 64px;
}
@media (max-width: 767px) {
  .feature_head {
    margin-bottom: 48px;
  }
}

@media (min-width: 1200px) {
  .feature_items {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .feature_items {
    display: block;
  }
}
@media (max-width: 767px) {
  .feature_items {
    display: block;
  }
}

.feature_item {
  display: block;
  box-shadow: 3px 3px 15px rgba(96, 96, 96, 0.1607843137);
}
@media (min-width: 1200px) {
  .feature_item {
    width: calc(33.3% - 60px);
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .feature_item {
    width: 100%;
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .feature_item {
    width: 100%;
    margin-bottom: 48px;
  }
}

.feature_item-link {
  display: block;
  color: #33272a;
  background: #fff;
}
@media (min-width: 1200px) {
  .feature_item-link {
    overflow: hidden;
  }
  .feature_item-link:hover .feature_item-image > img {
    transform: scale(1.05);
  }
}
.feature_item-link .feature_item-image > img {
  transition: transform 0.4s;
}

.feature_item-body {
  text-align: center;
  font-weight: bold;
  padding: 30px 12px;
}

@media (min-width: 1200px) {
  .feature_item-text {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .feature_item-text {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .feature_item-text {
    font-size: 16px;
  }
}

/*======================================================================================
  news
======================================================================================*/
.news {
  background: #fffffe;
  margin: 0 auto;
}

.news2 {
  background: #fffffe;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .news2 {
    padding: 100px 0 150px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .news2 {
    padding: 80px 0 100px;
  }
}
@media (max-width: 767px) {
  .news2 {
    padding: 60px 0 100px;
  }
}

.news_inner {
  max-width: 1040px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .news_inner {
    max-width: 840px;
  }
}

.news_lists {
  margin-top: 28px;
}
@media (max-width: 767px) {
  .news_lists {
    margin-top: 25px;
  }
}

.news_item {
  border-bottom: solid 1px #e0e0e0;
}

.news_item-link {
  padding: 22px 0;
  display: block;
}
@media (min-width: 1200px) {
  .news_item-link {
    display: flex;
    align-items: center;
  }
  .news_item-link:hover .news_item-picture > img {
    transform: translate(-50%, -50%) scale(1.05);
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .news_item-link {
    display: flex;
    align-items: center;
  }
  .news_item-link:hover .news_item-picture > img {
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@media (min-width: 1200px) {
  .news_item-header {
    flex: 0 0 260px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .news_item-header {
    flex: 0 0 260px;
  }
}

.news_item-picture {
  padding-top: 61.5385%;
  position: relative;
  overflow: hidden;
}
.news_item-picture img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  transition: transform 0.4s ease 0s;
}

.news_item-body {
  color: #33272a;
}
@media (min-width: 1200px) {
  .news_item-body {
    flex: 0 1 100%;
    margin-left: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .news_item-body {
    flex: 0 1 100%;
    margin-left: 40px;
  }
}
@media (min-width: 1200px) {
  .news_item-body {
    flex: 0 1 100%;
    margin-left: 40px;
  }
}
@media (max-width: 767px) {
  .news_item-body {
    margin-top: 20px;
  }
}

.news_item-date {
  font-size: 14px;
}

.news_item-title {
  font-size: 18px;
  font-weight: 700;
  margin-top: 12px;
}
@media (max-width: 767px) {
  .news_item-title {
    font-size: 16px;
  }
}

.news_item-text {
  font-size: 14px;
  color: #888;
  margin-top: 16px;
  line-height: 1.714;
}

/*======================================================================================
  access
======================================================================================*/
.access {
  padding: 40px 0 130px;
}
@media (max-width: 767px) {
  .access {
    padding: 50px 0 80px;
  }
}

.access_map {
  margin: 80px auto 0;
  width: 800px;
  max-width: 100%;
}
@media (max-width: 767px) {
  .access_map {
    margin-top: 40px;
  }
}

.iframe_wrap {
  padding-top: 50%;
  position: relative;
}
.iframe_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.access_info {
  margin: 16px auto 0;
  width: 800px;
  max-width: 100%;
  line-height: 24px;
}

.access_info-row {
  display: flex;
  align-items: center;
}
.access_info-row:not(:first-child) {
  margin-top: 8px;
}
.access_info-row dt {
  margin: 0 0 0 10px;
  padding: 0;
  font-weight: 700;
  width: 104px;
}
.access_info-row dd {
  margin: 0;
  padding: 0;
  width: calc(100% - 104px);
}

.access_buttom {
  display: block;
  padding: 17px 20px;
  border: 1px solid #faeee7;
  width: 340px;
  margin: 60px auto 0px;
  letter-spacing: 1px;
  background: #faeee7;
}
@media (max-width: 767px) {
  .access_buttom {
    padding: 12px 15px;
    width: 240px;
    margin: 40px auto 0;
  }
}
.access_buttom a {
  color: #33272a;
  font-size: 16px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .access_buttom a {
    font-size: 12px;
  }
}
.access_buttom:hover {
  opacity: 0.7;
}
.access_buttom:hover a {
  color: #33272a;
}

/*======================================================================================
  footer
======================================================================================*/
.footer {
  background: #faeee7;
  padding: 60px 0;
}

@media (min-width: 1200px) {
  .footer_inner {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .footer_inner {
    display: block;
  }
}
@media (max-width: 767px) {
  .footer_inner {
    display: block;
  }
}

.footer_sns-list {
  display: flex;
}
@media (min-width: 1200px) {
  .footer_sns-list {
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .footer_sns-list {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .footer_sns-list {
    justify-content: center;
  }
}

.footer_sns-icon {
  opacity: 0.6;
}
@media (min-width: 1200px) {
  .footer_sns-icon:not(:first-child) {
    margin-left: 32px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .footer_sns-icon:not(:first-child) {
    margin-left: 53px;
  }
}
@media (max-width: 767px) {
  .footer_sns-icon:not(:first-child) {
    margin-left: 53px;
  }
}

.footer_sns-icon-link {
  color: rgb(239, 99, 12);
}
.footer_sns-icon-link:hover {
  opacity: 0.6;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .footer_sns-icon-link {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .footer_sns-icon-link {
    text-align: center;
  }
}
.footer_sns-icon-link i {
  margin-right: 12px;
}

.size {
  font-size: 38px;
}

.footer_nav {
  letter-spacing: 0.4px;
  line-height: 1.625;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .footer_nav {
    text-align: center;
    margin-top: 32px;
  }
}
@media (max-width: 767px) {
  .footer_nav {
    text-align: center;
    margin-top: 32px;
  }
}

.footer_nav1,
.footer_nav2,
.footer_nav3,
.footer_nav4 {
  margin-top: 15px;
}

.footer_nav-link {
  color: #33272a;
  text-decoration: none;
  color: #33272a;
  position: relative;
}
@media (min-width: 1200px) {
  .footer_nav-link {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .footer_nav-link {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .footer_nav-link {
    font-size: 14px;
  }
}
.footer_nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: transparent;
  transition: all 0.3s ease 0s;
}
.footer_nav-link:hover::after, .footer_nav-link.is-active::after {
  content: "";
  background: #33272a;
}

@media (min-width: 1200px) {
  .footer_right {
    margin-left: auto;
    margin-top: 4px;
  }
}

.footer_logo {
  color: #33272a;
  font-weight: bold;
  font-size: 40px;
  margin-bottom: 15px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .footer_logo {
    font-size: 32px;
    margin-bottom: 16px;
    margin-top: 40px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .footer_logo {
    font-size: 32px;
    margin-bottom: 16px;
    margin-top: 40px;
    text-align: center;
  }
}
.footer_logo a {
  color: #33272a;
  cursor: pointer;
}
.footer_logo a:hover {
  opacity: 0.6;
}

.footer_logo-sub {
  color: #33272a;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 15px;
  text-align: right;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .footer_logo-sub {
    font-size: 20px;
    margin-bottom: 16px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .footer_logo-sub {
    font-size: 20px;
    margin-bottom: 16px;
    text-align: center;
  }
}
.footer_logo-sub a {
  color: #33272a;
  cursor: pointer;
}
.footer_logo-sub a:hover {
  opacity: 0.6;
}

.footer_copyright {
  color: #33272a;
  font-size: 12px;
  opacity: 0.6;
  letter-spacing: 0.7px;
}
@media (min-width: 1200px) {
  .footer_copyright {
    text-align: right;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .footer_copyright {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .footer_copyright {
    text-align: center;
  }
}

/*======================================================================================
  information
======================================================================================*/
@media (min-width: 1200px) {
  .info {
    margin: 200px 0;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .info {
    margin: 150px 0;
  }
}
@media (max-width: 767px) {
  .info {
    margin: 100px 0;
  }
}

@media (min-width: 1200px) {
  .info_box {
    display: flex;
  }
}

@media (min-width: 1200px) {
  .info_image {
    width: 45%;
    position: relative;
  }
}
@media (min-width: 1200px) {
  .info_image img {
    position: absolute;
    top: 50%;
    height: 110%;
    object-fit: cover;
    transform: translateY(-50%);
  }
}

@media (min-width: 1200px) {
  .info_lists {
    width: 55%;
    margin-left: 70px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .info_lists {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .info_lists {
    margin-top: 30px;
  }
}

.info_list {
  border-bottom: 1px solid #cecdcd;
}
@media (min-width: 1200px) {
  .info_list {
    display: flex;
    align-items: center;
    padding: 30px 0;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .info_list {
    padding: 30px 10px;
  }
}
@media (max-width: 767px) {
  .info_list {
    padding: 20px 10px;
  }
}
@media (min-width: 1200px) {
  .info_list dt {
    width: 150px;
  }
}
@media (min-width: 1200px) {
  .info_list dd {
    width: calc(100% - 150px);
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .info_list dd {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .info_list dd {
    margin-top: 20px;
  }
}
.info_list dd a {
  display: inline-block;
  color: #33272a;
  border: 1px solid #33272a;
  border-radius: 30px;
  padding: 10px 80px;
  margin-top: 20px;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}
.info_list dd a:hover {
  color: #fffffe;
  background: #33272a;
}

@media (min-width: 1200px) {
  .info_title {
    font-size: 32px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .info_title {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .info_title {
    font-size: 24px;
    position: absolute;
  }
}

/*======================================================================================
  article
======================================================================================*/
@media (min-width: 1200px) {
  .article {
    padding: 160px 0;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .article {
    padding: 120px 0;
  }
}
@media (max-width: 767px) {
  .article {
    padding: 80px 0;
  }
}

.article_inner {
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .article_inner {
    max-width: 800px;
    padding: 0 40px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .article_inner {
    max-width: 600px;
  }
}
@media (max-width: 767px) {
  .article_inner {
    max-width: 400px;
  }
}
@media (min-width: 1200px) {
  .article_inner p {
    line-height: 2.5;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .article_inner p {
    line-height: 2;
  }
}
@media (max-width: 767px) {
  .article_inner p {
    margin-top: 20px;
    line-height: 1.5;
  }
}

@media (min-width: 1200px) {
  .article_title-box {
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
}

.article_title-box2 {
  margin-bottom: 30px;
}

@media (min-width: 1200px) {
  .article_date {
    margin-right: 40px;
    font-size: 22px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .article_date {
    margin-bottom: 20px;
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .article_date {
    margin-bottom: 10px;
    font-size: 16px;
  }
}

@media (min-width: 1200px) {
  .article_title {
    font-size: 28px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .article_title {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .article_title {
    font-size: 20px;
  }
}

@media (min-width: 1200px) {
  .article_img {
    margin-top: 60px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .article_img {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .article_img {
    margin-top: 40px;
  }
}

/*======================================================================================
  menu
======================================================================================*/
.back1 {
  background-image: -webkit-radial-gradient(#ffc107 2px, transparent 2px), radial-gradient(#ffc107 2px, #ffffff 2px);
  background-image: -moz-radial-gradient(#ffc107 2px, transparent 2px), radial-gradient(#ffc107 2px, #ffffff 2px);
  background-image: radial-gradient(rgba(250, 238, 231, 0.6) 3px, transparent 2px), radial-gradient(rgba(250, 238, 231, 0.6) 3px, #ffffff 2px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
}

.ice {
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .ice {
    max-width: 1300px;
    padding: 0 40px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .ice {
    max-width: 1000px;
    padding: 0 32px;
  }
}
@media (max-width: 767px) {
  .ice {
    max-width: 600px;
    padding: 0 16px;
  }
}

@media (min-width: 1200px) {
  .welcome_section_title {
    padding-top: 120px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .welcome_section_title {
    padding-top: 100px;
  }
}
@media (max-width: 767px) {
  .welcome_section_title {
    padding-top: 80px;
  }
}

@media (min-width: 1200px) {
  .welcome {
    margin: 40px 0 160px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .welcome {
    margin: 30px 0 120px;
  }
}
@media (max-width: 767px) {
  .welcome {
    margin: 20px 0 80px;
  }
}

@media (min-width: 1200px) {
  .ice_section_title {
    margin-bottom: 50px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .ice_section_title {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .ice_section_title {
    margin-bottom: 30px;
  }
}

.ice_items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

@media (min-width: 1200px) {
  .ice_item {
    width: calc(25% - 18px);
  }
  .ice_item:not(:nth-child(4n+1)) {
    margin-left: 24px;
  }
  .ice_item:nth-child(n+5) {
    margin-top: 70px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .ice_item {
    width: calc(33.3% - 16px);
  }
  .ice_item:not(:nth-child(3n+1)) {
    margin-left: 24px;
  }
  .ice_item:nth-child(n+4) {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .ice_item {
    width: calc(50% - 12px);
  }
  .ice_item:not(:nth-child(2n+1)) {
    margin-left: 24px;
  }
  .ice_item:nth-child(n+3) {
    margin-top: 24px;
  }
}

.ice_text {
  padding: 20px 5px;
  line-height: 20px;
}

.ice_img-box img {
  -webkit-filter: brightness(1.1) saturate(110%) hue-rotate(-10deg);
  -moz-filter: brightness(1.1) saturate(110%) hue-rotate(-10deg);
  -o-filter: brightness(1.1) saturate(110%) hue-rotate(-10deg);
  -ms-filter: brightness(1.1) saturate(110%) hue-rotate(-10deg);
  filter: brightness(1.1) saturate(110%) hue-rotate(-10deg);
}

.ice_title {
  font-weight: 700;
  text-align: center;
  padding: 0.2rem;
  margin-bottom: 0.2rem;
  background: linear-gradient(transparent 50%, #faeee7 50%);
}
@media (min-width: 1200px) {
  .ice_title {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .ice_title {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .ice_title {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .ice_title-furan {
    font-size: 11px;
  }
}

.ice_lead {
  margin-top: 12px;
  text-align-last: left;
}
@media (min-width: 1200px) {
  .ice_lead {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .ice_lead {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .ice_lead {
    font-size: 14px;
  }
}

.ice_lead-br {
  font-size: 14px;
  color: #3e3e3e;
}

.red {
  color: transparent;
  -webkit-text-stroke: 0.03em rgb(255, 0, 0);
}

.burger_menu-text {
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .burger_menu-text {
    margin-bottom: 40px;
    font-size: 24px;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .burger_menu-text {
    margin-bottom: 32px;
    font-size: 20px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .burger_menu-text {
    margin-bottom: 24px;
    font-size: 18px;
    padding: 0 10px 10px 10px;
  }
}
.burger_menu-text span {
  font-weight: bold;
  border-bottom: 1px solid #33272a;
}

@media (min-width: 1200px) {
  .burger_item {
    width: calc(33.3% - 16px);
  }
  .burger_item:not(:nth-child(3n+1)) {
    margin-left: 24px;
  }
  .burger_item:nth-child(n+4) {
    margin-top: 50px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .burger_item {
    width: calc(33.3% - 16px);
  }
  .burger_item:not(:nth-child(3n+1)) {
    margin-left: 24px;
  }
  .burger_item:nth-child(n+4) {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .burger_item {
    width: 100%;
  }
  .burger_item:not(:nth-child(2n+1)) {
    margin-left: 0px;
  }
  .burger_item:nth-child(n+2) {
    margin-top: 24px;
  }
}

.burger_title {
  padding: 0.2rem;
  margin-bottom: 0.2rem;
  background: linear-gradient(transparent 50%, #ddcab5 50%);
}
.burger_title span {
  font-size: 12px;
  border-bottom: 1px solid #33272a;
}

.burger_info {
  color: #3e3e3e;
  font-size: 14px;
}
@media (min-width: 1200px) {
  .burger_info {
    margin-top: 28px;
    margin-right: 24px;
    text-align: right;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .burger_info {
    margin-top: 20px;
    text-align: right;
    margin-right: 16px;
  }
}
@media (max-width: 767px) {
  .burger_info {
    margin-top: 18px;
  }
}

@media (min-width: 1200px) {
  .side_item {
    width: calc(50% - 12px);
  }
  .side_item:not(:nth-child(2n+1)) {
    margin-left: 24px;
  }
  .side_item:nth-child(n+3) {
    margin-top: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .side_item {
    width: calc(50% - 12px);
  }
  .side_item:not(:nth-child(2n+1)) {
    margin-left: 24px;
  }
  .side_item:nth-child(n+3) {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .side_item {
    width: 100%;
  }
  .side_item:not(:nth-child(2n+1)) {
    margin-left: 0px;
  }
  .side_item:nth-child(n+2) {
    margin-top: 24px;
  }
}

.side_title {
  background: linear-gradient(transparent 50%, #f2c5a2 50%);
}

.cafe_menu {
  padding-bottom: 100px;
}

.cafe_content {
  display: flex;
}
@media (max-width: 767px) {
  .cafe_content {
    display: block;
  }
}

.cafe_image {
  width: 50%;
}
@media (max-width: 767px) {
  .cafe_image {
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .cafe_text {
    width: 50%;
    margin-left: 100px;
    position: relative;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .cafe_text {
    width: 50%;
    margin-left: 60px;
    position: relative;
  }
}
@media (max-width: 767px) {
  .cafe_text {
    margin-top: 40px;
  }
}

@media (min-width: 1200px) {
  .cafe_text-area {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .cafe_text-area {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}

.cafe_text-title {
  background: linear-gradient(transparent 50%, rgba(201, 138, 86, 0.737254902) 50%);
  font-size: 18px;
  font-weight: bold;
}
@media (min-width: 1200px) {
  .cafe_text-title {
    margin-bottom: 48px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .cafe_text-title {
    margin-bottom: 28px;
  }
}
@media (max-width: 767px) {
  .cafe_text-title {
    margin-bottom: 28px;
    text-align: center;
  }
}

.cafe_text-lead {
  font-weight: bold;
}

.cafe_text-lead2 {
  margin-top: 10px;
}

.cafe_menu-list {
  margin-top: 20px;
  background: rgba(250, 238, 231, 0.6);
  box-shadow: 0px 0px 0px 10px rgba(250, 238, 231, 0.6); /*線の外側*/
  border: dashed 2px rgba(201, 138, 86, 0.737254902); /*破線*/
  border-radius: 9px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 0.5em 0.5em 0.5em 2em;
}
@media (min-width: 1200px) {
  .cafe_menu-list {
    margin-top: 40px;
  }
}
.cafe_menu-list li {
  list-style: inside;
  line-height: 1.5;
  padding: 0.5em 0;
}

/*======================================================================================
  shop list
======================================================================================*/
.shop {
  margin: 100px 0;
}

.shop_lists {
  max-width: 800px;
  margin: 0 auto;
  justify-content: center;
}

.shop_list {
  padding: 30px 5px;
}
.shop_list:first-child {
  border-top: 1px solid #cecdcd;
}
.shop_list dt {
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .shop_list dt {
    font-size: 22px;
    width: 300px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .shop_list dt {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .shop_list dt {
    font-size: 18px;
  }
}
.shop_list dd {
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .shop_list dd {
    margin-left: 30px;
    width: calc(100% - 300px);
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .shop_list dd span {
    margin-left: 45px;
  }
}

@media (min-width: 1200px) {
  .shop_list-br {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .shop_list-br {
    display: none;
  }
}

@media (min-width: 1200px) {
  .shop_list-span {
    margin-left: 51px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .shop_list-span {
    margin-left: 44px;
  }
}
@media (max-width: 767px) {
  .shop_list-span {
    font-size: 16px;
  }
}

@media (min-width: 1200px) {
  .shop_list-span2 {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .shop_list-span2 {
    display: none;
  }
}
@media (max-width: 767px) {
  .shop_list-span2 {
    margin-left: 30px;
  }
}

.jelato {
  padding-bottom: 80px;
}

.burger {
  padding-bottom: 80px;
}