@charset "UTF-8";
@import url("grid.css");

.pcv{display:block;}
.spv{display:none;}	
img {
	max-width:100%;
	height: auto;/*高さ自動*/
}
.section-inner{
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
}
/*ヘッダー
-------------------------------------*/
header {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    background-color: #fff;
}
.header_logo{
	width: 100px;
	margin-left: 10px;
}
.navi {
    /* margin: 0 auto; */
    width: 100%;
    padding: 17px 0;
    display: flex;
    justify-content: space-between;
}
.navi-left{
    display: flex;
}
.navi a:hover{
	opacity: 0.7;
}
/*——————————————————————
ハンバーガーメニュー
——————————————————————*/
/*　ハンバーガーメニューボタン　*/
.hamburger {
    display : block;
    position: fixed;
    z-index : 9999;
    right : 30px;
    top   : 20px;
    width : 60px;
    height: 60px;
    cursor: pointer;
    text-align: center;
    background : #000;
  }
  .hamburger span {
    display : block;
    position: absolute;
    width   : 40px;
    height  : 3px ;
    left    : 10px;
    background : #fff;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition   : 0.3s ease-in-out;
    transition        : 0.3s ease-in-out;
  }
  .hamburger span:nth-child(1) {
    top: 15px;
  }
  .hamburger span:nth-child(2) {
    top: 28px;
  }
  .hamburger span:nth-child(3) {
    top: 42px;
  }
  
  /* スマホメニューを開いてる時のボタン */
  .hamburger.active span:nth-child(1) {
    top : 30px;
    left: 10px;
    background :#fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform   : rotate(-45deg);
    transform        : rotate(-45deg);
  }
  
  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 30px;
    background :#fff;
    -webkit-transform: rotate(45deg);
    -moz-transform   : rotate(45deg);
    transform        : rotate(45deg);
  }
  
  /* メニュー背景　*/
  nav.globalMenuSp {
    position: fixed;
    z-index : 9998;
    top  : 0;
    right : 0;
    color: #fff;
    background: #000;
    text-align: center;
    width: 75%;
    max-width: 320px;
    height: 100%;
    transform: translateX(101%);
    transition: all 0.6s;
  }
  
  nav.globalMenuSp ul {
    margin: 0 auto;
    width: 100%;
    padding: 100px 0 0 0;
  }
  nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0 0 0 15px;
    width: 100%;
    transition: .4s all;
	border-top: dotted 2px #fff;
  }
  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
	border-bottom: dotted 2px #fff;
  }
  nav.globalMenuSp ul li:hover{
    background :#ddd;
  }
  nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    text-align: left;
    padding: 1em 0 1em 1em;
    text-decoration :none;
    font-weight: bold;
  }
  
  /* クリックでjQueryで追加・削除 */
  nav.globalMenuSp.active {
    opacity: 100;
    display: block;
    transform: translateY(0%);
  }
    
/*メイン画像
-------------------------------------*/
.mainimg {
    background: url("../img/mainimg_pc.webp") no-repeat top center;
    background-size: cover;
    width: 100%;
    height: 70vw; /* 59.6より大きく */
}
/*メインコンテンツ
-------------------------------------*/
main {
    margin: 0;
	overflow: hidden;
}
section {
	margin: 0 0;
	padding: 2rem 0;
}

/*伝統的酒造りとは
-------------------------------------*/
.bg01{
    background: url(../img/bg01.webp) no-repeat top center / cover;
    width: 90%;
	padding: 12% 5% 2%;
}
.catch {
	width: 100%;
}
.catch h2 {
    font-weight: 700;
	line-height: 1.2;
	letter-spacing: 2px;
	color: #735029;
  	position: relative;
  	padding: 0 40px;
  	text-align: center; 
    font-size: 5rem;
	width: 430px;
	margin: 0% auto 3%;
	font-feature-settings: "palt";
}
.catch h2::before {
    content: url('../img/t_icon01.gif');
    position: absolute;
    top: 50%; /* 垂直中央 */
    transform: translateY(-50%) scale(1);
}
.catch h2::after {
    content: url('../img/t_icon01.gif');
    position: absolute;
    top: 50%; /* 垂直中央 */
    transform: translateY(-50%) scale(-1, 1);
}
.catch h2::before { left: 0; }
.catch h2::after { right: 0; }
.catch .txt01 {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: 700;
	line-height: 2;
  	position: relative;
  	text-align: center;
    font-size: 2.5rem;
	width: 100%;
	margin: 0 auto;
}
.catch .dl_btn_contents{
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: 700;
    margin: 3% auto;
    width: 450px;

    background-color: #735029;
    color: #fff;

    height: 70px;          /* ← 高さ固定 */
    line-height: 70px;     /* ← 同じ値にする */

    padding: 0 60px 0 20px;  /* 上下paddingは消す */

    font-size: 2.5rem;
    text-align: center;

    background-image: url('../img/btn_icon01.webp');
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 40px;

    font-feature-settings: "palt";
}
.catch .dl_btn_contents a{
    color: #fff;
}
.catch .dl_btn_contents {
    transition: 0.3s ease;
}

.catch .dl_btn_contents:hover {
    background-color: #8a6235;   /* 少し明るく */
}

/*こうじの働きを生かした「伝統的酒造り」の製法
-------------------------------------*/
.bg02{
    background: url("../img/bg02.gif") repeat-y center center / contain;
    width: 100%;
	padding: 3% 0 3%;
}
.con01 {
	width: 100%;
}
.con01_t {
	width: 80%;
  	display: inline-flex; /* アイコンと文字を横並びに */
  	align-items: center; /* 垂直方向の中央揃え */
  	gap: 8px; /* アイコンと文字の間隔 */
	padding: 0 12%;
  	text-align: center; 
}
.con01 h3 {
	font-family: 'Noto Serif JP', serif;
    font-weight: 900;
	line-height: 1.4;
	color: #735029;
  	position: relative;
  	padding: 0 0;
  	text-align: center; 
    font-size: 3.5rem;
	margin: 0 0 0;
	font-feature-settings: "palt";
	border-bottom: dotted 5px #735029;
	text-decoration: none;
	
}
.con01_t img {
    width: 105px;
    height: auto;
    vertical-align: top;
}

