@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
html, body, h1, h2, h3, h4, h5, h6, p,
ul, ol, li, dl, dt, dd, a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: normal;
  line-height: 1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}

/*a:hover { opacity:0.7;filter:alpha(opacity=70);-ms-filter: "alpha( opacity=70 )"; }*/
li {
  list-style: none;
}

img {
  max-width: 100%;
}

button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  outline: none;
}

html {
  font-size: 62.5%;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #231815;
  background: #fff;
  overflow-x: hidden;
}

.pcv {
  display: none;
}

.spv {
  display: block;
}

@media (min-width: 768px) {
  .pcv {
    display: block;
  }
  .spv {
    display: none;
  }
}
.floL {
  float: left;
}

.floR {
  float: right;
}

.clear {
  content: "";
  display: table;
  clear: both;
  zoom: 1;
}

.ph-img {
  width: 100%;
  height: auto;
}

.robo {
  font-family: "Roboto", sans-serif;
}

/*********************************************************************************************

	TEST

**********************************************************************************************/
@media (min-width: 0) {
  .testA {
    background-color: #000;
  }
}
@media (min-width: 576px) {
  .testA {
    background-color: #889;
  }
}
@media (min-width: 768px) {
  .testA {
    background-color: #a12;
  }
}
@media (min-width: 992px) {
  .testA {
    background-color: #9c0;
  }
}
@media (min-width: 1200px) {
  .testA {
    background-color: #969;
  }
}
/*********************************************************************************************

	基本・メニュー

**********************************************************************************************/
:root {
  --sidebar-width: 285px;
}

.container_page {
  width: auto;
  transition: transform 0.3s;
}

#main-menu {
  position: fixed;
  background-color: #312B25;
  color: #fff;
  max-height: 100vh;
  overflow-y: auto;
  z-index: 2000;
  pointer-events: auto;
  transition: all 0.3s ease-in-out;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE, Edge */
}

#main-menu::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

@media (max-width: 767px) {
  #main-menu {
    width: 93%;
    max-width: 400px;
    height: auto;
    max-height: 90vh;
    border-radius: 30px;
    top: 2%;
    left: 50%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) scale(0.9);
    transition: opacity 0.3s ease-in-out, visibility 0.3s, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  #main-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
  }
  .is-open-active #hamburger-btn {
    top: 30px;
    left: 30px;
  }
}
@media (min-width: 768px) {
  #main-menu {
    top: 0 !important;
    left: 0 !important;
    width: var(--sidebar-width) !important;
    height: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    border-radius: 0 !important;
  }
  /* ▼下層（=全 md）はスライド式 */
  body #main-menu {
    transform: translateX(calc(-1 * var(--sidebar-width)));
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
  }
  body #main-menu.is-open {
    transform: translateX(0);
  }
  body #drawer-overlay {
    display: block !important;
  }
  /* ▼ハンバーガー位置 */
  #hamburger-btn {
    width: 60px;
    height: 60px;
    background-size: 100%;
    top: 10px;
    left: 10px;
  }
}
@media (min-width: 992px) {
  #main-menu {
    top: 0 !important;
    left: 0 !important;
    width: var(--sidebar-width) !important;
    height: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    border-radius: 0 !important;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
  }
  /* ▼PC 下層 → スライド式 */
  body:not(.is-pc-top-page) #main-menu {
    transform: translateX(calc(-1 * var(--sidebar-width)));
  }
  body:not(.is-pc-top-page) #main-menu.is-open {
    transform: translateX(0);
  }
  body:not(.is-pc-top-page) #drawer-overlay {
    display: block !important;
  }
  /* ▼PC トップ → 固定 */
  body.is-pc-top-page #main-menu {
    transform: translateX(0) !important;
    padding-top: calc(var(--header-height) + 1rem);
  }
  body.is-pc-top-page #drawer-overlay {
    display: none !important;
  }
  body.is-pc-top-page #hamburger-btn {
    display: none !important;
  }
  body.is-pc-top-page #main-content-wrapper {
    margin-left: var(--sidebar-width);
    padding-top: var(--header-height);
    min-height: 100vh;
  }
}
.no-scroll {
  overflow: hidden !important;
}

#hamburger-btn {
  position: fixed;
  top: 10px;
  left: 1rem;
  z-index: 2100;
  cursor: pointer;
  transition: all 0.15s;
  background-image: url(../img/btn_menu.png);
  background-repeat: no-repeat;
  background-position: center;
  width: 50px;
  height: 50px;
  background-size: 100%;
}

.is-open-active #hamburger-btn {
  background-image: url(../img/btn_menu_close.png);
}

@media (min-width: 768px) {
  #hamburger-btn {
    width: 60px;
    height: 60px;
    background-size: 100%;
    top: 10px;
    left: 10px;
  }
}
@media (min-width: 992px) {
  body.is-pc-top-page #hamburger-btn {
    display: none !important;
  } /* PCトップページ用 */
}
/* ------------------------------------
 * オーバーレイ
* ------------------------------------ */
#drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
  pointer-events: none;
}

.is-open-active #drawer-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ------------------------------------
 * SideMenu
* ------------------------------------ */
/* サイトロゴ */
.siteid {
  width: 100%;
  text-align: center;
}
.siteid img {
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .siteid img {
    width: 93%;
    height: auto;
  }
}
/* ナビ */
.nav_s {
  margin: 0 30px 15px 30px;
}
.nav_s li {
  margin: 0;
}
.nav_s li a {
  display: block;
  padding: 10px 0 10px 30px;
  position: relative;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 500;
}
.nav_s li a::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../img/ico_eye.png) 0 0 no-repeat;
  background-size: 100%;
  position: absolute;
  top: 9px;
  left: 0;
}
.nav_s li:nth-child(2) a::before {
  background: url(../img/ico_pin.png) 0 0 no-repeat;
  background-size: 100%;
}

.nav_g {
  margin: 0 30px 25px 30px;
}
.nav_g li {
  margin: 0 0 10px;
}
.nav_g li a {
  display: block;
  padding: 10px 0 10px 15px;
  position: relative;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 500;
}
.nav_g li a::before {
  content: "";
  width: 3px;
  height: 100%;
  background: #C9B59A;
  position: absolute;
  top: 0px;
  left: 0;
}
.nav_g li a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.l-bnr {
  margin: 0 30px 30px 30px;
}
.l-bnr li {
  margin: 0 0 10px;
}
.l-bnr li a:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "alpha( opacity=80 )";
}

