@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;
  overflow-x: hidden;
}

.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;
}

/* モーダル拡大 */
/* 背景ロック（モーダル表示中は背面をスクロールさせない） */
body.imageModal-open {
  overflow: hidden;
}

/* モーダル全体 */
#imageModal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.9);
  overflow: auto;
  /* ← 縦長画像はここでスクロール */
}

/* 画像を中央寄せするラッパー */
#imageModalInner {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vh 2vw;
  box-sizing: border-box;
}

/* 拡大画像 */
#imageModal img {
  max-width: 95vw;
  max-height: 92vh;
}

/* 拡大アイコン */
.imageModal::after {
  content: "";
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 20%;
  height: 100%;
  background: url(https://winkmark.co.jp/wp-content/themes/swell_child/images/ico_search.svg) no-repeat right bottom;
  background-size: 100% auto;
  pointer-events: none;
  opacity: 0.8;
}

/* 閉じるボタン */
#imageModalClose {
  position: fixed;
  top: 12px;
  right: 24px;
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  user-select: none;
}

/* テキストのスタイル適用に使うクラス 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: 30px;
  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: .3rem 0;
  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%;
  height: 100%;
  object-fit: cover;
}


/* 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;
  font-weight: bold;
}


/* 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: 1000px;
  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;
  object-fit: cover;
  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 スライダー */
.ptn67 {
  overflow-x: hidden;
}

.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 カルーセル */
.ptn68,
.ptn69 {
  overflow-x: hidden;
}

.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;
}


/* 70 装飾ありテキスト6 */
.ptn70 .txt_box {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ptn70 .txt1 p {
  font-size: 220%;
  line-height: 1;
}

.ptn70 .txt2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ptn70 .txt2 p:first-of-type {
  font-size: 60%;
  line-height: 1.1;
}

.ptn70 .txt2 p:last-of-type {
  font-size: 100%;
  line-height: 1;
}

/* 71・72 動画 */
.ptn71 .movie-box {
  /* display: grid;
  grid-template-columns: 1fr 1fr 1fr; */
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 0 auto;
  padding: 0 5px;
  max-width: 1000px;
}

.ptn71 a.openVideo {
  display: inline-block;
  text-decoration: none;
}

/* サムネイル */
.ptn71 .thumbnail {
  position: relative;
  width: 100%;
  height: 100%;
  /* max-width: 480px; */
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  margin: 0 auto 16px;
  aspect-ratio: attr(data-aspect);
}

.ptn71 .thumbnail[data-aspect="16/9"] {
  aspect-ratio: 16 / 9;
  max-width: 700px;
}

.ptn71 .thumbnail[data-aspect="9/16"] {
  aspect-ratio: 9 / 16;
  max-width: 300px;
}

.ptn71 .thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s;
}

.ptn71 .thumbnail:hover .thumb-img {
  transform: scale(1.1);
  transition: 0.5s;
}

.ptn71 .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 10px 15px;
  transition: 0.5s;
}

.ptn71 .thumbnail:hover .play-icon {
  color: rgba(0, 0, 0, 0.5);
  background: #fff;
  transition: 0.5s;
}

/* モーダル */
.ptn71 .modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  cursor: pointer;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.ptn71 .modal.show {
  opacity: 1;
  pointer-events: auto;
}

.ptn71 .modal.hide {
  opacity: 0;
  pointer-events: none;
}

/* モーダルコンテンツ */
.ptn71 .modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1001;
}

.ptn71 .modal.show .modal-content {
  transform: translateY(0);
  opacity: 1;
}

.ptn71 .modal-content iframe {
  width: 100%;
  height: 100%;
}

.ptn71 #closeBtn {
  position: absolute;
  top: -50px;
  right: 0;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  z-index: 9999;
}


/* 73 バナー */
.ptn73 {
  padding-left: .5rem !important;
  padding-right: .5rem !important;
}

.ptn73 .banner {
  max-width: 700px;
  margin: 0 auto;
  padding: 15px;
  position: relative;
  color: #fff;
  text-align: center;
}

.ptn73 .border {
  border: solid 2px #fff;
  padding: 25px 5px 20px;
}

.ptn73 .badge {
  position: absolute;
  display: inline-block;
  top: -20px;
  right: 25px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #48423D;
}

.ptn73 .badge span {
  position: absolute;
  display: inline-block;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 110px;
  text-align: center;
  color: #fff;
  font-size: 28px;
  line-height: 1.2;
}

.ptn73 .ttl {
  position: relative;
  text-align: center;
  font-size: 28px;
  letter-spacing: .1em;
  display: inline-block;
  margin: 0 auto;
}

.ptn73 .ttl::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  width: 120%;
  height: 1.5px;
  background: #fff;
}

.ptn73 .flex {
  display: flex;
}