.con01_img {
    max-width: 857px;
    width: 100%;
    height: auto;
    margin: 1% auto;
}
.con01_img img {
    width:100%;
    vertical-align:top;
}

/*ユネスコ無形文化遺産に登録
-------------------------------------*/

.con02 {
	width: 100%;
	padding: 3% 0 3%;
}
.con02 h3 {
    font-weight: 700;
	line-height: 1.4;
	letter-spacing: 2px;
	color: #1c2b6b;
  	position: relative;
  	padding: 0 40px 2%;
  	text-align: center; 
    font-size: 5rem;
	max-width: 680px;
	margin: 0% auto 2%;
}
.con02 h3::before {
    content: url('../img/t_icon04.gif');
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(1);
}
.con02 h3::after {
    content: url('../img/t_icon04.gif');
    position: absolute;
    top: 50%; /* 垂直中央 */
    transform: translateY(-50%) scale(-1, 1);
}
.con02 h3::before { left: 0; }
.con02 h3::after { right: 0; }

.con02_con {
    display: flex;
    gap: 20px;
    max-width: 850px;
    margin: 0 auto;
}
.con02 .txt01 {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: 700;
	line-height: 2;
  	position: relative;
  	text-align: left;
    font-size: 2.5rem;
	width: 100%;
	margin: 0 auto;
	font-feature-settings: "palt";
	text-indent: 1em;
}

.con02_img {
	max-width: 1024px;
	width: 100%;
    height: auto;
    margin: -3% auto 0;
}
.con02_img img {
    width:100%;
    vertical-align:top;
}

/*この国の誇りが造る酒に満ちている
-------------------------------------*/

.bg04{
	background-color: #ede3c7;
	width: 100%;
	padding: 5% 0;
}
.con03 {
	width: 100%;
}
.con03_t,
.con03_ts{
	width: 90%;
	max-width: 850px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	text-align: center;
}
.con03 h3 {
    font-weight: 700;
	line-height: 1.4;
	color: #1c2b6b;
  	position: relative;
  	padding: 0 0;
  	text-align: center; 
	font-size: clamp(2.4rem, 5vw, 5rem);
	margin: 0 0 8%;
	font-feature-settings: "palt";
	border-bottom: solid 2px #1c2b6b;
	text-decoration: none;
}
.con03_t img {
    width: 19px;
    height: auto;
    vertical-align: bottom;
}
.con03 h4 {
    font-weight: 700;
	line-height: 1.4;
	color: #1c2b6b;
  	position: relative;
  	padding: 0 0;
  	text-align: center; 
	font-size: clamp(1.6rem, 3vw, 3rem);
	margin: -7% 0 5%;
	font-feature-settings: "palt";
	text-decoration: none;
}

.con03 .card-wrapper {
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
}

.con03 .card {
	flex: 1 1 300px;
	max-width: 300px;
	display: flex;
	flex-direction: column;
}

.con03 .card-image {
	width: 100%;
	aspect-ratio: 340 / 425;  /* 比率維持 */
	margin: 0 auto 20px;
	overflow: hidden;
}

.con03 .card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.con03 .company {
    font-size: 1.8rem;
	margin-bottom: 20px;
	text-align: center;
	font-weight: bold;
	line-height: 1.4;
}

.con03 .name {
    font-size: 3.5rem!important;
	margin-bottom: 10px;
	font-weight: bold;
	text-align: center;
	color: #000!important;
	line-height: 1.6;
}

.con03 .description {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.8;
	padding: 3% 0;
	font-feature-settings: "palt";
	border-top: solid 2px #000;
	text-indent: 1em;
}

.con03 .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 25px;
	background: #000046;
	color: #fff;
	padding: 8px 15px;
	text-decoration: none;
	font-size: 22px;
	transition: 0.3s;
	width: 90%;
	text-align: center;
	margin-top: auto;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	font-weight: 700;
}

.con03 .btn::after {
    content: "";
    width: 12px;
    height: 12px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg);  /* くの字 */
    transition: 0.3s;
}

.con03 .btn:hover {
	background: #03037f;
}

.con03 .btn_c {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 25px;
	background: #494949;
	color: #fff;
	padding: 8px 15px;
	text-decoration: none;
	font-size: 22px;
	transition: 0.3s;
	width: 90%;
	text-align: center;
	margin-top: auto;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	font-weight: 700;
}

/*BS番組告知　受け継がれる技と誇り
-------------------------------------*/

.bg05{
    background-image: url("../img/bg03.gif");
    background-repeat: repeat-y;
    background-position: center top;
    background-size: 100% auto;
    width: 100%;
    padding: 2% 0 1%;
}
.con04 {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
}
.con04_t img {
    margin: 0 auto;
    width: 70%;
    height: auto;
}
.con04 .broadcast {
    margin: 20px 0;
}

.con04 .broadcast img {
    display: block;
    margin: 0 auto;
    width: 45%;
    height: auto;
}
.con04 .lead {
    color: #fff !important;
    text-align: center !important;
	font-size: 23px;
    line-height: 1.8;
    margin: 30px auto 30px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: 700;
}
.con04 .thumbnail {
    max-width: 650px;
    margin: 0 auto;
}

