@charset "utf-8";

/* 共通 */
:root {
  --basecolor: #000000;
  /*基本色*/
  --subcolor: #000000;
  /*サブカラー*/
  --highlight: #ffee00;
  /*ハイライト*/
}

html{
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

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

.event_main{
	/* width:fit-content; */
	margin-left:auto;
	margin-right:auto;
	/* padding-top:50px; */
}

.dnrk {
  margin: 0 auto;
  max-width:100vw;
  /* width:95%; */
}

.dnrk a {
  color: #146fe7;
  text-decoration: underline;
}

.dnrk img {
  max-width: 100%;
}

.dnrk mark {
  background: linear-gradient(transparent 65%, var(--highlight) 0%);
  font-weight: bold;
  color: inherit;
}

.dnrk b {
  font-weight: bold;
}

.dnrk u {
  text-decoration: underline solid #000000;
}

.dnrk p {
  margin: 0;
}


/* 画像のPCとSP */
@media (max-width: 768px) {
  .pconly {
    display: none;
  }
}

@media (min-width: 769px) {
  .sponly {
    display: none;
  }
}

.contents_wrap {
  margin: 0 auto;
}

.danraku_box {
  margin: 0;
}

/* タイトル */

.page_ttl {
  position: relative;
  margin: 0px auto 5px;
  padding: 20px;
  text-align: center;
  font-size: 250%;
  font-weight: normal;
}

.page_ttl::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 15px;
  background: radial-gradient(circle farthest-side, var(--basecolor), var(--basecolor) 30%, transparent 30%, transparent);
  background-size: 15px;
  bottom: 0;
  left: 0;
}

.page_ttl::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 15px;
  background: radial-gradient(circle farthest-side, var(--basecolor), var(--basecolor) 30%, transparent 30%, transparent);
  background-size: 15px;
  top: 0;
  left: 0;
}

/* WYSIWYG関連 */
/* 共通のエディター領域 */
.wysiwyg-editor {
	border: 1px solid #ccc;
	padding: 10px;
	min-height: 120px;
	overflow: auto;
	outline: none;
	background-color: #fff;
	margin-top: 5px;
}

/* トグルボタンのスタイル */
.toggle-wysiwyg-button {
	display: inline-block;
	margin-bottom: 5px;
	padding: 4px 10px;
	font-size: 90%;
	background-color: #f0f0f0;
	border: 1px solid #ccc;
	border-radius: 3px;
	cursor: pointer;
}

.toggle-wysiwyg-button:hover {
	background-color: #e0e0e0;
}

/* テキストのスタイル適用に使うクラス wwはwysiwygの意*/
.ww_b { font-weight: bold; }
.ww_i { font-style: italic; }
.ww_u { text-decoration: underline; }
.ww_em { font-style: oblique; }
.ww_small { font-size: smaller; }
.ww_big { font-size: larger; }
.ww_strong { font-weight: bolder; }
.ww_mark { background-color: yellow !important ;}/*エディタにも反映させるため、ここだけ要!important*/
.ww_color1 { color: red; }
.ww_color2 { color: green; }
.ww_color3 { color: blue; }
.ww_mincho { font-family: 'Yu Mincho', 'Hiragino Mincho Pro', serif; }
.ww_gothic { font-family: 'Yu Gothic', 'Meiryo', sans-serif; }


/* 1 大タイトル */
.ptn1 h2 {
  font-size: 150%;
  color: var(--basecolor);
  /* border-bottom: 4px solid var(--basecolor); */
  /* margin: 30px auto 5px; */
  margin: 0;
  text-align: center;
}

/* 2 中タイトル */
.ptn2 h3 {
  font-size: 100%;
  /* margin: 10px auto 5px; */
  position: relative;
  /* padding: 0 0 0 1.2em; */
  color: var(--basecolor);
  /* border-bottom: 2px solid; */
  text-align: center;
}

/* .ptn2 h3::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: var(--basecolor);
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
} */