@media (min-width: 768px) {
  .nav_g li {
    margin: 0 0 2px;
  }
}
/*********************************************************************************************

	FOOTER

**********************************************************************************************/
#footer {
  background-color: #005EAD;
  text-align: center;
  color: #fff;
  padding: 15px 0;
}
#footer p {
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 400;
}

/* 後で使用するかも */
#page_top {
  display: block;
  position: fixed;
  bottom: 20%;
  right: 50px;
  opacity: 1;
  z-index: 500;
}

#page_top a {
  display: block;
  text-decoration: none;
  position: relative;
  font-size: 1.2rem;
}
#page_top a span {
  position: relative;
  padding: 55px 0 0 0;
}
#page_top a span::after {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background: url(../img/pagetop.png) 0 0 no-repeat;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 7px;
}

/*********************************************************************************************

	ASIDE - お問い合わせ

**********************************************************************************************/
aside {
  text-align: center;
  color: #005EAD;
}
aside p {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 500;
}
aside .as-tel {
  margin: 25px 0;
}
aside .as-tel img {
  width: 70%;
  height: auto;
}

.aside-inner {
  margin: 0 5%;
  padding: 40px 0;
}
.aside-inner img {
  margin: 0 auto;
  width: 90%;
  height: auto;
}

.container_top aside {
  box-shadow: 0 -4px 4px -4px #bfbfbf;
}

.container_top .aside-inner {
  padding: 80px 0;
}

@media (min-width: 768px) {
  aside p {
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: 500;
  }
  aside .as-tel {
    margin: 25px 0;
  }
  aside .as-tel img {
    width: auto;
    height: auto;
  }
  .aside-inner {
    margin: 0;
    padding: 60px 0;
  }
  .aside-inner img {
    margin: 0 auto;
    width: auto;
    height: auto;
  }
}
/* ------------------------------------
 * banner
* ------------------------------------ */
.bnr-area {
  background-color: #312B25;
  padding: 30px 0;
}
.bnr-area.is-single {
  padding: 40px 0;
}

.bnr-area_inner {
  margin: 0 25px;
}

.link-site {
  display: flex;
  gap: 15px;
  flex-direction: column;
  margin: 0 0;
}
.link-site li {
  flex-grow: 1;
}
.link-site li a:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "alpha( opacity=80 )";
}

@media (min-width: 768px) {
  .bnr-area_inner {
    width: auto;
    margin: 0 3%;
  }
  .link-site {
    gap: 32px;
    flex-direction: row;
    margin: 0;
  }
}
@media (min-width: 992px) {
  .bnr-area {
    padding: 60px 0;
  }
  .bnr-area.is-single {
    padding: 80px 0;
  }
  .bnr-area_inner {
    max-width: 1076px;
    margin: 0 auto;
  }
  .link-site {
    gap: 32px;
    flex-direction: row;
    margin: 0;
  }
}
/* ページリンク */
.link-page {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0 0 40px;
}
.link-page li {
  background-color: #FBDDD0;
  border: 2px solid #ccc;
}
.link-page li a {
  display: flex;
  gap: 24px;
  align-items: center;
}
.link-page li a:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "alpha( opacity=80 )";
}
.link-page li img {
  width: auto;
  height: 90px;
}
.link-page li p {
  font-size: 1.8rem;
  font-weight: 500;
  color: #EA5413;
}
.link-page li.l-con2 {
  background-color: #E1D7CD;
}
.link-page li.l-con2 p {
  color: #6A3906;
}
.link-page li.l-con3 {
  background-color: #F5D9E6;
}
.link-page li.l-con3 p {
  color: #CC4280;
}
.link-page li.l-con4 {
  background-color: #DED6DF;
}
.link-page li.l-con4 p {
  color: #583060;
}
.link-page li.l-con5 {
  background-color: #CCECFB;
}
.link-page li.l-con5 p {
  color: #00A0E9;
}

@media (min-width: 768px) {
  .link-page {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 0 80px;
  }
  .link-page li a {
    gap: 28px;
  }
  .link-page li img {
    width: auto;
    height: 90px;
  }
  .link-page li p {
    font-size: 2rem;
  }
}
/*********************************************************************************************

	MAIN - TOP

**********************************************************************************************/
#hero-top {
  height: 100vh;
  width: 100%;
  background-image: url(../img/top_mv_sp.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 300;
}

@media (min-width: 992px) {
  #hero-top {
    background-image: url(../img/top_mv_pc.png);
    background-size: cover;
    background-position: center 0;
    overflow: hidden;
  }
}
/* ------------------------------------
 * MV
* ------------------------------------ */
.mv-slider-container {
  display: none;
}

@media (min-width: 768px) {
  .mv-slider-container {
    display: block;
    position: relative;
    z-index: 2;
    height: 100vh;
  }
  .slider-circle {
    position: absolute;
    overflow: hidden;
    z-index: 10;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
  }
  .slider-large {
    min-width: 12vw;
    max-width: 19vw;
    top: 9%;
    left: 17%;
  }
  .slider-small {
    min-width: 9vw;
    max-width: 16vw;
    bottom: 28px;
    left: 0;
  }
  .box-slide_b {
    width: 20vw;
    height: 18vw;
    display: block;
    position: absolute;
    bottom: 9%;
    right: 20%;
  }
  .box-slide_inner {
    position: relative;
    height: 100%;
  }
  #img-maru {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 30;
    max-width: 8vw;
  }
  .slider-circle .slick-list,
  .slider-circle .slick-track {
    height: 100%;
  }
  .slide-item {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
/* ------------------------------------
 * 寄り添う
* ------------------------------------ */
#tp-about {
  background: url(../img/bg_about.jpg) 0 0 repeat;
  background-size: 15%;
  padding: 100px 0 120px;
}
#tp-about .is-arw {
  text-align: center;
}
#tp-about .is-arw a {
  height: 42px;
  line-height: 42px;
  border-radius: 22px;
}
#tp-about .is-arw a span {
  padding: 0 38px 0 22px;
}
#tp-about .is-arw a span::after {
  top: 5px;
  right: 20px;
}