.con04 .thumbnail img {
    width: 45%;
    display: block;
    margin: 40px auto 30px;
}
.con04 .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	background: #fff;
	color: #000046;
	padding: 8px 0 8px 40px;
	text-decoration: none;
	font-size: 22px;
	transition: 0.3s;
	width: 23%;
	text-align: center;
	margin-top: auto;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	font-weight: 700;
	font-feature-settings: "palt";
}

.con04 .btn::after {
    content: "";
    width: 12px;
    height: 12px;
    border-top: 3px solid #000046;
    border-right: 3px solid #000046;
    transform: rotate(45deg);  /* くの字 */
    transition: 0.3s;
}

.con04 .btn:hover {
	background: #cccccc;
}

/*.thumbnail:hover {
    opacity: 0.7;
}*/

/*知ればもっと旨くなる伝統的酒造り
-------------------------------------*/
/*1.日本文化との関わり
-------------------------------------*/
.con05 {
	width: 100%;
    height: auto;
	margin: 0 auto;
	text-align: center;
	padding: 0 0;
}
.con05_t {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 40px 0;
}
.deco {
    flex: 1;
    height: 42px;
    background: url("../img/bg04.gif") repeat-x center;
}
.con05 h3 {
    font-weight: 700;
    line-height: 1.4;
    color: #595858;
    font-size: clamp(2.4rem, 5vw, 5rem);
    white-space: nowrap;
}
.con05_ts {
    display: inline-block;
    background: url("../img/con05_t.png") no-repeat center / contain;
    padding: clamp(10px, 2vw, 20px) clamp(30px, 6vw, 100px);
}

.con05_ts span {
    color: #8b1c4a;
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 3.8rem);
	font-feature-settings: "palt";
}

.con05_item{
    position: relative;
}
.con05_margin01{
    margin: 130px 0 0 0;
}
.con05_margin02{
    margin: 110px 0 0 0;
}
.con05_wrap{
    display: flex;
    justify-content: space-between;
    height: 320px;
}
.con05_copy1{
    margin: -2% 0 0 12%;
    max-width: 850px;
}
.con05_copy2{
    margin: -2% 13% 0 -12%;
    max-width: 850px;
}
.con05_subtitle{
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0 0 3% 0;
	line-height: 1.2;
    color: #8b1c4a;
  	position: relative;
  	padding: 0 0;
  	text-align: left; 
    font-size: 3.8rem;
	font-feature-settings: "palt";
	text-decoration: none;
}
.con05_txt{
	width: 570px;
    font-weight: 700;
    margin: 0 0 0 0;
	line-height: 1.6;
  	position: relative;
  	padding: 0 0;
  	text-align: left; 
	font-size: 18px;
	font-feature-settings: "palt";
	text-decoration: none;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	text-indent: 1em;
}
.reverse{
    flex-direction: row-reverse;
}
.con05_bg01 {
    position: absolute;
    top: -80px;
    right: 250px;
    z-index: -1;
    width: 900px;              /* 固定 */
    aspect-ratio: 900 / 420;   /* 比率固定 */
    background: rgba(139, 28, 74, 0.1);
    clip-path: polygon(
    0% 5%,     /* 左上（少し下） */
    85% 0%,    /* 右上（上端） */
    90% 85%,   /* 右下（少し上） */
    8% 100%     /* 左下（下端） */
  );
}
.con05_bg02 {
    position: absolute;
    top: -100px;
    right: -50px;
    z-index: -1;
    width: 900px;              /* 固定 */
    aspect-ratio: 900 / 420;   /* 比率固定 */
    background: rgba(139, 28, 74, 0.1);
    clip-path: polygon(
    0% 5%,     /* 左上（少し下） */
    85% 10%,    /* 右上（上端） */
    88% 90%,   /* 右下（少し上） */
    5% 100%     /* 左下（下端） */
  );
}
.con05_img01 {
    width: 100%;
    position: relative;
}
.con05_img01 img {
	width: 93%;
    position: absolute;   
    top: -100px;
    right: 20px; 
}
.con05_img02 {
    width: 100%;
    position: relative;
}
.con05_img02 img {
	width: 65%;
    position: absolute;   
    top: -80px;
    right: 140px; 
}

/*四季折々の楽しみ方
-------------------------------------*/

.bg06{
    background-image: url("../img/bg05.gif");
    background-repeat: repeat-y;
    background-position: center top;
    background-size: 100% auto;
    width: 100%;
    padding: 2% 0 4%;
}
.con06 {
	width: 100%;
	margin: 0 auto;
	text-align: center;
	padding: 0 0;
}
.con06_t {
	max-width: 1000px;
  	display: flex;
  	justify-content: left;
  	align-items: center;
  	margin: 0 auto 3%;
}
.con06 h3 {
    font-weight: 700;
	line-height: 1.4;
    letter-spacing: 3px;
	color: #fff;
  	position: relative;
  	padding: 0 0;
  	text-align: center; 
    font-size: 5rem;
	margin: 0 0 0 15px;
	font-feature-settings: "palt";
	text-decoration: none;
}
.con06_t img {
    width: 99px;
    height: auto;
}
.con06_con {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* 左側 */
.con06_left {
    flex: 1;
}
.con06_text {
	width: 100%;
    font-weight: 700;
    margin: -2% 0 0 0;
	line-height: 1.6;
  	position: relative;
  	padding: 0 0;
  	text-align: left; 
	font-size: 20px;
	font-feature-settings: "palt";
	text-decoration: none;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	color: #fff;
    letter-spacing: 1.5px;
	text-indent: 1em;
}

/* 右側 */
.con06_right {
    flex: 1;
    display: flex;
    gap: 20px;
}

.con06 .card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.con06 .card img {
    width: 100%;
    height: auto;
    display: block;
}

.con06 .card_text {
	width: 100%;
    font-weight: 700;
    margin: 4% 0;
	line-height: 1.6;
  	position: relative;
  	padding: 0 0;
  	text-align: left; 
	font-size: 14px;
	font-feature-settings: "palt";
	text-decoration: none;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	color: #fff;
	text-indent: 1em;
}

.con06 .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background: #fff;
	color: #8a135c;
	padding: 10px 10px 8px;
	text-decoration: none;
	font-size: 18px;
	transition: 0.3s;
	width: 90%;
	margin-top: auto;
	font-feature-settings: "palt";
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	font-weight: 700;
}