.ptn3 {
  display: flex;
  align-items: center;
  flex-direction: column;
}

/* 4,6 画像に幅制限  いらない？*/
.ptn6 > div ,
.ptn4 > div {
	  margin: 0 auto;
	text-align:center;
}

/* 7 画像中央 */
.ptn7 p {
  text-align: center;
}

.ptn7 img {
  width: 100%;
}

/* 21 左画像 右文章 */
.ptn21{
	display:flex;
	align-items:center;
	width:1000px;
	margin:30px auto;
}
.ptn21 p:first-child{
	width:45%;
} 
.ptn21 p:last-child{
	width:55%;
	padding:20px;
	line-height:2;
	font-size:105%;
	text-align:center;
} 

/* 22 右画像 左文章 */
.ptn22{
	display:flex;
	flex-direction:row-reverse;
	align-items:center;
	width:1000px;
	margin:30px auto;
}
.ptn22 p:first-child{
	width:45%;
} 
.ptn22 p:last-child{
	width:55%;
	padding:20px;
	line-height:2;
	font-size:105%;
	text-align:center;
} 

/* 23 テーブル */
.ptn23 table th,.ptn23 table td{
  border:#333 1px solid;
  padding: 0.5em;
}
.ptn23 table {
  width: 100%;
  max-width: 35em;
  margin: 0 auto;
  border-collapse: collapse;
}
.ptn23 table th {
  width: 20%;
  text-align: center;
}
.ptn23 table td {
  width: 80%;
  text-align: left;
  padding-left: 1rem;
}

/* 24・25 画像・文章横並び */
.ptn24 .inner, .ptn25 .inner {
  padding: 0 .5rem;
}
.ptn24, .ptn25{
  margin: 0 auto;
}
.ptn24 ul, .ptn25 ul{
  margin: 0 auto;
  padding: 0;
  max-width: 1000px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 2%;
  flex: 1;
}
.ptn24 li, .ptn25 li{
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 22.5%;
}
.ptn24 img, .ptn25 img {
  display: block;
  width: 100%;
  margin: 0 auto;
  /* max-width: 12.5rem; */
  aspect-ratio: 1 / 1;
  object-fit: cover;
  /* filter: drop-shadow(2px 2px 2px #ccc); */
}
.ptn24 img{
  border-radius: 50%;
}

/* .ptn25 img {
  border-radius: 3%;
} */
.ptn24 li p, .ptn25 li p {
  margin-top: 1em;
}

/* 26 小見出し */
.ptn26{
  width: 100%;
  height: 20vh;
  position: relative;
  margin: 0 auto;
}
.ptn26 .bg_img{
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
}
.ptn26 .bg_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ptn26 .bg_img::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.ptn26 h4{
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: center;
  flex-direction: column;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  font-size: 150%;
  letter-spacing: .4em;
}
.ptn26 h4 .txt2{
  display: block;
  font-size: 80%;
  letter-spacing: .3em;
}