.tp-about_inner {
  margin: 0 5%;
}

.about-img {
  width: 100%;
  margin: 20px 0;
  text-align: center;
}

.about-txt {
  width: 100%;
}
.about-txt h2 {
  margin: 0 0 40px;
}
.about-txt h2 img {
  width: 80%;
  height: 90px;
}
.about-txt p {
  font-size: 1.5rem;
  line-height: 2;
  font-weight: 400;
  margin: 0 0 1.5em;
}

@media (min-width: 768px) {
  #tp-about .is-arw {
    text-align: left;
  }
  .tp-about_inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    margin: 0 auto;
    max-width: 1076px;
    padding-left: 40px;
  }
  .about-img {
    width: 55%;
  }
  .about-txt {
    width: 44%;
  }
  .about-txt h2 {
    margin: 0 0 40px;
  }
  .about-txt h2 img {
    width: 100%;
    height: auto;
  }
  .about-txt p {
    font-size: 1.6rem;
    line-height: 2.4;
    margin: 0;
  }
  .about-txt .btn {
    margin-top: 40px;
  }
}
/* ------------------------------------
 * 産地マップ
* ------------------------------------ */
#tp-map {
  padding: 50px 0 30px;
  position: relative;
}
#tp-map h2 {
  text-align: center;
}
#tp-map h2 img {
  width: 75%;
  height: auto;
}

.tp-map_sp {
  padding: 140% 20px 45px;
  background-image: url(../img/tp_map_sp.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 90%;
  position: relative;
}

.tp-map_pc {
  display: none;
}

.tp-map_pc2 {
  display: none;
}

.tp-map_inner {
  display: none;
}

.num {
  display: block;
  text-indent: -9999px;
  width: 15px;
  height: 15px;
  width: 4vw;
  height: 4vw;
  border-radius: 50%;
  position: absolute;
}

#sp_1 {
  bottom: 13%;
  left: 34%;
}

#sp_2 {
  bottom: 24%;
  left: 52%;
}

#sp_3 {
  bottom: 40.7%;
  left: 54%;
}

#sp_4 {
  top: 46%;
  right: 33.2%;
}

#sp_5 {
  top: 48%;
  right: 36.3%;
}

#sp_6 {
  top: 50%;
  right: 38.5%;
}

#sp_7 {
  top: 35%;
  right: 29%;
}

#sp_8 {
  top: 35.8%;
  left: 30%;
}

#sp_9 {
  top: 40%;
  left: 30%;
}

@media (min-width: 768px) {
  .num {
    width: 30px;
    height: 30px;
    width: 3.5vw;
    height: 3.5vh;
  }
  #sp_1 {
    bottom: 12.5%;
    left: 34%;
  }
  #sp_2 {
    bottom: 23.8%;
    left: 52%;
  }
  #sp_7 {
    top: 35%;
    right: 29%;
  }
  #sp_8 {
    top: 35%;
    left: 30%;
  }
}
@media (min-width: 992px) {
  #tp-map {
    padding: 120px 0 100px;
    position: relative;
  }
  #tp-map h2 {
    position: absolute;
    top: 11%;
    left: 8.5%;
  }
  #tp-map h2 img {
    width: auto;
    height: auto;
  }
  .tp-map_sp {
    display: none;
  }
  .tp-map_pc {
    display: block;
    width: 1155px;
    height: 900px;
    margin: 0 auto;
    position: relative;
    background-image: url(../img/tp_map.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
  }
  .tp-map_pc a {
    position: absolute;
  }
  .tp-map_pc a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .tp-map_pc a:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
    -ms-filter: "alpha( opacity=80 )";
  }
  .tp-map_inner {
    display: block;
    width: 100%;
    max-width: 1155px;
    height: 0;
    padding-top: 65.2%;
    margin: 0 auto;
    position: relative;
  }
  .tp-map_inner a {
    position: absolute;
  }
  .tp-map_inner a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .tp-map_inner a:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
    -ms-filter: "alpha( opacity=80 )";
  }
}
.base_map img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: none;
  object-fit: contain;
}

#m-01 {
  transform: translate(-50%, -50%);
  bottom: 15.2%;
  left: 21%;
  width: 20.3472222222vw;
  height: 9.8611111111vw;
}
@media (min-width: 1440px) {
  #m-01 {
    width: 293px;
    height: 142px;
  }
}
@media (min-width: 1440px) {
  #m-01 {
    transform: translate(calc(-50% - 30px), calc(-50% - 15px));
  }
}

#m-02 {
  transform: translate(-50%, -50%);
  bottom: -5.2%;
  left: 24%;
  width: 22.4305555556vw;
  height: 8.4027777778vw;
}
@media (min-width: 1440px) {
  #m-02 {
    width: 323px;
    height: 121px;
  }
}

#m-03 {
  transform: translate(-50%, -50%);
  bottom: -5%;
  right: -11%;
  width: 25.4166666667vw;
  height: 7.6388888889vw;
}
@media (min-width: 1440px) {
  #m-03 {
    width: 366px;
    height: 110px;
  }
}

#m-04 {
  transform: translate(-50%, -50%);
  top: 27.2%;
  right: -16%;
  width: 25.4166666667vw;
  height: 7.6388888889vw;
}
@media (min-width: 1440px) {
  #m-04 {
    width: 366px;
    height: 110px;
  }
}

#m-05 {
  transform: translate(-50%, -50%);
  top: 48.5%;
  right: -9%;
  width: 18.8888888889vw;
  height: 7.6388888889vw;
}
@media (min-width: 1440px) {
  #m-05 {
    width: 272px;
    height: 110px;
  }
}

#m-06 {
  transform: translate(-50%, -50%);
  bottom: 13%;
  right: -16%;
  width: 25.4166666667vw;
  height: 8.4027777778vw;
}
@media (min-width: 1440px) {
  #m-06 {
    width: 366px;
    height: 121px;
  }
}

#m-07 {
  transform: translate(-50%, -50%);
  top: 6%;
  right: 1%;
  width: 19.1666666667vw;
  height: 7.6388888889vw;
}
@media (min-width: 1440px) {
  #m-07 {
    width: 276px;
    height: 110px;
  }
}