.con06 .btn::after {
	content: "";
	position: absolute;         /* ← 追加 */
	right: 10px;                /* ← 右端固定 */
	top: 50%;
	transform: translateY(-50%) rotate(45deg);

	width: 10px;
	height: 10px;
	border-top: 2px solid #8a135c;
	border-right: 2px solid #8a135c;
	transition: 0.3s;
}

.con06 .btn:hover {
	background: #f2f2f2;
}

/*知ればもっと旨くなる伝統的酒造り
-------------------------------------*/
/*２.世界の中の國酒
-------------------------------------*/

.con07 {
	width: 100%;
    height: auto;
	margin: 0 auto;
	text-align: center;
	padding: 0 0;
}
.con07_ts {
	margin: 3% auto 0;
    display: inline-block;
    background: url("../img/con07_t.png") no-repeat center / contain;
    padding: clamp(10px, 2vw, 20px) clamp(30px, 6vw, 100px);
}

.con07_ts span {
    color: #519f97;
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 3.8rem);
}

.con07_item{
    position: relative;
}
.con07_margin01{
    margin: 130px 0 0 0;
}
.con07_margin02{
    margin: 5px 0 0 0;
}
.con07_wrap{
    display: flex;
    justify-content: space-between;
    height: 400px;
}
.con07_copy1{
    margin: 0 0 0 12%;
    max-width: 850px;
}
.con07_copy2{
    margin: -1% 19% 0 -13%;
    max-width: 850px;
}
.con07_subtitle{
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0 0 3% 0;
	line-height: 1.2;
    color: #519f97;
  	position: relative;
  	padding: 0 0;
  	text-align: left; 
    font-size: 3.8rem;
	font-feature-settings: "palt";
	text-decoration: none;
}
.con07_txt01{
	width: 600px;
    font-weight: 700;
    margin: 0 0 0 0;
	line-height: 1.6;
  	position: relative;
  	padding: 0 0;
  	text-align: left; 
	font-size: 18px;
	font-feature-settings: "palt";
	text-decoration: none;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	text-indent: 1em;
}
.con07_txt02{
	width: 480px;
    font-weight: 700;
    margin: 0 0 0 0;
	line-height: 1.6;
  	position: relative;
  	padding: 0 0;
  	text-align: left; 
	font-size: 18px;
	font-feature-settings: "palt";
	text-decoration: none;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	text-indent: 1em;
}
.con07_bg01 {
    position: absolute;
    top: -80px;
    right: 250px;
    z-index: -1;
    width: 900px;              /* 固定 */
    aspect-ratio: 900 / 420;   /* 比率固定 */
    background: rgba(81, 159, 151, 0.1);
    clip-path: polygon(
    5% 0%,     /* 左上（少し下） */
    90% 10%,    /* 右上（上端） */
    82% 90%,   /* 右下（少し上） */
    0% 90%     /* 左下（下端） */
  );
}
.con07_bg02 {
    position: absolute;
    top: -100px;
    right: 0px;
    z-index: -1;
    width: 900px;              /* 固定 */
    aspect-ratio: 900 / 490;   /* 比率固定 */
    background: rgba(81, 159, 151, 0.1);
    clip-path: polygon(
    0% 20%,     /* 左上（少し下） */
    80% 0%,    /* 右上（上端） */
    85% 80%,   /* 右下（少し上） */
    5% 100%     /* 左下（下端） */
  );
}
.con07_img01 {
    width: 100%;
    position: relative;
}
.con07_img01 img {
	width: 90%;
    position: absolute;   
    top: -120px;
    right: 70px; 
}
.con07_img02 {
    width: 100%;
    position: relative;
}
.con07_img02 img {
	width: 75%;
    position: absolute;   
    top: -90px;
    right: 180px; 
}

/*世界が注目する國酒カクテル
-------------------------------------*/

.bg07{
    background-image: url("../img/bg06.gif");
    background-repeat: repeat-y;
    background-position: center top;
    background-size: 100% auto;
    width: 100%;
    padding: 2% 0 4%;
}
.con08 {
	width: 100%;
	margin: 0 auto;
	text-align: center;
	padding: 0 0;
}
.con08_t {
	max-width: 1000px;
  	display: flex;
  	justify-content: left;
  	align-items: center;
  	margin: 0 auto 3%;
}
.con08 h3 {
    font-weight: 700;
	line-height: 1.4;
    letter-spacing: 3px;
	color: #fff;
  	position: relative;
  	padding: 0 0;
  	text-align: center; 
    font-size: 5rem;
	margin: 0 0 0 15px;
	font-feature-settings: "palt";
	text-decoration: none;
}
.con08_t img {
    width: 99px;
    height: auto;
}
.con08_con {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* 左側 */
.con08_left {
    flex: 1;
}
.con08_text {
	width: 100%;
    font-weight: 700;
    margin: 0 0 0 0;
	line-height: 1.6;
  	position: relative;
  	padding: 0 0;
  	text-align: left; 
	font-size: 20px;
	font-feature-settings: "palt";
	text-decoration: none;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	color: #fff;
    letter-spacing: 1.5px;
	text-indent: 1em;
}

/* 右側 */
.con08_right {
    flex: 1;
    display: flex;
    gap: 20px;
}

.con08 .card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.con08 .card img {
    width: 100%;
    height: auto;
    display: block;
}

.con08 .card_text {
	width: 100%;
    font-weight: 700;
    margin: 4% 0;
	line-height: 1.6;
  	position: relative;
  	padding: 0 0;
  	text-align: left; 
	font-size: 14px;
	font-feature-settings: "palt";
	text-decoration: none;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	color: #fff;
	text-indent: 1em;
}

.con08 .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background: #fff;
	color: #469091;
	padding: 10px 10px 8px;
	text-decoration: none;
	font-size: 17px;
	transition: 0.3s;
	width: 90%;
	margin-top: auto;
	font-feature-settings: "palt";
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	font-weight: 700;
}