/* 27 画像・文章・テーブル */
.ptn27 .inner{
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 0.5rem;
  /* align-items: center; */
}
.ptn27 .inner .block1 {
  width: 45%;
}
.ptn27 .inner .block1 img {
  /* max-width: 35rem; */
  width: 100%;
}
.ptn27 .inner .block2{
  width: 55%;
  padding: 0 0 0 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ptn27 .txt_box .txt1 {
  font-weight: bold;
  font-size: 105%;
}
.ptn27 .txt_box .txt2 {
  padding: .5rem 0;
  font-size: 90%;
  line-height: 1.5;
}
.ptn27 table {
  width: 100%;
  border-collapse: collapse;
  font-size: 80%;
}
.ptn27 .table th, .ptn27 .table td {
  border: #333 1px solid;
  padding: 0.3em;
}
.ptn27 .table th {
  width: 30%;
}
.ptn27 .table td {
  width: 70%;
  padding-left: 1rem;
}


/* 28・29・30 ボタン1・2・3*/
/* ボタン共通 */
p.button{
  display: block;
  margin: 0 auto;
  padding: 0;
  max-width: 30rem;
  width: 100%;
  font-weight: 600;
  font-size: 150%;
}

.button a {
  text-decoration: none;
  display: block;
  width: 100%;
  text-align: center;
  padding: 1.2rem 1.5rem;
}

.ptn28 .button,.ptn29 .button {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  transition: 0.3s ease-in-out;
  filter: drop-shadow(0px 2px 2px #ccc);
}

.ptn28 .button {
  border-radius: 50px;
}
.ptn29 .button {
  border-radius: 8px;
}

.ptn28 a, .ptn29 a {
  position: relative;
  color: inherit;
}

.ptn28 .button a:after,.ptn29 .button a:after {
  position: absolute;
  top: 50%;
  right: 10%;
  transition: 0.2s ease-in-out;
  content: "";
  background-image: url(../img_danraku/arrow.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  display: block;
  width: 2rem;
  height: 2rem;
  transform: translateY(-50%);
}
.ptn28 .button:hover, .ptn29 .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%);
}

.ptn30 .button{
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  transition: 0.3s ease-in-out;
  border-radius: 8px;
  border-bottom: solid 5px #c6c6c6; 
}
.ptn30 .button:hover{
  border-bottom: solid 2px #c6c6c6;
  transform: translateY(3px);
}


/* 31 テーブル2 */
.ptn31 table th,.ptn31 table td{
  border:#fff 2px solid;
  padding: 0.5em;
}
.ptn31 table {
  width: 100%;
  max-width: 35em;
  margin: 0 auto;
  border-collapse: collapse;
}
.ptn31 table th {
  width: 20%;
  text-align: center;
}
.ptn31 table td {
  width: 80%;
  text-align: left;
  padding-left: 1rem;
}


/* 32 文章横並び */
.ptn32 ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.ptn32 li {
  width: calc(100% / 3);
  padding: 1rem 2rem;
}

.ptn32 li .txt1{
  text-align: center;
  margin-bottom: .3em;
  font-size: 130%;
  font-weight: bold;
  letter-spacing: .1em;
}
.ptn32 li .txt2{
  text-align: center;
  font-size: 110%;
  font-weight: bold;
  letter-spacing: .05em;
}
/* .ptn32 span {
  font-size: 160%;
}
.ptn32 span.red {
  color: #ff0000;
}
.ptn32 span.yellow {
  color: #ffff00;
}
.ptn32 span.blue {
  color: #0000ff;
}
.ptn32 span.green {
  color: #008000;
} */


/* 33 画像(円形)・文章(吹き出し)横並び */
.ptn33{
  margin: 0 auto;
}
.ptn33 ul{
  margin: 0 auto;
  padding: 4rem 0;
  max-width: 1000px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 2%;
  flex: 1;
}
.ptn33 li{
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 22.5%;
}

.ptn33 .txt {
  display: flex;
  flex-direction: column;
}
.ptn33 .mark {
  margin: -2px auto 0;
  border: 16px solid transparent;
  width: 2rem;
  height: 2rem;
}

.ptn33 .txt p {
  position: relative;
  display: inline-block;
  /* padding: 2em .5em; */
  align-content: center;
  width: 10rem;
  height: 10rem;
  text-align: center;
  line-height: 1.5;
  border-radius: 50%;
  box-sizing: border-box;
}
/* .ptn33 .txt p::before {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #4A7FA2;
  z-index: 0;
} */

.ptn33 .img{
  max-width: 12.5rem;
  background-color: #fff;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  margin: -0.5rem auto 0;
  display: block;
  overflow: hidden;
}
.ptn33 .img img {
  display: block;
  margin: 0 auto;
  width: 100%;
}


/* 34 リスト（テキスト） */
.ptn34 .inner {
  padding: 0 .5rem;
}
.ptn34 .list_body {
  display: block;
  margin: 0 auto;
  padding: 2rem 0;
  max-width: 750px;
  border-style: solid;
  border-width: 1px;
}
.ptn34 .list_body .txt1,
.ptn34 .list_body .txt2 {
  text-align: center;
  font-weight: bold;
}
.ptn34 .list_body .txt1 {
  font-size: calc(10px + 1vw);
  padding-bottom: .5rem;
}
.ptn34 .list_body .txt2 {
  font-size: 120%;
}

.ptn34 .list_body .list1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 4%;
  width: 100%;
  padding: 0 2rem 0 4rem;
  margin: 2rem 0;
}
.ptn34 .list_body .list1 li {
  width: 46%;
  /* padding: .5em .5em .5em 0; */
  padding-left: .5em;
  margin-bottom: .6em;
}
.ptn34 .list_body .list2{
  list-style: none;
  padding: 0 3rem 0 5rem;
  font-size: 90%;
}
.ptn34 .list_body .list2 li {
  text-indent: -1.5em;
  margin-bottom: .2em
}
.ptn34 .list_body .list2 li:last-child {
  margin-bottom: 0;
}
.ptn34 .list_body .list2 li:before{
  content: "※";
  margin-right: 0.5em;
}