#m-08 {
  transform: translate(-50%, -50%);
  top: 21%;
  left: 19%;
  width: 22.2222222222vw;
  height: 8.4027777778vw;
}
@media (min-width: 1440px) {
  #m-08 {
    width: 320px;
    height: 121px;
  }
}

#m-09 {
  transform: translate(-50%, -50%);
  top: 42.5%;
  left: 16.5%;
  width: 17.9166666667vw;
  height: 7.6388888889vw;
}
@media (min-width: 1440px) {
  #m-09 {
    width: 258px;
    height: 110px;
  }
}

/* ------------------------------------
 * 各ページへ
* ------------------------------------ */
.tp-cont_box {
  margin: 0 20px 20px;
  height: 540px;
  background-repeat: no-repeat;
  background-position: center 0;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  background-size: 100%;
}

/* 背景写真 */
#cont1 {
  background-image: url(../img/tp_con11_b.png);
}

#cont2 {
  background-image: url(../img/tp_con12_b.png);
}

#cont3 {
  background-image: url(../img/tp_con13_b.png);
}

#cont4 {
  background-image: url(../img/tp_con14_b.png);
}

#cont5 {
  background-image: url(../img/tp_con15_b.png);
}

#cont6 {
  background-image: url(../img/tp_con16_b.png);
}

#cont7 {
  background-image: url(../img/tp_con17_b.png);
}

#cont8 {
  background-image: url(../img/tp_con18_b.png);
}

#cont9 {
  background-image: url(../img/tp_con19_b.png);
}

@media (min-width: 768px) {
  .tp-cont_box {
    margin: 0;
    width: 100%;
    height: 300px;
    background-repeat: no-repeat;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    background-size: auto 100%;
  }
  #cont1 {
    background-image: url(../img/tp_con11.png);
    background-position: 90% center;
  }
  #cont2 {
    background-image: url(../img/tp_con12.png);
    background-position: 30% center;
  }
  #cont3 {
    background-image: url(../img/tp_con13.png);
  }
  #cont4 {
    background-image: url(../img/tp_con14.png);
    background-position: 30% center;
  }
  #cont5 {
    background-image: url(../img/tp_con15.png);
  }
  #cont6 {
    background-image: url(../img/tp_con16.png);
    background-position: 40% center;
  }
  #cont7 {
    background-image: url(../img/tp_con17.png);
  }
  #cont8 {
    background-image: url(../img/tp_con18.png);
  }
  #cont9 {
    background-image: url(../img/tp_con19.png);
    background-position: 80% center;
  }
}
@media (min-width: 992px) {
  .tp-cont_box {
    height: 360px;
    background-position: right center;
    background-size: auto 100%;
  }
}
@media (min-width: 1920px) {
  #cont1 {
    background-position: 90% center;
  }
  #cont2 {
    background-position: 90% center;
  }
  #cont3 {
    background-position: 90% center;
  }
  #cont4 {
    background-position: 80% center;
  }
  #cont5 {
    background-position: 70% center;
  }
  #cont6 {
    background-position: 80% center;
  }
  #cont7 {
    background-position: 70% center;
  }
  #cont8 {
    background-position: 90% center;
  }
  #cont9 {
    background-position: 60% center;
  }
}
/* 円背景 */
.tp-cont_box::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/tp_r1_b.png);
  background-size: 100% 50%;
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
}

#cont3.tp-cont_box::before {
  background-image: url(../img/tp_r2_b.png);
}

#cont4.tp-cont_box::before,
#cont5.tp-cont_box::before,
#cont6.tp-cont_box::before {
  background-image: url(../img/tp_r3_b.png);
}

#cont7.tp-cont_box::before {
  background-image: url(../img/tp_r4_b.png);
}

#cont8.tp-cont_box::before,
#cont9.tp-cont_box::before {
  background-image: url(../img/tp_r5_b.png);
}

@media (min-width: 768px) {
  .tp-cont_box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/tp_r1.png);
    background-size: auto;
    background-position: left center;
    background-repeat: no-repeat;
    z-index: 1;
  }
  .is-reverse {
    justify-content: end;
  }
  .is-reverse .con-inner {
    margin-right: 30px;
  }
  .is-reverse::before {
    background-position: left center;
    transform: scaleX(-1);
  }
  #cont3.tp-cont_box::before {
    background-image: url(../img/tp_r2.png);
  }
  #cont4.tp-cont_box::before,
  #cont5.tp-cont_box::before,
  #cont6.tp-cont_box::before {
    background-image: url(../img/tp_r3.png);
  }
  #cont7.tp-cont_box::before {
    background-image: url(../img/tp_r4.png);
  }
  #cont8.tp-cont_box::before,
  #cont9.tp-cont_box::before {
    background-image: url(../img/tp_r5.png);
  }
}
.con-inner {
  z-index: 30;
  height: 45%;
}
.con-inner h2 {
  margin: 15px 0;
}
.con-inner h3 {
  font-size: 1.5rem;
  color: #EA5413;
  position: relative;
  margin: 0 0 5px;
}
.con-inner h3::before {
  content: "●";
  display: inline-block;
  margin-right: 3px;
}
.con-inner p {
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 400;
}

@media screen and (max-width: 799px) {
  .con-inner {
    text-align: center;
    width: 100%;
    position: absolute;
    top: 54%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .tp-cont_box .btn {
    position: absolute;
    bottom: 15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media (min-width: 768px) {
  .con-inner {
    width: 320px;
    height: auto;
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: none;
    transform: none;
    z-index: 30;
    margin-left: 30px;
  }
  .con-inner h2 {
    margin: 25px 0;
  }
  .con-inner h3 {
    font-size: 1.5rem;
    color: #EA5413;
    position: relative;
    margin: 0 0 5px;
  }
  .con-inner h3::before {
    content: "●";
    display: inline-block;
    margin-right: 3px;
  }
  .con-inner p {
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 400;
  }
  .tp-cont_box .btn {
    margin-top: 20px;
    position: relative;
    bottom: auto;
    left: auto;
    -webkit-transform: none;
    transform: none;
  }
}
.c-area {
  color: #EA5413;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
}

.sp-number {
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  background-color: #EA5413;
  color: #fff;
  margin: 0 0 5px;
}

#cont3 .c-area {
  color: #6A3906;
}
#cont3 .sp-number {
  background-color: #6A3906;
}
#cont3 .con-inner h3 {
  color: #6A3906;
}