.con08 .btn::after {
	content: "";
	position: absolute;         /* ← 追加 */
	right: 10px;                /* ← 右端固定 */
	top: 50%;
	transform: translateY(-50%) rotate(45deg);

	width: 10px;
	height: 10px;
	border-top: 2px solid #469091;
	border-right: 2px solid #469091;
	transition: 0.3s;
}

.con08 .btn:hover {
	background: #f2f2f2;
}


/*知ればもっと旨くなる伝統的酒造り
-------------------------------------*/
/*３.新しい酒文化へ
-------------------------------------*/
.con09 {
	width: 100%;
	margin: 0 auto;
	text-align: center;
	padding: 0 0;
}
.con09_ts {
	margin: 3% auto 0;
    display: inline-block;
    background: url("../img/con09_t.png") no-repeat center / contain;
    padding: clamp(10px, 2vw, 20px) clamp(30px, 6vw, 100px);
}

.con09_ts span {
    color: #ca5520;
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 3.8rem);
}

.con09_item{
    position: relative;
}
.con09_margin01{
    margin: 130px 0 0 0;
}
.con09_margin02{
    margin: 0px 0 0 0;
}
.con09_wrap{
    display: flex;
    justify-content: space-between;
    height: 430px;
}
.con09_copy1{
    margin: 0 0 0 15%;
    max-width: 850px;
}
.con09_copy2{
    margin: 3% 18% 0 -5%;
    max-width: 850px;
}
.con09_subtitle{
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0 0 3% 0;
	line-height: 1.2;
    color: #ca5520;
  	position: relative;
  	padding: 0 0;
  	text-align: left; 
    font-size: 3.8rem;
	font-feature-settings: "palt";
	text-decoration: none;
}
.con09_txt01{
	width: 450px;
    font-weight: 700;
    margin: 0 0 0 0;
	line-height: 1.6;
  	position: relative;
  	padding: 0 0;
  	text-align: left; 
	font-size: 18px;
	font-feature-settings: "palt";
	text-decoration: none;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	text-indent: 1em;
}
.con09_txt02{
	width: 480px;
    font-weight: 700;
    margin: 0 0 0 0;
	line-height: 1.6;
  	position: relative;
  	padding: 0 0;
  	text-align: left; 
	font-size: 18px;
	font-feature-settings: "palt";
	text-decoration: none;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	text-indent: 1em;
}
.con09_bg01 {
    position: absolute;
    top: -80px;
    right: 250px;
    z-index: -1;
    width: 900px;              /* 固定 */
    aspect-ratio: 900 / 420;   /* 比率固定 */
    background: rgba(229, 179, 62, 0.1);
    clip-path: polygon(
    3% 0%,     /* 左上（少し下） */
    92% 20%,    /* 右上（上端） */
    85% 100%,   /* 右下（少し上） */
    8% 98%     /* 左下（下端） */
  );
}
.con09_bg02 {
    position: absolute;
    top: -90px;
    right: -70px;
    z-index: -1;
    width: 900px;              /* 固定 */
    aspect-ratio: 900 / 480;   /* 比率固定 */
    background: rgba(229, 179, 62, 0.1);
    clip-path: polygon(
    0% 29%,     /* 左上（少し下） */
    70% 0%,    /* 右上（上端） */
    90% 95%,   /* 右下（少し上） */
    5% 100%     /* 左下（下端） */
  );
}
.con09_img01 {
    width: 100%;
    position: relative;
}
.con09_img01 img {
	width: 75%;
    position: absolute;   
    top: -100px;
    right: 130px; 
}
.con09_img02 {
    width: 100%;
    position: relative;
}
.con09_img02 img {
	width: 70%;
    position: absolute;   
    top: -20px;
    right: 70px; 
}

/*國酒と料理の新しいペアリング
-------------------------------------*/

.bg08{
    background-image: url("../img/bg07.gif");
    background-repeat: repeat-y;
    background-position: center top;
    background-size: 100% auto;
    width: 100%;
    padding: 2% 0 4%;
}
.con10 {
	width: 100%;
	margin: 0 auto;
	text-align: center;
	padding: 0 0;
}
.con10_t {
	max-width: 1000px;
  	display: flex;
  	justify-content: left;
  	align-items: center;
  	margin: 0 auto 3%;
}
.con10 h3 {
    font-weight: 700;
	line-height: 1.4;
    letter-spacing: 3px;
	color: #fff;
  	position: relative;
  	padding: 0 0;
  	text-align: center; 
    font-size: 5rem;
	margin: 0 0 0 15px;
	font-feature-settings: "palt";
	text-decoration: none;
}
.con10_t img {
    width: 99px;
    height: auto;
}
.con10_con {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* 左側 */
.con10_left {
    flex: 1;
}
.con10_text {
	width: 100%;
    font-weight: 700;
    margin: 0 0 0 0;
	line-height: 1.6;
  	position: relative;
  	padding: 0 0;
  	text-align: left; 
	font-size: 18px;
	font-feature-settings: "palt";
	text-decoration: none;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	color: #fff;
    letter-spacing: 1.5px;
	text-indent: 1em;
}

/* 右側 */
.con10_right {
    flex: 1;
    display: flex;
    gap: 20px;
}

.con10 .card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.con10 .card img {
    width: 100%;
    height: auto;
    display: block;
}

.con10 .card_text {
	width: 100%;
    font-weight: 700;
    margin: 4% 0;
	line-height: 1.6;
  	position: relative;
  	padding: 0 0;
  	text-align: left; 
	font-size: 14px;
	font-feature-settings: "palt";
	text-decoration: none;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	color: #fff;
	text-indent: 1em;
}

.con10 .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background: #fff;
	color: #af382c;
	padding: 10px 10px 8px;
	text-decoration: none;
	font-size: 17px;
	transition: 0.3s;
	width: 90%;
	margin-top: auto;
	font-feature-settings: "palt";
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	font-weight: 700;
	letter-spacing: -0.8px;
}