/* 35 文章横並び2 */
.ptn35 .inner {
  padding: 0 .5rem;
}
.ptn35 ul {
  margin: 0 auto;
  padding: 0;
  max-width: 1000px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 2%;
}
.ptn35 li {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 18%;
  text-align: center;
  padding: .5em .3em;
  border-radius: 8px;
}
.ptn35 li .txt1 {
  font-size: 150%;
  font-weight: bold;
}


/* 36・37 画像・文章横並び(四角) */
.ptn36 .inner, .ptn37 .inner {
  padding: 0 .5rem;
}
.ptn36 ul,
.ptn37 ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1000px;
  width: 100%;
  display: flex;
  gap: 20px 20px;
}
.ptn36 ul {
  justify-content: center;
  flex-wrap: wrap;
}
.ptn37 ul {
  justify-content: space-between;
  flex-wrap: nowrap;
}
.ptn36 li {
  max-width: 320px;
}
.ptn37 li {
  width: 23.5%;
}

.ptn36 .img_txt, .ptn37 .img_txt {
  text-align: center;
  padding: .2em;
  margin-bottom: .5em;
}


/* 38・39 装飾ありテキスト */
.ptn38, .ptn39 {
  display: flex;
  justify-content: center;
}
.ptn38 p, .ptn39 p {
  text-align: center;
  position: relative;
}
.ptn38 p::before,
.ptn38 p::after,
.ptn39 p::before,
.ptn39 p::after {
  position: absolute;
  left: -1.5em;
  bottom: 0;
  margin: auto;
  display: block;
  width: 1.5px;
  height: 85%;
  background-color: #333;
  transform: rotate(-30deg);
  content: "";
  z-index: 10;
}
.ptn39 p::before,
.ptn39 p::after {
  background-color: #fff;
}
.ptn38 p::after, .ptn39 p::after {
  right: -1.5em;
  left: inherit;
  transform: rotate(30deg);
}

/* 40・45 装飾ありテキスト3 */
.ptn40 p {
  text-underline-offset: 0.3em;
  text-align: center;
  letter-spacing: 0.06em;
}
.ptn45 p {
  text-underline-offset: 0.3em;
  text-align: center;
  text-decoration-thickness: 5px;
  letter-spacing: 0.06em;
}