#cont4 .c-area,
#cont5 .c-area,
#cont6 .c-area {
  color: #CC4280;
}
#cont4 .sp-number,
#cont5 .sp-number,
#cont6 .sp-number {
  background-color: #CC4280;
}
#cont4 .con-inner h3,
#cont5 .con-inner h3,
#cont6 .con-inner h3 {
  color: #CC4280;
}

#cont7 .c-area {
  color: #583060;
}
#cont7 .sp-number {
  background-color: #583060;
}
#cont7 .con-inner h3 {
  color: #583060;
}

#cont8 .c-area,
#cont9 .c-area {
  color: #00A0E9;
}
#cont8 .sp-number,
#cont9 .sp-number {
  background-color: #00A0E9;
}
#cont8 .con-inner h3,
#cont9 .con-inner h3 {
  color: #00A0E9;
}

@media (min-width: 768px) {
  .c-area {
    background-color: #EA5413;
    color: #fff;
    display: inline-block;
    padding: 0 20px;
    border-radius: 2px;
    height: 34px;
    line-height: 34px;
  }
  .sp-number {
    display: none;
  }
  #cont3 .c-area {
    background-color: #6A3906;
    color: #fff;
  }
  #cont4 .c-area,
  #cont5 .c-area,
  #cont6 .c-area {
    background-color: #CC4280;
    color: #fff;
  }
  #cont7 .c-area {
    background-color: #583060;
    color: #fff;
  }
  #cont8 .c-area,
  #cont9 .c-area {
    background-color: #00A0E9;
    color: #fff;
  }
}
.c-name svg path {
  fill: #534B40;
}

.c-name_svg {
  height: 30px;
}

#cont1 .c-name_svg {
  width: 127px;
}

#cont2 .c-name_svg {
  width: 197px;
}

#cont3 .c-name_svg {
  width: 153px;
}

#cont4 .c-name_svg {
  width: 153px;
}

#cont5 .c-name_svg {
  width: 123px;
}

#cont6 .c-name_svg {
  width: 274px;
}

#cont7 .c-name_svg {
  width: 128px;
}

#cont8 .c-name_svg {
  width: 152px;
}

#cont9 .c-name_svg {
  width: 122px;
}

/* ------------------------------------
 * 関連リンク
* ------------------------------------ */
#tp-link h2 {
  background-color: #C9B59A;
  text-align: center;
}
#tp-link h2 img {
  width: 36%;
  height: auto;
}
#tp-link h2 {
  padding: 20px 0;
  margin-bottom: 2px;
}
#tp-link .is-white {
  text-align: center;
}

@media (min-width: 768px) {
  #tp-link h2 {
    text-align: left;
  }
  #tp-link h2 img {
    width: 180px;
  }
  #tp-link h2 {
    padding: 20px 0 20px 50px;
  }
  #tp-link .is-white {
    text-align: left;
  }
}
.tp-link_box {
  background: rgba(201, 181, 154, 0.7);
  margin: 0 0 4px;
  padding: 5% 5% 30px 5%;
}

.tp-link_img {
  width: 100%;
  text-align: center;
}

.tp-link_txt {
  width: 100%;
}
.tp-link_txt h3 {
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 500;
  margin: 10px 0;
}
.tp-link_txt p {
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 400;
  margin: 0 0 30px;
}

@media (min-width: 768px) {
  .tp-link_box {
    margin: 0 0 2px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    padding: 20px 0 20px 30px;
    align-items: center;
  }
  .tp-link_img {
    width: 50%;
  }
  .tp-link_txt {
    width: 48%;
  }
  .tp-link_txt h3 {
    margin: 0 0 30px;
  }
  .tp-link_txt p {
    margin: 0 0 30px;
  }
}
@media (min-width: 992px) {
  .tp-link_box {
    padding: 0 0 0 50px;
  }
  .tp-link_img {
    width: 578px;
  }
  .tp-link_txt {
    width: calc(100% - 638px);
  }
  .tp-link_txt h3 {
    margin: 0 0 30px;
  }
  .tp-link_txt p {
    margin: 0 0 30px;
  }
}
/* ------------------------------------
 * 紹介動画
* ------------------------------------ */
#tp-mov {
  text-align: center;
  padding: 80px 0;
}
#tp-mov h2 img {
  width: 40%;
  height: auto;
}
#tp-mov h2 {
  margin-bottom: 25px;
}

.tp-mov {
  display: flex;
  flex-direction: column;
}
.tp-mov li {
  width: auto;
  margin: 0 16px 30px;
  text-align: center;
}
.tp-mov li p {
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 400;
  margin-top: 10px;
}
.tp-mov li img {
  margin: 0 auto;
}

@media (min-width: 768px) {
  #tp-mov {
    text-align: center;
    padding: 80px 0;
  }
  #tp-mov h2 img {
    width: 180px;
  }
  #tp-mov h2 {
    margin-bottom: 25px;
  }
  .tp-mov {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    max-width: 1076px;
    margin: 0 auto;
    padding: 0 30px;
  }
  .tp-mov::before {
    content: "";
    flex-basis: 100%;
    order: 1;
  }
  .tp-mov li {
    /*
    width: calc(50% - 16px);
    */
    flex: 0 1 calc(50% - 32px);
  }
  .tp-mov li img {
    margin: 0 auto;
    width: auto;
    height: auto;
  }
  .tp-mov li p {
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 400;
    margin-top: 16px;
  }
  .tp-mov li.mov_1 {
    order: 0;
    margin-bottom: 32px;
  }
  .tp-mov li.mov_2 {
    order: 2;
  }
}
/* ------------------------------------
  モーダルウィンドウ
* ------------------------------------ */
.modal-wrapper {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.modal-wrapper.is-active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  opacity: 1;
}

.modal-content {
  background-color: #fefefe;
  padding: 40px 20px 20px 20px;
  border-radius: 8px;
  width: 80%;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  max-height: 95vh;
  overflow-y: auto;
}

@media (min-width: 768px) {
  .modal-content {
    max-width: 800px;
    width: 95%;
  }
}
/* 閉じるボタン */
.modal-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 15px;
  z-index: 100;
  cursor: pointer;
}

