@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900");
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*-------------------------------------------------------------
メディアクエリ
-------------------------------------------------------------*/
/*-------------------------------------------------------------
デバイスサイズごとの表示切り替え
-------------------------------------------------------------*/
/*-------------------------------------------------------------
カラー設定
-------------------------------------------------------------*/
/*-------------------------------------------------------------
フォント設定
-------------------------------------------------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
  --scrollbar: 0;
  --scrollbarNum: 0;
}

html {
  font-size: 62.5%;
}

body {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin: 0;
  overflow-y: scroll;
}

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

video {
  overflow: hidden;
}

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

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type=text] {
  border: none;
  padding: 0;
  margin: 0;
}

hr {
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

input {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

main {
  position: relative;
  background-color: #FFF7F0;
}
main .main {
  width: 100%;
  max-width: 68rem;
  margin: 0 auto;
  background-color: #fff;
}

.main {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.6rem, 2.6470588235vw, 1.8rem);
  font-weight: 500;
  line-height: 2;
}
.main .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  padding: 0 2rem;
}
@media (min-width: 560px) {
  .main .container {
    gap: 4rem;
  }
}
.main video {
  width: 100%;
  height: 100%;
}

p {
  font-size: 1.5rem;
  text-align: left;
  margin-top: 1rem;
}
@media (min-width: 560px) {
  p {
    font-size: 1.6rem;
  }
}

h3 {
  font-family: "Zen Maru Gothic", serif;
  text-align: center;
  color: #EB6800;
  font-size: 2.5rem;
  line-height: 1.5;
}
h3 span {
  font-size: 1.6rem;
}
@media (min-width: 560px) {
  h3 {
    font-size: 3rem;
  }
}

.txt-sat {
  color: #005EAC;
}

.txt-sun {
  color: #E50012;
}

.show-sp {
  display: none;
}
@media (min-width: 560px) {
  .show-sp {
    display: block;
  }
}

@media (min-width: 560px) {
  .hide-sp {
    display: none !important;
  }
}

.ttl-02 {
  text-align: center;
  padding: 2rem 0;
}

.col_1 {
  text-align: center;
}
.col_1 .item-img {
  max-width: 47rem;
  margin: auto;
}

.col_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.col_2 .box {
  width: 100%;
}
.col_2 .box img {
  width: 100%;
}
@media (min-width: 560px) {
  .col_2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .col_2 .box {
    width: calc(50% - 1rem);
  }
}

.txt-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.txt-box .pict,
.txt-box p {
  width: 100%;
}
.txt-box .pict img {
  width: 100%;
}
@media (min-width: 560px) {
  .txt-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .txt-box .pict,
  .txt-box p {
    width: calc(50% - 1rem);
  }
}

.price {
  font-size: 3rem;
  text-align: center;
  margin: 0;
}
.price span {
  font-size: 1.5rem;
}

.link-btn_g {
  background-color: darkgrey;
  width: 300px;
  margin: 2rem auto 0;
  padding: 1.5rem;
  border-radius: 100px;
  text-align: center;
}
.link-btn_g a {
  color: #fff;
  letter-spacing: 2px;
}

.link-btn {
  background-color: #EB6800;
  width: 300px;
  margin: 2rem auto 0;
  padding: 1.5rem;
  border-radius: 100px;
  text-align: center;
}
.link-btn a {
  color: #fff;
  letter-spacing: 2px;
}

.border {
  padding-bottom: 2rem;
  border-bottom: 1px solid #DEDEDE;
}
@media (min-width: 560px) {
  .border {
    padding-bottom: 4rem;
  }
}

.mod-navigation .list-floor {
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
.mod-navigation .list-floor .list-item_1 {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mod-navigation .list-floor .list-item_1 p {
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.4rem;
  color: #EB6800;
  text-align: center;
  margin: 0 !important;
}
.mod-navigation .list-floor .list-item_2 {
  width: 70%;
}
.mod-navigation .list-floor .list-item_2 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.mod-navigation .list-floor .list-item_2 ul .item {
  width: calc(32% - 0.5rem);
}
@media (min-width: 560px) {
  .mod-navigation .list-floor {
    padding: 3rem;
  }
  .mod-navigation .list-floor .list-item_1 p {
    font-size: 2.5rem;
  }
}
.mod-navigation.scroll {
  padding: 0;
  margin-bottom: 0;
  width: 100%;
  max-width: 68rem;
  background-color: rgba(255, 255, 255, 0.831372549);
  -webkit-transition: top 0.5s ease;
  transition: top 0.5s ease;
  position: fixed;
  z-index: 2;
  top: -25rem;
}
@media (min-width: 560px) {
  .mod-navigation.scroll {
    top: -40rem;
  }
}
.mod-navigation.scroll .ttl {
  display: block;
  line-height: 0;
  text-align: center;
  margin: 2rem auto 1.6rem;
  max-width: 40rem;
  padding: 0 1.6rem;
}
.mod-navigation.scroll .ttl svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 277/18;
}
.mod-navigation.scroll .list-floor > .item {
  width: clamp(7.2rem, 15.1470588235vw, 10.3rem);
  height: clamp(7.2rem, 15.1470588235vw, 10.3rem);
}
.mod-navigation.scroll .list-floor > .item span,
.mod-navigation.scroll .list-floor > .item a {
  font-size: clamp(2.8rem, 5.8823529412vw, 4rem);
}
.mod-navigation.scroll .list-floor > .item.campaign01 {
  display: block;
}
.mod-navigation.scroll .link-btn {
  gap: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 560px) {
  .mod-navigation.scroll .link-btn {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.mod-navigation.scroll .link-btn > .item {
  border-radius: 0;
}
.mod-navigation.scroll .link-btn > .item > span,
.mod-navigation.scroll .link-btn > .item a {
  text-align: left;
}
.mod-navigation.scroll .link-btn > .item > span > span,
.mod-navigation.scroll .link-btn > .item a > span {
  padding: 0.8rem 1.2rem;
}
@media (min-width: 560px) {
  .mod-navigation.scroll .link-btn > .item > span > span,
  .mod-navigation.scroll .link-btn > .item a > span {
    padding: 2.1rem 2rem;
  }
}
.mod-navigation.scroll.fixed {
  top: 0;
}

.area-fv .fv {
	background-image: url(./../img/fv_2.jpg);
  	background-size: cover;
  	position: relative;
}
.area-fv .fv h2 {
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 42rem;
}

.area-fv .fv h2 svg {
  width: 280px;
}
.area-fv .fv .scroll_btn {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 120px;
}
.area-fv .fv .scroll_btn svg {
  width: 93px;
}
@media (min-width: 560px) {
  .area-fv .fv h2 {
    text-align: center;
    padding-top: 15rem;
    padding-bottom: 70rem;
  }
  .area-fv .fv h2 svg {
    width: 451px;
  }
  .area-fv .fv .scroll_btn {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 180px;
    -webkit-animation: fluffy 3s infinite;
            animation: fluffy 3s infinite;
  }
  .area-fv .fv .scroll_btn svg {
    width: 122px;
  }
}

/* ----- ここから本体内容 ----- */