.ptn73 .flex.main {
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.ptn73 .image img {
  filter: drop-shadow(2px 2px 2px #999);
}

.ptn73 .main .image img {
  max-width: 160px;
  transform: rotate(-5deg);
  margin-top: 10px;
}

.ptn73 .main-text {
  font-size: 20px;
}

.ptn73 .main-text .vertical {
  writing-mode: vertical-rl;
  font-size: 25px;
  margin-left: -5px;
}

.ptn73 .main-text .big {
  font-size: 75px;
  font-weight: bold;
  font-family: 'Noto Serif JP', serif;
}

.ptn73 .sub-text {
  font-size: 30px;
  margin-top: -15px;
}

.ptn73 .cards {
  display: flex;
  justify-content: center;
  margin: 20px auto 10px;
  gap: 15px;
}

.ptn73 .card {
  background: #fff;
  color: #333;
  flex: 1;
  text-align: center;
  position: relative;
  max-width: 290px;
}

.ptn73 .label {
  background: #48423D;
  color: #fff;
  padding: 5px;
  font-size: 18px;
  white-space: nowrap;
}

.ptn73 .card img {
  max-width: 100px;
}

.ptn73 .card .flex {
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
  color: #48423D;
}

.ptn73 .card:first-child::after {
  position: absolute;
  top: 50%;
  right: -26px;
  z-index: 10;
  content: "＋";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #48423D;
  color: #fff;
  font-size: 26px;
  font-weight: bold;
}

.ptn73 .card .big {
  font-size: 30px;
  line-height: 1;
  font-family: 'Noto Serif JP', serif;
  font-weight: bold;
}

/* 74 画像・文章(中央) */
.ptn74 .wrapper {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 .5rem;
}

.ptn74 .content {
  text-align: center;
  min-width: 390px;
}

.ptn74 .ttl {
  margin-bottom: 12px;
}

.ptn74 .ttl span {
  display: block;
  letter-spacing: .1em;
}

.ptn74 .ttl .small {
  font-size: 17px;
  line-height: 1;
}

.ptn74 .ttl .big {
  font-size: 35px;
  font-family: 'Noto Serif JP', serif;
  font-weight: bold;
}

.ptn74 img {
  max-width: 100%;
  /* max-width: 300px; */
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.ptn74 .img1,
.ptn74 .img2 {
  display: flex;
  flex-direction: column;
  align-items: end;
}

.ptn74 .image-left {
  max-width: 250px;
}

.ptn74 .image-right {
  max-width: 300px;
}

.ptn74 .image-left img {
  position: relative;
  z-index: 10;
}

.ptn74 .img1 .image-left img {
  margin-left: 15px;
}

.ptn74 .img2 .image-right img {
  margin-left: -15px;
}

.ptn74 .img1 .image-right img,
.ptn74 .img2 .image-left img {
  margin-top: -15px;
}


/* 75 マップ */
.ptn75 .map {
  width: 90%;
  margin: 0 auto;
  max-width: 1000px;
}

.ptn75 iframe {
  width: 100%;
}




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

@media(max-width:1000px) {

  /* .ptn24 ul, .ptn25 ul {
    padding: 4rem .5rem;
  } */
  /* .ptn21,.ptn22 {
		font-size:1.6vw;	
	} */
  .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: 2rem .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;
  }

  .ptn74 .wrapper {
    flex-direction: column;
    gap: 15px;
  }

  .ptn74 .content {
    min-width: inherit;
    width: 100%;
  }

  .ptn74 .img1,
  .ptn74 .img2 {
    flex-direction: row;
    align-items: inherit;
  }

  .ptn74 .image-left {
    max-width: 300px;
  }

  .ptn74 .img1 .image-right img,
  .ptn74 .img1 .image-left img,
  .ptn74 .img2 .image-right img,
  .ptn74 .img2 .image-left img {
    margin: 0;
  }

}

@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%;
  }

  .ptn21 p:last-child,
  .ptn22 p:last-child {
    padding: 20px 10px;
    font-size: 14px;
  }

  /* .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;
  }

  .ptn71 .movie-box {
    flex-wrap: wrap;
  }

  .ptn71.ptn72 .movie-box {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .ptn73 .banner {
    padding: 7px;
    max-width: 500px;
  }

  .ptn73 .border {
    border: solid 1.5px #fff;
  }

  .ptn73 .badge {
    width: 70px;
    height: 70px;
    top: -25px;
    right: 13px;
  }

  .ptn73 .badge span {
    width: 70px;
    font-size: 19px;
  }

  .ptn73 .ttl {
    font-size: 24px;
  }

  .ptn73 .flex.main {
    gap: 6px;
  }

  .ptn73 .main .image img {
    max-width: 100px;
  }

  .ptn73 .main-text {
    font-size: 18px;
  }

  .ptn73 .main-text .vertical {
    font-size: 19px;
  }

  .ptn73 .main-text .big {
    font-size: 48px;
  }

  .ptn73 .sub-text {
    font-size: 22px;
  }

  .ptn73 .cards {
    gap: 10px;
  }

  .ptn73 .label {
    font-size: 14px;
    padding: 3px;
  }

  .ptn73 .card {
    max-width: 200px;
  }

  .ptn73 .card .flex {
    gap: 7px;
    padding: 7px;
  }

  .ptn73 .card img {
    max-width: 50px;
  }

  .ptn73 .card .flex p {
    font-size: 14px;
  }

  .ptn73 .card .big {
    font-size: 22px;
  }

  .ptn73 .card:first-child::after {
    width: 25px;
    height: 25px;
    font-size: 17px;
  }

  .ptn73 .card:first-child::after {
    right: -17px;
  }

  .ptn73 .note {
    text-align: left;
    font-size: 13px;
  }

}


@media(max-width:560px) {

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

  .ptn1 h2 {
    font-size: 23px;
  }

  .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 img,
  .ptn25 img {
    max-width: 12rem;
  }

  .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;
  }

  /* .ptn71.ptn72 .movie-box {
    flex-direction: column;
  } */

  .ptn74 .ttl .small {
    font-size: 15px;
  }

  .ptn74 .ttl .big {
    font-size: 28px;
  }
}


@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;
}