.modal-close:hover,
.modal-close:focus {
  color: #333;
  text-decoration: none;
  cursor: pointer;
}

/* ------------------------------------
 * YouTubeのレスポンシブ対応
* ------------------------------------ */
.video-container {
  /* 縦横比 16:9 */
  position: relative;
  padding-bottom: 56.25%; /* 9 / 16 = 0.5625 */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-trigger {
  cursor: pointer;
}

.modal-trigger img {
  max-width: 100%;
  height: auto;
  display: block;
}

/*********************************************************************************************

	PAGE - HERO

**********************************************************************************************/
.mv-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 230px;
}

.mv-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/about_bg.jpg);
  background-repeat: no-repeat;
  background-position: center 35%;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .mv-container {
    padding-top: 35.07%;
    height: auto;
  }
  .mv-content {
    background-position: center center;
  }
}
.p-shigaraki .mv-content {
  background-image: url(../img/p1_mv.png);
}

.p-kokahinoseiyaku .mv-content {
  background-image: url(../img/p2_mv.png);
}

.p-asaorimono .mv-content {
  background-image: url(../img/p3_mv.png);
}

.p-barubu .mv-content {
  background-image: url(../img/p4_mv.png);
}

.p-butsudan .mv-content {
  background-image: url(../img/p5_mv.png);
}

.p-fande .mv-content {
  background-image: url(../img/p6_mv.png);
}

.p-hamachirimen .mv-content {
  background-image: url(../img/p7_mv.png);
}

.p-menorimono .mv-content {
  background-image: url(../img/p8_mv.png);
}

.p-senkotsu .mv-content {
  background-image: url(../img/p9_mv.png);
}

/* ------------------------------------
 * ページ見出し
* ------------------------------------ */
.hero-ttl {
  background-color: #EA5413;
  padding: 15px 0 5px;
  text-align: center;
}
.hero-ttl p {
  display: inline-block;
  font-size: 1.3rem;
  line-height: 1.6;
  font-weight: 500;
  border: 2px solid #fff;
  padding: 0 12px;
  color: #fff;
  margin: 0 0 2px;
}

@media (min-width: 768px) {
  .hero-ttl {
    padding: 22px 0;
  }
  .hero-ttl p {
    font-size: 1.6rem;
    padding: 1.6rem0 14px;
  }
}
.p-shigaraki .hero-ttl,
.p-kokahinoseiyaku .hero-ttl {
  background-color: #EA5413;
}

.p-asaorimono .hero-ttl {
  background-color: #6A3906;
}

.p-barubu .hero-ttl,
.p-butsudan .hero-ttl,
.p-fande .hero-ttl {
  background-color: #CC4280;
}

.p-hamachirimen .hero-ttl {
  background-color: #583060;
}

.p-menorimono .hero-ttl,
.p-senkotsu .hero-ttl {
  background-color: #00A0E9;
}

/* 見出し */
/*$mobile-scaling-base: 768px;*/
.ttl-p0 {
  max-width: 519px;
  width: 69.2vw;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}

.ttl-p1 {
  max-width: 189px;
  width: 25.2vw;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}

.ttl-p2 {
  max-width: 301px;
  width: 40.1333333333vw;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}

.ttl-p3 {
  max-width: 233px;
  width: 31.0666666667vw;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}

.ttl-p4 {
  max-width: 234px;
  width: 31.2vw;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}

.ttl-p5 {
  max-width: 189px;
  width: 25.2vw;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}

.ttl-p6 {
  max-width: 419px;
  width: 55.8666666667vw;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}

.ttl-p7 {
  max-width: 187px;
  width: 24.9333333333vw;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}

.ttl-p8 {
  max-width: 232px;
  width: 30.9333333333vw;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}

.ttl-p9 {
  max-width: 186px;
  width: 24.8vw;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}

.page-title-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ------------------------------------
 * Topicpath
* ------------------------------------ */
.topicpath {
  display: flex;
  margin: 10px 3%;
}
.topicpath li {
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 500;
}
.topicpath li a {
  position: relative;
}
.topicpath li a::after {
  content: "＞";
  display: inline;
  margin: 0 6px;
}
.topicpath li a:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "alpha( opacity=80 )";
}

@media (min-width: 768px) {
  .topicpath {
    margin: 20px 6%;
  }
}
/*********************************************************************************************

	PAGE

**********************************************************************************************/
/* -------------------------------------------------
  About
* ------------------------------------------------- */
.c-about {
  padding: 0 15px;
}
.c-about .is-back {
  margin: 0 0 30px;
}

.c-inner {
  margin: 0 0;
  display: flex;
  gap: 20px;
  flex-direction: column;
  padding: 20px 0;
}

@media (min-width: 768px) {
  .c-about {
    padding: 0 40px;
  }
  .c-about .is-back {
    margin: 40px 0;
  }
  .c-inner {
    max-width: 1076px;
    width: 100%;
    margin: 0 auto;
    gap: 40px;
    flex-direction: row-reverse;
    padding: 40px 0;
  }
}
@media (min-width: 992px) {
  .c-about {
    padding: 0 80px;
  }
  .c-about .is-back {
    margin: 60px 0;
  }
  .c-inner {
    gap: 70px;
    padding: 40px 0;
  }
}
.con-img {
  width: 100%;
  flex-shrink: 0;
  text-align: center;
}
.con-img img {
  width: 100%;
  height: auto;
}

.con-txt {
  flex-grow: 1;
}
.con-txt h2 {
  font-size: 2.4rem;
  line-height: 1.6;
  font-weight: 500;
  margin: 0 0 15px;
}
.con-txt p {
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 1.5em;
}

@media (min-width: 768px) {
  .con-img {
    width: 50%;
    flex-shrink: 0;
  }
  .con-txt {
    padding-left: 10px;
  }
  .con-txt h2 {
    font-size: 2.4rem;
    margin: 0 0 35px;
  }
}
@media (min-width: 992px) {
  .con-img {
    width: 462px;
    flex-shrink: 0;
  }
}
.link-list {
  margin: 0;
  padding: 0;
}
.link-list li {
  margin: 0 0 7px;
}
.link-list li a {
  padding: 4px 25px 4px 0;
  text-decoration: underline;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 400;
  opacity: 0.8;
  position: relative;
}
.link-list li a::after {
  content: "";
  display: inline-block;
  margin: 4px 0 0 8px;
  width: 14px;
  height: 14px;
  background: url(../img/icon_site.svg) 0 0 no-repeat;
  background-size: 100%;
  color: #C9B59A;
  opacity: 0.6;
}
.link-list li a:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "alpha( opacity=80 )";
  text-decoration: none;
}