.area-mikyan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #FFF7F0;
  background-image: url(./../img/bg.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
}
.area-mikyan .box-img {
  max-width: 408px;
  margin: 5rem 0 4rem 5rem;
}

.area-beni,
.area-seto,
.area-hama,
.area-aji,
.area-hinomaru,
.area-ehime,
.area-sppare {
  background-image: url(./../img/bg_w.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  margin-bottom: 4rem;
}
.area-beni .ttl-02 svg,
.area-seto .ttl-02 svg,
.area-hama .ttl-02 svg,
.area-aji .ttl-02 svg,
.area-hinomaru .ttl-02 svg,
.area-ehime .ttl-02 svg,
.area-sppare .ttl-02 svg {
  height: 6rem;
}
@media (min-width: 560px) {
  .area-beni .ttl-02 svg,
  .area-seto .ttl-02 svg,
  .area-hama .ttl-02 svg,
  .area-aji .ttl-02 svg,
  .area-hinomaru .ttl-02 svg,
  .area-ehime .ttl-02 svg,
  .area-sppare .ttl-02 svg {
    height: 7.2rem;
  }
}

.others {
  background-image: url(./../img/bg_w.png), url(./../img/bg_w_b.png);
  background-repeat: no-repeat, no-repeat;
  background-position: top center, bottom center;
  background-size: contain, contain;
  padding-bottom: 5rem;
}
.others .box-img {
  padding: 8rem 0 0;
}
.others p {
  font-family: "Zen Maru Gothic", serif;
  font-size: 2.2rem;
  text-align: center;
}

.area-footer {
  padding: 4rem 0 5rem;
}
.area-footer .txt-comment {
  font-size: clamp(1.2rem, 2.0588235294vw, 1.4rem);
  margin-bottom: 2em;
}
.area-footer .txt-center {
  text-align: center;
}
.area-footer .txt-center .back-btn {
  font-size: 1.6rem;
  font-weight: bold;
  color: #000;
  border-bottom: 1px solid;
  letter-spacing: 1px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 560px) {
  .area-footer .txt-center .back-btn {
    font-size: 1.8rem;
  }
}
.area-footer .txt-center .back-btn:hover {
  opacity: 0.5;
}

.fade-in {
  opacity: 0;
  -webkit-transform: translateY(3rem);
          transform: translateY(3rem);
  -webkit-transition: opacity 1s, -webkit-transform 1.3s;
  transition: opacity 1s, -webkit-transform 1.3s;
  transition: opacity 1s, transform 1.3s;
  transition: opacity 1s, transform 1.3s, -webkit-transform 1.3s;
}
.fade-in.is-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}