/* 41・42 左画像 右文章2 */
.ptn41 .inner, .ptn42 .inner {
  display: flex;
  margin: 0 auto;
  max-width: 1000px;
  align-items: center;
  justify-content: center;
  column-gap: 5%;
}
.ptn42 .inner {
  flex-direction: row-reverse;
}
.ptn41 .img, .ptn42 .img {
  width: 50%;
  max-width: 500px;
  margin: 0 auto;
}
.ptn41 .txt_body {
  width: 50%;
  padding-right: .5rem;
}
.ptn42 .txt_body {
  width: 50%;
  padding-left: .5rem;
}
.ptn41 .txt1, .ptn42 .txt1 {
  font-size: 18px;
  margin-bottom: .5em;
}


/* 43 表*/
.ptn43 .inner {
  padding: 0 .5rem;
}
.ptn43 .item {
  display: flex;
  justify-content: center;
  margin-bottom: .8em;
  width: 100%;
}
.ptn43 .txt1 {
  width: 250px;
  /* width: 35%; */
  text-align: center;
  padding: .5em;
  border-radius: 8px 0 0 8px;
}
.ptn43 .txt2 {
  /* width: 65%; */
  width: 450px;
  padding: .5em .5em .5em 1.3em;
  border-radius: 0 8px 8px 0;
}
.ptn43 .txt_box {
  max-width: 700px;
  margin: 1.5rem auto 0;
  padding: 1.5em;
  background-color: #fff;
  border-style: solid;
  border-width: 1.6px;
}


/* 44 画像・文章横並び(円形)2 */
.ptn44 .inner {
  padding: 0 .5rem;
}
.ptn44 ul {
  list-style: none;
  display: flex;
  max-width: 750px;
  margin: 0 auto;
  padding: 0
}
.ptn44 li {
  width: calc(100% / 3);
}

.ptn44 img {
  max-width: 12.5rem;
  background-color: #fff;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  margin: 0 auto .5rem;
  display: block;
  overflow: hidden;
  filter: drop-shadow(2px 2px 2px #ccc);
}
.ptn44 .txt_body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ptn44 .txt {
  text-align: center;
  display: inline-block;
  font-size: 90%;
  padding: 2px 7px;
}
.ptn44 .txt2 {
  margin-top: .5em;
}


/* 46 文章横並び3 */
.ptn46 .inner {
  padding: 0 .5rem;
}
.ptn46 ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1000px;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 3%;
}
.ptn46 li {
  text-align: center;
  border-radius: 50%;
  width: 10rem;
  height: 10rem;
}
.ptn46 li .txt {
  position: relative;
  display: inline-block;
  align-content: center;
  width: 10rem;
  height: 10rem;
  text-align: center;
  line-height: 1.5;
  box-sizing: border-box;
}


/* 47・48・49 テキスト */
.ptn47, .ptn48, .ptn49 {
  display: flex;
  justify-content: center;
}

/* 50 テキストボックス */
.ptn50 {
  padding: 0 .5rem;
}
.ptn50 .txt_box {
  display: block;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  border-style: solid;
  border-width: 1px;
}

/* 51 テキストボックス2 */
.ptn51 .txt_box {
  display: block;
  margin: 0 auto;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.ptn51 .title {
  padding: .5em;
  text-align: center;
}
.ptn51 .txt {
  padding: 15px 20px;
}

/* 52 画像横並び */
.ptn52 .inner {
  padding: 0 .5rem;
}
.ptn52 ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1000px;
  width: 100%;
  display: flex;
  gap: 20px 20px;
}
.ptn52 img {
  width: 100%;
}

/* 53 画像横並び2 */
/* ptn56も同様 */
.ptn53 .inner {
  padding: 0 .5rem;
}
.ptn53 ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1000px;
  width: 100%;
  display: flex;
  gap: 20px 20px;
}

.ptn53 ul li {
  width: calc(100% / 3);
}
.ptn53 img {
  width: 100%;
}

/* 54 画像横並び3 */
/* ptn55も同様 */
.ptn54 .inner {
  padding: 0 .5rem;
}
.ptn54 ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1000px;
  width: 100%;
  display: flex;
  gap: 20px 20px;
}

.ptn54 ul li {
  width: 50%;
}
.ptn54 img {
  margin: 0 auto;
  display: block;
}