/* -------------------------------------------------
  地場産業
* ------------------------------------------------- */
.t-lead {
  font-size: 1.4rem;
  line-height: 2.2;
  font-weight: 400;
  margin: 40px 10px 30px;
  text-align: center;
}

.p-inner {
  width: auto;
  margin: 0 3%;
}
.p-inner p {
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 400;
}

@media (min-width: 768px) {
  .t-lead {
    font-size: 1.6rem;
    line-height: 2;
    font-weight: 400;
    margin: 40px 0 60px;
  }
  .p-inner {
    width: auto;
    margin: 0 3%;
  }
  .p-inner p {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  .p-inner {
    max-width: 1124px;
    width: 100%;
    margin: 0 auto;
  }
  .p-inner p {
    font-size: 1.5rem;
  }
}
.intro-box {
  background-color: #F4F0EB;
  padding: 78px 0 50px;
}
.intro-box .p-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.intro-img {
  width: 100%;
  text-align: center;
  flex-shrink: 0;
}
.intro-img img {
  width: 100%;
  height: auto;
  margin: 0 0 10px;
}
.intro-img p {
  font-size: 1.4rem;
}

.intro-txt {
  flex-grow: 1;
  margin: 0 0x;
}
.intro-txt p {
  margin: 0 0 1.5em;
}

@media (min-width: 768px) {
  .intro-box {
    padding: 60px 0;
  }
  .intro-box .p-inner {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    flex-direction: row-reverse;
  }
  .intro-img {
    width: 38%;
    text-align: left;
    flex-shrink: 0;
    margin-right: 53px;
  }
  .intro-img img {
    width: 100%;
    height: auto;
    margin: 0 0 10px;
  }
  .intro-img p {
    font-size: 1.4rem;
  }
  .intro-txt {
    flex-grow: 1;
    margin: 0 0 0 53px;
  }
  .intro-txt p {
    margin: 0 0 1.5em;
  }
}
@media (min-width: 992px) {
  .intro-img {
    /*width: 405px;*/
    width: 415px;
    margin-right: 53px;
    text-align: center;
  }
  .intro-txt {
    margin: 0 0 0 53px;
  }
}
.info-box {
  padding: 40px 0;
}
.info-box .p-inner {
  display: flex;
  gap: 30px;
  flex-direction: column;
  margin: 0 30px;
}
.info-box .p-inner .item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.info-box .p-inner .item img {
  margin-bottom: 10px;
}
.info-box .p-inner .item p {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.4rem;
}

@media (min-width: 768px) {
  .info-box {
    padding: 40px 0;
  }
  .info-box .p-inner {
    gap: 20px;
    flex-direction: row;
  }
  .info-box .p-inner .item p {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  .info-box {
    padding: 60px 0;
  }
  .info-box .p-inner {
    gap: 12px;
    margin: 0 auto;
  }
}
.inq-box {
  padding: 15px 0 50px;
}
.inq-box .p-inner {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-direction: column;
}
.inq-box .p-inner .card {
  background-color: #F4F0EB;
  padding: 20px 20px;
  width: auto;
  text-align: center;
  color: #231815;
}
.inq-box .p-inner .card h3 {
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 500;
}
.inq-box .p-inner .card dl {
  text-align: left;
  width: auto;
  margin: 15px auto;
}
.inq-box .p-inner .card dl .inq-set {
  display: flex;
  gap: 5px;
  margin: 0 15% 5px;
}
.inq-box .p-inner .card dl dt {
  background-color: #fff;
  font-size: 1.3rem;
  line-height: 24px;
  font-weight: 400;
  width: 48px;
  height: 24px;
  text-align: center;
}
.inq-box .p-inner .card dl dd {
  font-size: 1.5rem;
  line-height: 24px;
  font-weight: 400;
}

@media (min-width: 768px) {
  .inq-box {
    padding: 40px 0 100px;
  }
  .inq-box .p-inner {
    gap: 20px;
    justify-content: center;
    flex-direction: row;
  }
  .inq-box .p-inner .card {
    padding: 30px 20px;
    width: 46%;
  }
  .inq-box .p-inner .card h3 {
    font-size: 2rem;
  }
  .inq-box .p-inner .card dl {
    margin: 15px auto;
  }
  .inq-box .p-inner .card dl .inq-set {
    margin: 0 15% 5px;
  }
  .inq-box .p-inner .card dl dt {
    font-size: 1.4rem;
  }
  .inq-box .p-inner .card dl dd {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  .inq-box {
    padding: 40px 0 100px;
  }
  .inq-box .p-inner {
    gap: 32px;
  }
  .inq-box .p-inner .card {
    padding: 30px 40px;
    width: 38%;
  }
  .inq-box .p-inner .card dl .inq-set {
    margin: 0 21% 5px;
  }
  .inq-box .p-inner .card dl .is-wide {
    margin: 0 15% 5px;
  }
}
.madein-area {
  padding: 150px 0 0 0;
  position: relative;
  overflow: hidden;
}

.arc-section {
  position: relative;
  background: #f2e6f3;
  --arc-offset: 150px;
  padding-top: var(--arc-offset);
  padding-bottom: 60px;
  text-align: center;
}
.arc-section .is-back {
  margin: 30px 0 0;
}

.arc-section::before {
  content: "";
  position: absolute;
  top: calc(-1 * var(--arc-offset));
  left: 50%;
  transform: translateX(-50%);
  width: 160%;
  height: 600px;
  background: #f2e6f3;
  border-radius: 50%;
  z-index: -1;
}

.arc-title {
  position: relative;
  z-index: 2;
  margin-top: -260px;
  text-align: center;
}

.biwako {
  font-size: 1.7rem;
  font-weight: 500;
  position: relative;
  padding-top: 75px;
  margin-bottom: 15px;
}
.biwako::before {
  content: "";
  width: 45px;
  height: 70px;
  background: url(../img/ico_biwako.png) 0 0 no-repeat;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.arc-content {
  padding: 30px 0 0;
  position: relative;
}

@media (min-width: 768px) {
  .madein-area {
    padding: 200px 0 0 0;
  }
  .arc-section {
    --arc-offset: 200px;
    padding-top: var(--arc-offset);
  }
  .arc-section .is-back {
    margin: 20px 0 10px;
  }
  .arc-section::before {
    width: 160%;
    height: 1200px;
  }
  .arc-title {
    margin-top: -350px;
  }
  .biwako {
    font-size: 2rem;
    padding-top: 90px;
  }
  .biwako::before {
    width: 51px;
    height: 80px;
  }
  .arc-content {
    padding: 40px 0;
  }
}
@media (min-width: 992px) {
  .arc-section::before {
    width: 140%;
  }
}
/*********************************************************************************************

	btn

**********************************************************************************************/
.btn a {
  display: inline-block;
  text-align: center;
  font-size: 1.6rem;
  line-height: 34px;
  font-weight: 500;
  background-color: #534B40;
  border: 1px solid #534B40;
  color: #fff;
  height: 34px;
  border-radius: 17px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.btn a span {
  position: relative;
  padding: 0 34px 0 22px;
}
.btn a span::after {
  content: "";
  position: absolute;
  mask-image: url(../img/icon_site.svg);
  mask-size: contain;
}
.btn a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.btn a:hover::after {
  transform: scale(1, 1);
}

/* 紫 */
.is-purple a {
  background-color: #84347A;
  border-color: #84347A;
  line-height: 32px;
}
.is-purple a span {
  padding: 0 38px 0 22px;
}
.is-purple a span::after {
  width: 13px;
  height: 13px;
  background-color: #fff;
  top: 6px;
  right: 20px;
}
.is-purple a:hover {
  color: #84347A;
}
.is-purple a:hover span::after {
  background-color: #84347A;
}

/* 青 */
.is-blue a {
  background-color: #005EAD;
  border: 1px solid #005EAD;
  width: 290px;
  height: 52px;
  border-radius: 26px;
  font-size: 1.6rem;
  line-height: 52px;
  font-weight: 600;
}
.is-blue a span {
  padding: 0 10px 0 0;
}
.is-blue a span::after {
  width: 18px;
  height: 18px;
  background-color: #fff;
  top: 4px;
  right: -14px;
}
.is-blue a:hover {
  color: #005EAD;
}
.is-blue a:hover span::after {
  background-color: #005EAD;
}

.is-white a {
  background-color: #fff;
  border: none;
  line-height: 44px;
  height: 44px;
  border-radius: 22px;
  color: #534B40;
}
.is-white a span {
  padding: 0 38px 0 22px;
}
.is-white a span::after {
  width: 15px;
  height: 15px;
  background-color: #534B40;
  top: 5px;
  right: 18px;
}
.is-white a span.i-dl::after {
  mask-image: url(../img/icon_dl.svg);
  mask-size: contain;
}
.is-white a::after {
  background-color: #534B40;
}
.is-white a:hover {
  background-color: #534B40;
  color: #fff;
}
.is-white a:hover span::after {
  background-color: #fff;
}

/* 茶：サイト */
.is-site a span::after {
  width: 13px;
  height: 13px;
  background-color: #C9B59A;
  top: 6px;
  right: 18px;
}
.is-site a:hover {
  color: #534B40;
}
.is-site a:hover span::after {
  background-color: #534B40;
}

/* 戻る */
.is-back {
  text-align: center;
}
.is-back a {
  background: #fff;
  color: #534B40;
  border: 1px solid #534B40;
  height: 44px;
  border-radius: 22px;
  line-height: 42px;
}
.is-back a span {
  padding: 0 24px 0 42px;
}
.is-back a span::after {
  width: 9px;
  height: 15px;
  mask-image: url(../img/icon_arrow.svg);
  mask-size: contain;
  transform: scaleX(-1);
  background-color: #534B40;
  top: 6px;
  left: 23px;
}
.is-back a::after {
  background-color: #534B40;
}
.is-back a:hover {
  color: #fff;
}
.is-back a:hover span::after {
  background-color: #fff;
}

/* 茶：→ */
.is-arw a {
  height: 32px;
  line-height: 32px;
  font-size: 1.5rem;
}
.is-arw a span {
  padding: 0 28px 0 20px;
}
.is-arw a span::after {
  width: 8px;
  height: 13px;
  mask-image: url(../img/icon_arrow.svg);
  mask-size: contain;
  background-color: #fff;
  top: 5px;
  right: 13px;
}
.is-arw a:hover {
  color: #534B40;
}
.is-arw a:hover span::after {
  background-color: #534B40;
}

.m-col1 a {
  background-color: #EA5413;
  border: none;
}
.m-col1 a:hover {
  color: #EA5413;
}
.m-col1 a:hover span::after {
  background-color: #EA5413;
}

.m-col2 a {
  background-color: #6A3906;
  border: none;
}
.m-col2 a:hover {
  color: #6A3906;
}
.m-col2 a:hover span::after {
  background-color: #6A3906;
}

.m-col3 a {
  background-color: #CC4280;
  border: none;
}
.m-col3 a:hover {
  color: #CC4280;
}
.m-col3 a:hover span::after {
  background-color: #CC4280;
}

.m-col4 a {
  background-color: #583060;
  border: none;
}
.m-col4 a:hover {
  color: #583060;
}
.m-col4 a:hover span::after {
  background-color: #583060;
}

.m-col5 a {
  background-color: #00A0E9;
  border: none;
}
.m-col5 a:hover {
  color: #00A0E9;
}
.m-col5 a:hover span::after {
  background-color: #00A0E9;
}

/*********************************************************************************************

	404

**********************************************************************************************/
.p-404 {
  margin: 40px 3% 60px;
  text-align: center;
}
.p-404 h1 {
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: 600;
  margin: 0 0 20px;
}
.p-404 p {
  font-size: 1.5rem;
  line-height: 2;
  font-weight: 400;
}

@media (min-width: 768px) {
  .p-404 {
    margin: 80px 6% 120px;
    text-align: center;
  }
  .p-404 h1 {
    font-size: 3.2rem;
    margin: 0 0 20px;
  }
  .p-404 p {
    font-size: 1.6rem;
  }
}

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