@media (min-width: 560px) {
/*
	.area-fv .fv .sec-image .kankitsu-heading {
		position: relative;
		width: 402px;
		top: -132px;
		left: 0;
		visibility: hidden;
	}
*/

	
	.area-icecream,
	.area-yogurtfourseasons,
	.area-minamishikokufarm,
	.area-anpatisserienanoka,
	.area-jaehimechuo,
	.area-fruitsenchante {
		background-image: url(./../img/bg_w.png);
		background-repeat: no-repeat;
		background-position: top center;
		background-size: contain;
		margin-bottom: 4rem;
	}
	
	.area-icecream .ttl-02 img {
		width: 418px;
		height: 68px;
	}
	
	.area-yogurtfourseasons .ttl-02 img {
		width: 418px;
		height: 68px;
	}
	
	.area-minamishikokufarm .ttl-02 img {
		width: 267px;
		height: 68px;
	}
	
	.area-anpatisserienanoka .ttl-02 img {
		width: 369px;
		height: 68px;
	}
	
	.area-jaehimechuo .ttl-02 img {
		width: 265px;
		height: 68px;
	}
	
	.area-jaehimechuo .sec-cmn .container .col-set .col_1 h3 {
		display: inline-block;
	}
	
	.area-jaehimechuo .sec-cmn .container .col-set .col_1 h3 .local-txt-setting00 {
		display: inline-block;
		font-size: 1.6rem;
		vertical-align: middle;
	}
	
	.area-jaehimechuo .sec-cmn .container .col-set .col_1 h3 .local-txt-setting01 {
		vertical-align:bottom;
	}
	
	.area-fruitsenchante .ttl-02 img {
		width: 245px;
		height: 68px;
	}
	
	.circleborder {
		display: inline-block;
		border: 1px solid;
		width: 30px;
		height: 30px;
		border-radius: 50%;
		margin-right: 8px;
	}
	
	.space {
		font-size: inherit;
		letter-spacing: -0.17em;
	}
	
}