/* 57・58 画像レイアウト */
.ptn57, .ptn58 {
  padding: 0 .5rem;
}
.ptn57 .inner, .ptn58 .inner {
  margin: 0 auto;
}
.ptn57 .img1, .ptn58 .img2 {
  margin-bottom: 10px;
}
.ptn57 .img2, .ptn58 .img2 {
  display: flex;
  justify-content: space-between;
  column-gap: 10px;
}

.ptn57 .img2 img, .ptn58 .img2 img {
  max-height: 380px;
  width: auto;
  object-fit: cover;
}


/* 59・60 画像レイアウト */
.ptn59, .ptn60 {
  padding: 0 .5rem;
}
.ptn59 .inner, .ptn60 .inner {
  display: flex;
  column-gap: 10px;
  margin: 0 auto;
  height: 100%;
}
.ptn59 .img1, .ptn59 .img2,
.ptn60 .img1, .ptn60 .img2 {
  flex: 1;
}
.ptn59 .img2, .ptn60 .img2 {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.ptn59 .img1 img ,.ptn60 .img1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ptn59 .img2  img, .ptn60 .img2 img{
  width: 100%;
  height: calc(50% - 5px); 
  object-fit: cover;
}


/* 61 テキストボックス3 */
.ptn61 {
  padding: 0 .5rem;
}
.ptn61 .border_box {
  position: relative;
  transform: translate(6px, 6px);
  margin: 0 auto;
}
.ptn61 .txt_box {
  display: block;
  margin: 0 auto;
  padding: 1.5em;
  transform: translate(-6px, -6px); 
} 

/* 62 装飾ありテキスト5 */
.ptn62 .txt_box {
  padding: 0.5em 1em;
  margin: 0 auto;
}
.ptn62 .txt_box p {
  padding: 0;
  margin: 0;
  text-align: center;
}

/* 67 スライダー */
.swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.ptn67 .swiper {
  width: 100%;
  max-width: 800px;
  margin: auto;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  min-width: 0;
}

.ptn67 .swiper-button-prev {
  left: -30px;
  color: #ccc;
}
.ptn67 .swiper-button-next {
  right: -30px;
  color: #ccc;
}

.ptn67 .swiper-horizontal > .swiper-pagination-bullets,
.ptn67 .swiper-pagination-bullets.swiper-pagination-horizontal,
.ptn67 .swiper-pagination-custom,
.ptn67 .swiper-pagination-fraction {
  bottom: -25px;
}
.ptn67 .swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.ptn67 .swiper-pagination-bullet-active {
  background: #333;
}


/* 68・69 カルーセル */
.carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  white-space: nowrap;
}

.carousel-slide {
  flex-shrink: 0;
  margin-right: 16px;
}

.carousel-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}



@media(min-width:1001px) {
  .ptn27 .inner {
    padding: 3rem 0;
  }
}

@media(max-width:1000px) {
  /* .ptn24 ul, .ptn25 ul {
    padding: 4rem .5rem;
  } */
	.ptn21,.ptn22,.ptn27 {
		font-size:1.6vw;	
	}

  .ptn26{
    height: 15vh;
  }
}