.con10 .btn::after {
	content: "";
	position: absolute;         /* ← 追加 */
	right: 10px;                /* ← 右端固定 */
	top: 50%;
	transform: translateY(-50%) rotate(45deg);

	width: 10px;
	height: 10px;
	border-top: 2px solid #af382c;
	border-right: 2px solid #af382c;
	transition: 0.3s;
}

.con10 .btn:hover {
	background: #f2f2f2;
}

/*お役立ちコンテンツ
-------------------------------------*/

.home-information{
    margin:1em auto 1em;
}

/* ===== 1000px固定 ===== */
.common-inner{
    max-width:1000px;
    margin:0 auto;
    padding:0 20px;
    box-sizing:border-box;
}

/* ===== タイトル ===== */

.sect-title1{
    display:flex;
    flex-direction:column;   /* 縦並びに変更 */
    align-items:center;      /* 中央揃え */
    text-align:center;
    gap:1em;
    margin:1% auto;
}

.sect-title1 span{
    padding-left:0;
}

.sect-title1 span:before{
    display:none; 
}

.sect-title1 h2{
    font-size: 4rem;
    font-weight:500;
    letter-spacing:.125em;
    line-height:1.75;
}

/* ===== slickエリア ===== */


.list-slick1{
    position:relative;
    padding:0 60px;
}

.list-slick1 .slick-slide{
    padding:0 10px;
    box-sizing:border-box;
}

.list-slick1 .slick-slide a{
    display:block;
    text-decoration:none;
    color:#000;
}

.list-slick1 .img{
    margin-bottom:.75em;
}

.list-slick1 .img img{
    width:100%;
    height:auto;
    display:block;
}

.list-slick1 .cat{
    display:inline-block;
    padding:.25em .5em;
    border:1px solid #000;
    font-size:.8em;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	font-weight: bold;
}

.list-slick1 h3{
    font-size:1em;
    margin-top:.75em;
    line-height:1.75;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	font-weight: bold;
}

/* =========================
   矢印 完全固定版
========================= */

/* 本体 */
.list-slick1 .slick-prev,
.list-slick1 .slick-next{
    position:absolute;
    top:20%;                 /* ← 変更なし */
    width:40px;
    height:40px;
    z-index:9999;
    cursor:pointer;

    background:url("../img/arrow2.svg") center no-repeat !important;
    background-size:contain !important;

    opacity:1 !important;
}

/* 左だけ反転 */
.list-slick1 .slick-prev{
    left:10px;
    transform: scaleX(-1) !important;
}

/* 右 */
.list-slick1 .slick-next{
    right:10px;
    transform: scaleX(1) !important;
}

/* hoverでも一切変化させない */
.list-slick1 .slick-prev:hover,
.list-slick1 .slick-next:hover{
    opacity:1 !important;
    transform: scaleX(1) !important;
}

/* 左のhover反転維持 */
.list-slick1 .slick-prev:hover{
    transform: scaleX(-1) !important;
}

/* slickの疑似要素を完全削除 */
.list-slick1 .slick-prev:before,
.list-slick1 .slick-next:before,
.list-slick1 .slick-prev:hover:before,
.list-slick1 .slick-next:hover:before{
    display:none !important;
    content:none !important;
}

/* disabled状態でも消させない */
.list-slick1 .slick-prev.slick-disabled,
.list-slick1 .slick-next.slick-disabled{
    opacity:1 !important;
}

/* ===== 全体背景 ===== */
.heritage-section{
    padding:15px 20px;
}

/* ===== 内側幅 ===== */
.heritage-section .inner{
    max-width:950px;
    margin:0 auto;
    text-align:center;
}

/* ===== 上テキスト ===== */
.heritage-text{
    font-size:20px;
    line-height:1.4;
    margin-bottom:20px;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	font-weight: bold;
}

/* ===== ボタンエリア ===== */
.heritage-links{
    display:flex;
    gap:20px;
}

/* ===== ボタン共通 ===== */
.heritage-btn{
    flex:1;
    background:#b21c1c;
    color:#fff;
    text-decoration:none;
    padding:20px 30px 10px 10px;
    border-radius:12px;
    font-size:18px;
    line-height:1.4;
    position:relative;
    transition:0.3s;
    box-sizing:border-box;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-weight:bold;
    font-feature-settings: "palt";
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.heritage-btn:last-child{
	flex:1.2;
}
.heritage-btn span{
    display:block;
    font-size:14px;
    font-weight:400;
    margin-top:6px;
}

/* ===== くの字矢印（大きく） ===== */
.heritage-btn::after{
    content:"›";
    position:absolute;
    right:5px;
    top:50%;
    transform:translateY(-50%);
    font-size:60px;
    font-weight:300;
    line-height:1;
}

/* hover */
.heritage-btn:hover{
    opacity:0.85;
}

/*フッター
-------------------------------------*/
footer { 
    padding:  0;
}
footer h4 {
}
/*20歳禁止
-------------------------------------*/

.txt20 {
	width: 80%;
	margin: 3% auto;
}
.txt20 p {
    font-weight: 500;
	letter-spacing: 1.4px;
	text-align: left;
}

/*コピーライト
-------------------------------------*/
.copyright {
    text-align: center;
    padding: 2rem 0;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-weight:bold;
}
.copyright a {
    color: #000;
    text-decoration: none;
	display: inline;
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
    position: fixed;
    bottom: -10px;
    right: 30px;
	z-index: 10;

}
#pagetop a {
    display: block;
    background-color: #000;
    color: #fff;
    width: 50px;
    padding: 10px 5px;
    text-align: center;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-weight:bold;
    font-size:18px;
}


/* 幅1024px以下の表示
-------------------------------------*/
@media screen and (max-width: 1024px){
  .con02,
  .con03,
  .con04,
  .con05,
  .con06,
  .con07,
  .con08,
  .con09,
  .con10,
  .heritage-section{
    width: 90%;
    margin: 0 auto;
  }
  .con02 h3 {
    font-weight: 700;
	line-height: 1.4;
	letter-spacing: 2px;
	color: #1c2b6b;
  	position: relative;
  	padding: 0 40px 3%;
  	text-align: center; 
    font-size: 4.7rem;
	max-width: 680px;
	margin: 0% auto 2%;
}	
.con03 h3 {
    font-weight: 700;
	line-height: 1.4;
	color: #1c2b6b;
  	position: relative;
  	padding: 0 0;
  	text-align: center; 
	font-size: clamp(2.4rem, 5vw, 3.9rem);
	margin: 0 0 8%;
	font-feature-settings: "palt";
	border-bottom: solid 2px #1c2b6b;
	text-decoration: none;
}	
.con03 h4 {
    font-weight: 700;
	line-height: 1.4;
	color: #1c2b6b;
  	position: relative;
  	padding: 0 0;
  	text-align: center; 
	font-size: clamp(3rem, 3vw, 3rem);
	margin: -7% 0 5%;
	font-feature-settings: "palt";
	text-decoration: none;
}
.con06 h3 {
    font-weight: 700;
	line-height: 1.4;
    letter-spacing: 3px;
	color: #fff;
  	position: relative;
  	padding: 0 0;
  	text-align: center; 
    font-size: 4.3rem;
	margin: 0 0 0 15px;
	font-feature-settings: "palt";
	text-decoration: none;
}
	
.con04 .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	background: #fff;
	color: #000046;
	padding: 8px 0 8px 30px;
	text-decoration: none;
    font-size: 2rem;
	transition: 0.3s;
	width: 30%;
	text-align: center;
	margin-top: auto;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	font-weight: 700;
	font-feature-settings: "palt";
}

.con05_margin01{
    margin: 130px 0 0 0;
}
.con05_margin02{
    margin: 180px 0 0 0;
}
.con05_copy1{
    margin: -2% 0 0 0%;
    max-width: 850px;
}
.con05_copy2{
    margin: -2% 0 0 -12%;
    max-width: 850px;
}
.con05_bg01 {
    position: absolute;
    top: -80px;
    right: 0;
    z-index: -1;
    width: 900px;              /* 固定 */
    aspect-ratio: 900 / 420;   /* 比率固定 */
    background: rgba(139, 28, 74, 0.1);
    clip-path: polygon(
    0% 5%,     /* 左上（少し下） */
    85% 0%,    /* 右上（上端） */
    90% 85%,   /* 右下（少し上） */
    8% 100%     /* 左下（下端） */
  );
}
.con05_bg02 {
    position: absolute;
    top: -100px;
    right: -180px;
    z-index: -1;
    width: 900px;              /* 固定 */
    aspect-ratio: 900 / 420;   /* 比率固定 */
    background: rgba(139, 28, 74, 0.1);
    clip-path: polygon(
    0% 5%,     /* 左上（少し下） */
    85% 10%,    /* 右上（上端） */
    88% 90%,   /* 右下（少し上） */
    5% 100%     /* 左下（下端） */
  );
}
  .con05_img01 img{
    width: 30vw;          /* 画面幅基準で大きさを決める */
    max-width: 600px;     /* 大きくしすぎ防止 */
    top: -150px;           /* 少し調整 */
    right: -5vw;           /* 画面幅基準で右寄せ */
  }
  .con05_img02 img{
    width: 30vw;
    max-width: 600px;
    top: -190px;
    right: 7vw;
  }
.con06 .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background: #fff;
	color: #8a135c;
	padding: 10px 15px 8px 5px;
	text-decoration: none;
	font-size: 13px;
	transition: 0.3s;
	width: 90%;
	margin-top: auto;
	font-feature-settings: "palt";
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	font-weight: 700;
}