@media(max-width:820px) {
  .ptn24 ul, .ptn25 ul{
    justify-content: space-evenly;
  }
	.ptn24 li, .ptn25 li{
    width: 34%;
    margin-bottom: 5%;
  }
  .ptn24 li:nth-child(3),
  .ptn24 li:last-child,
  .ptn25 li:nth-child(3),
  .ptn25 li:last-child{
    margin-bottom: 0;
  }

  .ptn33 ul {
    padding: 4rem .5rem;
  }

  .ptn34 .list_body {
    max-width: 650px;
  }
  .ptn34 .list_body .list1,
  .ptn34 .list_body .list2 {
    padding: 0 1rem 0 3rem;
  }
  .ptn34 .list_body .list1 li {
    width: 47.5%;
  }

  .ptn35 ul {
    justify-content: center;
    column-gap: 4%;
  }

  .ptn35 li {
    width: 25%;
    margin-bottom: 4%;
  }
  .ptn35 li:nth-child(4),
  .ptn35 li:last-child {
    margin-bottom: 0;
  }

  .ptn37 ul {
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
  .ptn37 li {
    width: 45%;
    max-width: 320px;
  }
  .ptn43 .txt2 {
    width: 400px;
  }
  .ptn43 .txt_box {
    max-width: 650px;
  }
  

}

@media(max-width:750px) {
	.ptn21,.ptn22 {
		display:block;
		font-size:2.8vw;
		margin:4vw auto;
	}
	.ptn21 p:first-child,
	.ptn21 p:last-child,
	.ptn22 p:first-child,
	.ptn22 p:last-child{
		width:100%;
	}

  /* .ptn24 li, .ptn25 li{
    margin-bottom: 5%;
  } */
   
  .ptn27 {
    font-size: inherit;
  }
  .ptn27 .inner {
    display: block;
    padding: 2rem 0.5rem;
  }
  .ptn27 .inner .block1,
  .ptn27 .inner .block2 {
    width: 100%;
    padding: 0;
  }
  .ptn27 .inner .block1 {
    margin-bottom: 1rem;
  }

  .ptn32 ul {
    display: block;
    font-size: 3vw;
  }
  .ptn32 li {
    width: 100%;
    display: flex;
    align-items: center;
    column-gap: 2.5rem;
  }
  .ptn32 li .txt1,
  .ptn32 li .txt2{
    text-align: left;
  }

  .ptn33 ul {
    max-width: 500px;
  }
  .ptn33 li{
    width: 48%;
    margin-bottom: 2rem;
  }
  .ptn33 li:nth-child(3),
  .ptn33 li:last-child {
    margin-bottom: inherit;
  }

  .ptn41 .inner, .ptn42 .inner {
    display: block;
    padding: 0 .5rem;
  }
  .ptn41 .img,.ptn42 .img {
    width: 100%;
  }
  .ptn41 .txt_body, .ptn42 .txt_body {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .ptn41 .txt1, .ptn42 .txt1 {
    margin-top: .5em;
  }

  .ptn44 ul {
    flex-wrap: wrap;
    gap: 2rem 0;
    justify-content: center;
  }
  .ptn44 li {
    width: 40%;
    justify-content: center;
  }

  .ptn46 ul {
    max-width: 500px;
    gap: 15px 15px;
  }

  .ptn52 ul {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .ptn52 li {
    width: 47%;
  }

  .ptn53 ul, .ptn54 ul {
    display: block;
  }
  .ptn53 ul li, .ptn54 ul li {
    width: 100%;
    padding: 20px 0;
  }
    
}


@media(max-width:560px) {

  /*ページ*/
  .page_ttl {
    font-size: 160%;
    line-height: 1.3;
  }

  .ptn1 h2 {
    font-size: 130%
  }

  .ptn2 h3 {
    font-size: 120%;
    /* padding: 0 0 0 1.5em; */
    padding: 0 1em;
  }

  .ptn23, .ptn31, .ptn38, .ptn39, .ptn40, .ptn45, .ptn47, .ptn48, .ptn49, .ptn50, .ptn51, .ptn61{
    font-size: 14px;
  }
  .ptn23 table, .ptn31 table {
    max-width: 350px;
  }
  .ptn23 table th,
  .ptn31 table th {
    width: 25%;
  }
  .ptn23 table td,
  .ptn31 table td {
    width: 75%;
  }

  .ptn24, .ptn25, .ptn35, .ptn36, .ptn37, .ptn43, .ptn46 {
    font-size: 14px;
  }

  /* .ptn24 ul, .ptn25 ul{
    display: block;
  }
  .ptn24 li, .ptn25 li{
    width: 100%;
    margin-bottom: 2rem;
  }
  .ptn24 li:nth-child(3), .ptn25 li:nth-child(3) {
    margin-bottom: 2rem;
  }

  .ptn24 li:last-child, 
  .ptn25 li:last-child{
    margin-bottom: 0;
  } */
  .ptn24 img, .ptn25 img {
    max-width: 12rem;
  }
  /* .ptn24 li p, .ptn25 li p{
    text-align: center;
  } */

  .ptn26 h4{
    font-size: 115%;
  }

  .ptn27 {
    font-size: 85%;
  }
  .ptn27 .txt_box .txt2, .ptn27 table {
    font-size: inherit;
  }
  .ptn27 .table th {
    width: 25%;
  }
  .ptn27 .table td {
    width: 75%;
  }
  
  p.button{
    max-width: 20rem;
    font-size: 115%;
  }
  .button a {
    padding: .7rem 0;
  }

  .ptn28 .button a:after, .ptn29 .button a:after {
    width: 1.5rem;
    height: 1.5rem;
    right: 5%;
  }

  .ptn33 .txt {
    font-size: 14px;
  }
  .ptn33 .txt p, .ptn46 li, .ptn46 li .txt {
    width: 8rem;
    height: 8rem;
  }
  .ptn33 .mark {
    margin: -3px auto 0;
  }

  .ptn34 .list_body {
    max-width: 450px;
  }
  .ptn34 .list_body .txt1 {
    font-size: inherit;
  }
  .ptn34 .list_body .txt2 {
    font-size: 95%;
  }

  .ptn34 .list_body .list1 {
    display: block;
    font-size: 80%;
    margin: 1rem 0;
  }
  .ptn34 .list_body .list1 li {
    width: 100%;
    padding-left: .2em;
  }
  .ptn34 .list_body .list2 {
    font-size: 75%;
  }

  .ptn35 li {
    width: 170px;
  }

  .ptn37 ul {
    gap: 20px 10px;
  }
  .ptn37 li {
    width: 48%;
  }

  .ptn38 p::before, .ptn39 p::before {
    left: -0.5em;
  }
  .ptn38 p::after, .ptn39 p::after {
    right: -0.5em;
  }

  .ptn41 .inner, .ptn42 .inner {
    max-width: 350px;
  }
  .ptn41 .txt1, .ptn42 .txt1 {
    font-size: inherit;
  }
  .ptn41 .txt2, .ptn42 .txt2 {
    font-size: 14px;
  }

  .ptn43 .item {
    display: block;
    max-width: 450px;
    margin: 0 auto 1rem;
  }
  .ptn43 .txt1, .ptn43 .txt2 {
    width: 100%;
  }
  .ptn43 .txt1 {
    border-radius: 8px 8px 0 0;
  }
  .ptn43 .txt2 {
    border-radius: 0 0 8px 8px;
    text-align: center;
    padding: .5em;
  }
  .ptn43 .txt_box {
    max-width: 450px;
  }

  .ptn44 ul {
    justify-content: space-around;
  }
  .ptn44 li {
    width: 50%;
  }
  .ptn44 li:last-child {
    width: 60%;
  }
  .ptn44 img {
    max-width: 9rem;
  }
  .ptn44 .txt {
    font-size: 80%;
    padding: 1px 3px;
  }

  .ptn67 .swiper-button-prev:after,
  .ptn67 .swiper-button-next:after {
    font-size: 20px;
  }

}


@media (max-width: 561px) {
  .ptn35 li:nth-child(4) {
    margin-bottom: 4%;
  }

}


/* ptn64 左右に2つのボタン */
.ptn64 .buttons{
	text-align:center;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;

	a img{
		display:inline-block;
		max-width:300px;
		/* margin: 10px 30px; */
	}
}

/* ptn65 転送*/
.ptn65{
	padding:10px;
	background:#ddd;
	color:#fff;
	font-size:120%;
	text-align:center;
}