.con07_margin01{
    margin: 130px 0 0 0;
}
.con07_margin02{
    margin: 80px 0 0 0;
}
.con07_copy1{
    margin: -3% 0 0 0;
    max-width: 850px;
}
.con07_copy2{
    margin: 2% 0 0 -14%;
    max-width: 850px;
}
.con07_txt01,.con07_txt02{
	width: 550px;
    font-weight: 700;
    margin: 0 0 0 0;
	line-height: 1.6;
  	position: relative;
  	padding: 0 0;
  	text-align: left; 
	font-size: 18px;
	font-feature-settings: "palt";
	text-decoration: none;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	text-indent: 1em;
}
.con07_bg01 {
    position: absolute;
    top: -80px;
    right: 0;
    z-index: -1;
    width: 900px;              /* 固定 */
    aspect-ratio: 900 / 420;   /* 比率固定 */
    background: rgba(81, 159, 151, 0.1);
    clip-path: polygon(
    5% 0%,     /* 左上（少し下） */
    90% 10%,    /* 右上（上端） */
    82% 90%,   /* 右下（少し上） */
    0% 100%     /* 左下（下端） */
  );
}
.con07_bg02 {
    position: absolute;
    top: -130px;
    right: -250px;
    z-index: -1;
    width: 950px;              /* 固定 */
    aspect-ratio: 900 / 490;   /* 比率固定 */
    background: rgba(81, 159, 151, 0.1);
    clip-path: polygon(
    0% 15%,     /* 左上（少し下） */
    80% 0%,    /* 右上（上端） */
    85% 80%,   /* 右下（少し上） */
    5% 100%     /* 左下（下端） */
  );
}
.con07_img01 img {
    width: 30vw;          /* 画面幅基準で大きさを決める */
    max-width: 600px;     /* 大きくしすぎ防止 */
    top: -150px;           /* 少し調整 */
    right: -7vw;           /* 画面幅基準で右寄せ */
}
.con07_img02 img {
    width: 30vw;          /* 画面幅基準で大きさを決める */
    max-width: 600px;     /* 大きくしすぎ防止 */
    top: -200px;           /* 少し調整 */
    right: 10vw;           /* 画面幅基準で右寄せ */
}
.con08 h3 {
    font-weight: 700;
	line-height: 1.4;
    letter-spacing: 3px;
	color: #fff;
  	position: relative;
  	padding: 0 0;
  	text-align: center; 
    font-size: 4.3rem;
	margin: 0 0 0 15px;
	font-feature-settings: "palt";
	text-decoration: none;
}
.con08 .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background: #fff;
	color: #469091;
	padding: 10px 15px 8px 5px;
	text-decoration: none;
	font-size: 13px;
	transition: 0.3s;
	width: 90%;
	margin-top: auto;
	font-feature-settings: "palt";
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	font-weight: 700;
}	
	
.con09_margin01{
    margin: 130px 0 0 0;
}
.con09_margin02{
    margin: 30px 0 0 0;
}

.con09_copy1{
    margin: 30px 0 0 0;
    max-width: 850px;
}
.con09_copy2{
    margin: 30px 0 0 -12%;
    max-width: 850px;
}
.con09_bg01 {
    position: absolute;
    top: -80px;
    right: 0;
    z-index: -1;
    width: 900px;              /* 固定 */
    aspect-ratio: 900 / 420;   /* 比率固定 */
    background: rgba(229, 179, 62, 0.1);
    clip-path: polygon(
    3% 0%,     /* 左上（少し下） */
    95% 20%,    /* 右上（上端） */
    95% 100%,   /* 右下（少し上） */
    8% 100%     /* 左下（下端） */
  );
}
.con09_bg02 {
    position: absolute;
    top: -60px;
    right: -280px;
    z-index: -1;
    width: 900px;              /* 固定 */
    aspect-ratio: 900 / 420;   /* 比率固定 */
    background: rgba(229, 179, 62, 0.1);
    clip-path: polygon(
    0% 15%,     /* 左上（少し下） */
    75% 0%,    /* 右上（上端） */
    90% 95%,   /* 右下（少し上） */
    0% 100%     /* 左下（下端） */
  );
}
.con09_txt01,.con09_txt02{
	width: 540px;
    font-weight: 700;
    margin: 0 0 0 0;
	line-height: 1.6;
  	position: relative;
  	padding: 0 0;
  	text-align: left; 
	font-size: 18px;
	font-feature-settings: "palt";
	text-decoration: none;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	text-indent: 1em;
}
.con09_img01 img {
    width: 30vw;          /* 画面幅基準で大きさを決める */
    max-width: 600px;     /* 大きくしすぎ防止 */
    position: absolute;   
    top: -100px;
    right: -10px; 
}
.con09_img02 img {
    width: 30vw;          /* 画面幅基準で大きさを決める */
    max-width: 600px;     /* 大きくしすぎ防止 */
    position: absolute;   
    top: -150px;
    right: 80px; 
}
.con10 h3 {
    font-weight: 700;
	line-height: 1.4;
    letter-spacing: 3px;
	color: #fff;
  	position: relative;
  	padding: 0 0;
  	text-align: center; 
    font-size: 4.3rem;
	margin: 0 0 0 15px;
	font-feature-settings: "palt";
	text-decoration: none;
}
.con10 .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background: #fff;
	color: #af382c;
	padding: 10px 15px 8px 5px;
	text-decoration: none;
	font-size: 13px;
	transition: 0.3s;
	width: 90%;
	margin-top: auto;
	font-feature-settings: "palt";
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	font-weight: 700;
}
.heritage-text{
    font-size:18px;
    line-height:1.4;
    margin-bottom:20px;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	font-weight: bold;
}
.heritage-btn{
    flex:1;
    background:#b21c1c;
    color:#fff;
    text-decoration:none;
    padding:20px 30px 10px 10px;
    border-radius:12px;
    font-size:15px;
    line-height:1.4;
    position:relative;
    transition:0.3s;
    box-sizing:border-box;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-weight:bold;
    font-feature-settings: "palt";
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.txt20 {
	width: 90%;
	margin: 3% auto;
}

.i_main_t h1 {
	width: 100%;
	max-width: 1000px;
    font-weight: 700;
	line-height: 1.4;
	color: #1c2b6b;
  	position: relative;
  	padding: 0 0 10px;
  	text-align: center; 
	font-size: clamp(2rem, 4.2vw, 5rem);
	margin: 0 0 60px;
	font-feature-settings: "palt";
	border-bottom: solid 2px #1c2b6b;
	text-decoration: none;
}
.i_main_ts h2 {
    font-weight: 700;
	line-height: 1.4;
	color: #1c2b6b;
  	position: relative;
  	padding: 0 0;
  	text-align: center; 
	font-size: clamp(1.6rem, 3vw, 4.5rem);
	margin: -6% 0 5%;
	font-feature-settings: "palt";
	text-decoration: none;
}	
	
}