/*
Theme Name: サンアイランド サブページスタイル
*/
/*-----------------------------------------------
 固定ページスタイル
-----------------------------------------------*/
.page .breadcrumb-wrap {
  text-align: left;
}
.fullpage .page .breadcrumb-wrap {
  width: 80%;
  margin: 0 auto;
}
.fullpage .page .breadcrumb-wrap ul#breadcrumb {
  padding: 10px 0;
}
main.page .content-wrap {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  box-shadow: 0 0 5px rgba(150, 150, 150, .2);
}
.fullpage main.page .content-wrap {
  max-width: inherit;
  box-shadow: none;
}
main.page .content-wrap .inner {
  padding: 50px 5%;
}
#main-wrap.fullpage {
  width: 100%;
  display: block;
  margin: 80px auto 0;
}
#main-wrap.fullpage .breadcrumb-wrap {
  width: 90%;
  margin: 0 auto;
}
.fullpage ul#breadcrumb {
  box-shadow: none;
  max-width: none;
}
@media only screen and (max-width:1023px) {
  .fullpage .page .breadcrumb-wrap {
    width: 90%;
  }
}
@media only screen and (max-width:767px) {
  main.page .content-wrap .inner {
    padding: 1px 2% 50px;
  }
}
/*-----------------------------------------------
 サブページ共通ページスタイル
-----------------------------------------------*/
/* ポップアップスタイル
-------------------------*/
.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
	overflow: auto;
	width: 100%;
    height: 100%;
	padding-bottom: 80px;
}
.modal-hidden {
  display: none !important;
}
.modal-overlay {
  transition: .4s ease;
}
.modal-overlay.active {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
/* ポップアップの本体 */
.modal-content {
  position: relative;
  background: white;
  border-radius: 10px;
  max-width: 1000px;
  width: 90%;
  z-index: 2;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
	margin-bottom: 80px;
}
/* 表示時にアニメーション */
.modal.show .modal-content {
  opacity: 1;
  transform: translateY(5vh);
}
.modal-title {
  background: var(--color-theme);
  padding: 15px 20px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  position: relative;
}
.modal-desc {
  padding: 20px 30px;
}
.modal-desc p:last-child {
  margin-bottom: 0;
}
/* ✕ボタン（ポップアップ外に配置） */
.modal-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 32px;
  height: 32px;
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
.modal-close::before, .modal-close::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  background-color: #333;
  transform-origin: center;
  transition: 0.3s;
}
.modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal-close:hover {
  background-color: #1a8093;
}
.modal .modal-close:hover {
  background-color: #ffa500;
}
.modal-close:hover::before, .modal-close:hover::after {
  background-color: #fff;
}
/* ヘッダー
----------------------*/
.sub-heading {
  font-size: 2rem;
  line-height: 1.5;
  text-align: center;
  font-weight: bold;
  padding: 0 10px 50px;
}
.sub-heading::before {
  content: attr(data-en);
  display: block;
  margin-bottom: 10px;
  color: var(--color-theme);
  font-size: 1.2rem;
}
.sub-heading::after {
  content: " ";
  display: block;
  border-bottom: solid 2px var(--color-theme);
  width: 50px;
  text-align: center;
  margin: 20px auto;
}
.sub-heading .subtitle {
  font-size: 1.0rem;
  font-weight: normal;
  margin-top: 10px;
}
@media only screen and (max-width:767px) {
  .sub-heading {
    font-size: 1.5rem;
  }
  .sub-heading::before {
    font-size: 1.0rem;
  }
}
.t {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 40px;
  text-align: center;
  color: var(--color-blue);
}
.t em {
  font-style: normal;
  background: linear-gradient(var(--color-blue), var(--color-blue)) repeat-x center bottom 10%;
  background-size: 1px 1px;
  padding-bottom: 5px;
}
.t1 {
  font-size: 1.5rem;
  font-family: 'Noto Serif JP', serif;
  color: var(--color-brown);
  margin-bottom: 10px;
}
@media only screen and (max-width:767px) {
  .t {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  .t1 {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
}
/* flex box
----------------------*/
.flex {
  display: flex;
  justify-content: space-between;
}
.flex .desc {
  max-width: calc(100% - 320px);
  width: 500px;
}
.flex .image {
  width: 300px;
}
@media only screen and (max-width:767px) {
  .flex {
    flex-direction: column;
    align-items: center;
  }
  .flex .desc {
    max-width: 100%;
    width: auto;
  }
  .flex .image {
    width: auto;
  }
}
/* CTA
----------------------*/
.common-inner.cta {
  max-width: 1000px;
}
.common-inner.cta .desc {
  font-size: 1.1rem;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 1em;
}
.cta ul.contact {
  display: flex;
  justify-content: center;
  list-style-type: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.cta ul.contact li {
  margin: 0;
  padding: 20px 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  text-align: center;
}
.cta ul.contact li + li:before {
  position: absolute;
  content: '';
  width: 1px;
  height: 55%;
  background-color: #ddd;
  top: 35%;
  transform: translateY(-50%);
  left: 0;
  bottom: 0;
}
.cta ul.contact li .caption {
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 1em 0 0;
}
.cta ul.contact li .flex {
  display: flex;
  justify-content: start;
  align-items: center;
  width: fit-content;
  transition: 0.5s;
  margin: 0 auto;
}
.cta ul.contact li img {
  transition: 0.5s;
  margin: 0 auto;
}
.cta ul.contact li .flex .tel {
  font-size: 3.0rem;
  font-weight: bold;
  margin: 0 0 0 10px;
  padding: 0;
  line-height: 3.0rem;
  color: #000;
}
.cta ul.contact li .flex:hover, .cta ul.contact li img:hover {
  transform: scale(1.1);
}
@media only screen and (max-width:1023px) {
  .cta ul.contact li:nth-child(2) {
    padding: 0;
    display: block;
    width: 100%;
  }
  .cta ul.contact li:nth-child(2):before {
    position: absolute;
    content: '';
    width: 300px;
    height: 1px;
    background-color: #ddd;
    top: -8px;
    transform: translateX(-50%);
    left: 50%;
    bottom: 0;
  }
  .cta ul.contact li .flex {
    margin-top: 10px;
  }
}
@media only screen and (max-width:767px) {
  .cta ul.contact li {
    padding: 20px 15px;
  }
  .cta ul.contact li .caption {
    font-size: 0.9rem;
  }
  .cta ul.contact li img {
    width: 80%;
  }
  .cta .desc {
    font-size: 100%;
  }
  .cta ul.contact li .flex img {
    width: 20px;
  }
  .cta ul.contact li .flex .tel {
    font-size: 2.0rem;
  }
}
/*-----------------------------------------------
 リストスタイル
-----------------------------------------------*/
/* 基本リスト（リストマーク ・ ）
----------------------*/
ul.baselist {
  list-style-type: disc;
  padding-left: 1.2rem;
  margin: 0;
  line-height: 2;
}
/* 注意書きリスト（リストマーク ※ ）
----------------------*/
ul.note li {
  position: relative;
  padding-left: 1.2em;
	margin-bottom: 1.0rem;
}
ul.note li:last-child {
	margin-bottom: 0;
}

ul.note li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
/* 注意書きリスト（リストマーク なし ）
----------------------*/
ul.nomarklist {
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
}
ul.nomarklist li {
  line-height: 2.0rem;
  margin-bottom: 0;
}
ul.nomarklist li span.item {
  display: block;
  background-color: var(--color-content1);
  padding: 5px;
  margin: 5px 0 0;
}
ul.nomarklist li .title {
  background-color: var(--color-content1);
  padding: 5px;
  margin: 5px 0 0;
}
/* 横並びリスト（リストマーク ・　）
-------------------------------*/
ul.hrlist {
  list-style-type: disc;
  padding-left: 1.5em;
  margin: 0;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  width: 100%;
}
ul.hrlist.col2 li {
  width: calc(100% / 2);
}
ul.hrlist li {
  width: calc(100% / 3);
}
@media only screen and (max-width:767px) {
  ul.hrlist li {
    width: 100%;
  }
}
/* Pointリスト（リストマーク POINT#　）
------------------------------------*/
ul.points > li {
  position: relative;
  padding: 40px 40px 40px 0px;
  counter-increment: point;
  border-bottom: 1px dotted var(--color-blue);
}
ul.points > li:last-child {
  border-bottom: none;
  padding: 40px 40px 0 0;
}
ul.points > li > span {
  position: absolute;
  width: 110px;
  height: 110px;
  left: 0px;
  top: 40px;
  color: var(--color-blue);
  border: var(--color-blue) solid 1px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: optima, minerva-modern, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
ul.points > li > span:after {
  content: counter(point);
  font-size: 2.5rem;
  font-style: italic;
  line-height: 1;
  display: block;
}
ul.points .title {
  padding-left: 140px;
  font-size: 1.5rem;
  color: var(--color-blue);
  margin-bottom: 10px;
}
ul.points p {
  padding-left: 140px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 0px;
}
@media only screen and (max-width:767px) {
  ul.points > li {
    padding: 40px 0px;
  }
  ul.points > li > span {
    position: static;
    margin: 0 auto 15px;
  }
  ul.points .title {
    padding-left: 0px;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 5px;
  }
  ul.points p {
    padding-left: 0px;
  }
}
/* 関連リスト（リストマーク なし　）
------------------------------------*/
ul.related {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
ul.related li a {
  display: flex;
  width: 100%;
  min-height: 100%;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  background-color: var(--color-content3);
  border-radius: 10px;
  box-shadow: 0px 3px 0px #E8E8E8;
  padding: 30px;
}
ul.related li a:hover {
  box-shadow: none;
  transform: translateY(3px);
  color: inherit;
}
ul.related li .title {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-blue);
  display: flex;
  align-items: center;
  border-bottom: var(--color-blue) dotted 1px;
  margin-bottom: 15px;
}
ul.related li .title:after {
  font-family: 'FontAwesome';
  content: '\f0c1';
  font-size: 0.8rem;
  margin-left: 5px;
}
ul.related li .title.ex:after {
  content: '\f08e';
}
ul.related li p {
  font-size: 1.0rem;
  line-height: 1.8;
  margin-bottom: 0;
}
@media only screen and (max-width:1023px) {
  ul.related {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width:767px) {
  ul.related {
    grid-template-columns: 1fr;
  }
}
/* フローティング目次スタイル
------------------------------------ */
.toc {
  width: 150px;
  position: fixed;
  z-index: 100;
  top: 50%;
  left: 0px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  font-size: 0.8rem;
  color: #fff;
  transform: translate3d(-130px, -50%, 0);
  transition: all 0.2s ease-out;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.toc.show {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.toc.on {
  transform: translate3d(0px, -50%, 0);
}
.toc li {
  margin-bottom: 2px;
  padding-right: 22px;
}
.toc li:nth-last-child(2) {
  margin-bottom: 0;
}
.toc a {
  background-color: #068aef;
  color: #fff;
  padding: 10px 5px;
  display: flex;
  align-items: center;
  transition: 0.3s;
  line-height: 1.3;
}
.toc a:hover {
  background-color: var(--color-hover);
}
.toc li.current a {
  opacity: 1;
  background-color: var(--color-theme);
}
.toc span {
  position: absolute;
  width: 20px;
  height: 100%;
  border-radius: 0px 5px 5px 0px;
  background-color: var(--color-theme);
  right: 0px;
  top: 0px;
  cursor: pointer;
  transition: all 0.15s ease-out;
}
.toc span:hover {
  background-color: #ffc835;
}
.toc span:after {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "目次";
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 13px;
  letter-spacing: 1.5em;
  text-align: center;
}
/*-----------------------------------------------
 ショップ紹介ページスタイル
-----------------------------------------------*/
/* タイル画像
---------------------------*/
section.topEyecatch {
  width: 90%;
  margin: 0 auto;
}
#tileImagesWrap {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .625rem;
}
#tileImagesWrap .item:first-child {
  grid-row: span 2;
  grid-column: span 2;
}
#tileImagesWrap .item.hidden-image {
  display: none;
}
#tileImagesWrap .item a {
  display: block;
  height: 100%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
}
#tileImagesWrap .item a:hover {
  opacity: 0.7;
}
#tileImagesWrap img {
  margin: 0;
  object-fit: cover;
  height: 100%;
  border-radius: 10px;
}
#tileImagesWrap .item .overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(35, 35, 35, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.0rem;
  color: #fff;
  font-weight: bold;
}
#tileImagesWrap .item .counter {
  display: none;
}
@media only screen and (max-width:1024px) {
  #tileImagesWrap .item .overlay {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width:639px) {
  #tileImagesWrap {
    display: flex;
    gap: 0;
  }
  #tileImagesWrap .item {
    height: 35vh;
  }
  #tileImagesWrap .item.hidden-image {
    display: block;
  }
  #tileImagesWrap .item .overlay {
    display: none;
  }
  #tileImagesWrap .item .counter {
    display: block;
    position: absolute;
    top: 0.625rem;
    left: 0.625rem;
    background: rgb(35, 35, 35, 0.2);
    border-radius: 9999px;
    padding: 0.3rem 0.7rem;
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 12px;
  }
}
/* タイトルエリア
---------------------------*/
.page-template-template-shop .topContent .titleWrap {
  width: 90%;
  max-width: inherit;
  padding: 0;
}
.page-template-template-school .topContent .titleWrap {
  width: 90%;
  max-width: inherit;
  padding: 0 0 80px;
}
.page-template-template-shop .topContent .txtWrap, .page-template-template-school .topContent .txtWrap {
  width: 60%;
}
.page-template-template-shop .topContent .imgWrap {
  width: 30%;
  margin: 0 auto;
  padding: 0 30px;
  text-align: center;
}
.page-template-template-school .topContent .imgWrap {
  width: 40%;
  margin: 0 auto;
  padding: 0 30px;
  text-align: center;
}
@media only screen and (max-width:1023px) {
  .page-template-template-shop .topContent .txtWrap, .page-template-template-shop .topContent .imgWrap, .page-template-template-school .topContent .txtWrap, .page-template-template-school .topContent .imgWrap {
    width: 100%;
  }
}
/* commitment list style
---------------------------*/
ul.commitment-list {
  list-style-type: none;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  margin: 0 auto 50px;
  padding: 0;
  max-width: 1000px;
  line-height: inherit;
}
ul.commitment-list li {
  width: calc(100% / 3);
  padding: 20px;
  margin: 0;
  background-color: #fff;
}
ul.commitment-list li:nth-child(even) {
  background-color: #f0f0f0;
}
ul.commitment-list li .ico {
  position: relative;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}
ul.commitment-list li .ico img {
  border-radius: 10px;
}
ul.commitment-list li .title {
  font-size: inherit;
  text-align: center;
  font-weight: bold;
  padding: 5px 0;
  cursor: inherit;
}
@media only screen and (max-width:767px) {
  ul.commitment-list li {
    width: calc(100% / 2);
  }
  ul.commitment-list li:nth-child(even) {
    background-color: #fff;
  }
  ul.commitment-list li:nth-child(2), ul.commitment-list li:nth-child(3), ul.commitment-list li:nth-child(6), ul.commitment-list li:nth-child(7) {
    background-color: #f0f0f0;
  }
}
@media only screen and (max-width:430px) {
  ul.commitment-list li {
    width: 100%;
    padding: 40px;
  }
  ul.commitment-list li:nth-child(2), ul.commitment-list li:nth-child(3), ul.commitment-list li:nth-child(6), ul.commitment-list li:nth-child(7) {
    background-color: #fff;
  }
  ul.commitment-list li:nth-child(even) {
    background-color: #f0f0f0;
  }
}
/* 代表メッセージ
----------------------*/
.manager {
  width: 250px;
  margin: 30px 0 0 auto;
}
.manager img {
  margin-bottom: 5px;
  border-radius: 50%;
}
@media only screen and (max-width:767px) {
  .manager {
    margin: 30px auto 0;
  }
}
/* スタッフ紹介
----------------------*/
ul.staff-list {
  display: flex;
  flex-direction: column;
  max-width: 1000px;
  gap: 20px;
  margin: 0 auto;
}
ul.staff-list > li {
  display: flex;
  gap: 3px;
}
ul.staff-list > li .staffslider {
  position: relative;
  width: 400px;
}
ul.staff-list > li .staffslider .swiper {
  height: 100%;
}
ul.staff-list > li img {
  margin: 0;
  object-fit: cover;
  height: 100%;
}
.staff-data {
  margin: 0;
  border: none;
  width: calc(100% - 403px) !important;
}
.staff-data tr {
  border-bottom: 3px solid #fff;
}
.staff-data tr:last-child {
  border-bottom: none;
}
.staff-data th {
  white-space: nowrap;
}
.staff-data th, .staff-data td {
  border: none;
}
ul.staff-list .staff-data span {
  font-size: 0.8rem;
  padding-left: 0.8rem;
}
@media(max-width:1023px) {
  ul.staff-list > li {
    display: block;
  }
  ul.staff-list > li .staffslider {
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
  }
  .staff-data {
    width: 100% !important;
    max-width: 600px;
    margin: 3px auto 0;
  }
}
/* ショップ紹介
----------------------*/
.shop-info .shop-content {
  max-width: 800px;
  line-height: 1.8em;
}
.shop-info .imgSwiper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 1.5em;
}
.shop-data {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #ddd;
}
.shop-data .title {
  width: 20%;
  padding: 8px 12px;
  font-weight: bold;
  white-space: nowrap;
}
.shop-data .info {
  width: 80%;
  padding: 8px 12px;
}
.shop-data .closed ul.hrlist li {
  padding: 0;
}
.shop-data .closed ul.hrlist {
  margin: 0;
}
.media .swiper-pagination {
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
}
@media screen and (max-width:1024px) {
  section.shop-info .shop-content {
    max-width: 100%;
    padding: 50px 5%;
  }
}
@media screen and (max-width:768px) {
  .shop-data .title {
    width: 25%;
    padding: 8px;
  }
  .shop-data .info {
    width: 75%;
    padding: 8px;
  }
}
@media only screen and (max-width:480px) {
  .shop-data.wrap {
    display: block;
  }
  .shop-data.wrap .title {
    width: 100%;
  }
  .shop-data.wrap .info {
    width: 100%;
    padding: 0 8px 8px 8px;
  }
}
/*-----------------------------------------------
 ライセンス講習ページスタイル
-----------------------------------------------*/
section#beginner {
  padding: 60px 0 0;
}
section#stepup {
  position: relative;
  padding: 100px 0 0;
  background-color: #EFEFEF;
}
section#stepup::before {
  content: "";
  position: absolute;
  top: 0;
  border: 49.5vw solid transparent;
  border-top: 50px solid #fff;
}
section#stepup ul.accordion-area > li {
  position: relative;
  padding: 50px 0 0;
}
section#stepup ul.accordion-area li .title {
  padding: 40px;
}
section#stepup ul.accordion-area > li::before {
  content: "";
  position: absolute;
  top: 0;
  border: 49.5vw solid transparent;
}
section#stepup ul.accordion-area > li:nth-child(1) {
  background-color: #EFEFEF;
  padding: 0;
}
section#stepup ul.accordion-area > li:nth-child(2) {
  background-color: #DCDDDD;
}
section#stepup ul.accordion-area > li:nth-child(2)::before {
  border-top: 50px solid #EFEFEF;
}
section#stepup ul.accordion-area > li:nth-child(3) {
  background-color: #C9CACA;
}
section#stepup ul.accordion-area > li:last-child {
  padding-bottom: 50px;
}
section#stepup ul.accordion-area > li:nth-child(3)::before {
  border-top: 50px solid #DCDDDD;
}
section#stepup ul.accordion-area li section {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  border: none;
}
section#stepup ul.accordion-area li .title::before, section#stepup ul.accordion-area li .title::after {
  left: 15px;
}
section#stepup ul.accordion-area li .title:hover {
  color: var(--color-theme);
}
section#stepup ul.accordion-area li .content {
  padding: 0 40px 40px;
}
ul.skillup {
  list-style: none;
  max-width: 1200px;
  margin: 0 auto;
}
ul.skillup > li:not(:last-child) {
  margin-bottom: 80px;
}
ul.skillup li .overview {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}
ul.skillup li .overview .image-area {
  width: 40%;
}
ul.skillup li .overview .desc-area {
  position: relative;
  width: calc(60% - 30px);
  line-height: 2;
}
ul.skillup li .overview .desc-area .catch {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
ul.skillup li .detail {
  display: flex;
  justify-content: center;
}
section#other {
  padding: 60px 0;
}
section#other ul.skillup {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width:767px) {
  section#stepup::before {
    border-top: 30px solid #fff;
  }
  section#stepup ul.accordion-area > li:nth-child(2)::before {
    border-top: 30px solid #EFEFEF;
  }
  section#stepup ul.accordion-area > li:nth-child(3)::before {
    border-top: 30px solid #DCDDDD;
  }
  section#stepup ul.accordion-area li section {
    width: 94%;
  }
  section#other ul.skillup {
    padding: 0 20px;
    width: 94%;
  }
  section#stepup ul.accordion-area li .content {
    padding: 0 20px 40px;
  }
  section#stepup ul.accordion-area li .title {
    padding: 20px 40px;
    font-size: 1.2rem;
  }
  ul.skillup li .overview {
    flex-direction: column;
    gap: 10px;
  }
  ul.skillup li .overview.reverse {
    flex-direction: column-reverse;
  }
  ul.skillup li .overview .image-area, ul.skillup li .overview .desc-area {
    width: 100%;
  }
  ul.skillup li .overview .desc-area .catch {
    font-size: 1.2rem;
    text-align: center;
  }
  ul.skillup li .detail {
    padding-top: 30px;
  }
}
/*-----------------------------------------------
 メニューページスタイル
-----------------------------------------------*/
.fullpage .menu-header {
  max-width: 90%;
  margin: 0 auto;
}
.menu-mainimg img {
  margin: 0 auto;
  border-radius: 20px;
}
.menu-header .catch {
  text-align: center;
  font-size: 1.8rem;
  padding: 10px 0 10px;
}
ul.supplement {
  list-style-type: disc;
  text-align: left;
  margin: 10px auto;
  padding: 15px 20px 15px 40px;
  border-radius: 10px;
  width: fit-content;
  max-width: 720px;
  background: var(--color-content1);
  border: 1px solid var(--color-theme);
}
ul.supplement.fullwidth {
  max-width: 100%;
}
.menu-header .catch ul.supplement {
  font-size: 1.2rem;
}
ul.supplement li {
  line-height: 1.8rem;
  margin-bottom: 1.0rem;
}
ul.supplement li:last-child {
  margin-bottom: 0;
}
.menu-header .desc {
  max-width: 800px;
  margin: 0 auto;
}
@media only screen and (max-width:767px) {
  ul.supplement {
    font-size: 1.0rem;
  }
}
/* merit style
---------------------------*/
.merit-wrap {
  margin: 50px auto;
  padding: 50px;
  background: var(--color-content3);
  max-width: 800px;
  border-radius: 10px;
}
.merit-wrap .headline {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  padding: 0 0 30px 0;
  margin: 0 0 35px 0;
  border-bottom: 1px solid #ddd;
}
ul.merit li {
  margin: 0 0 20px 0;
  padding: 0 0 0 35px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
ul.merit li:last-child {
  margin-bottom: 0;
}
ul.merit li:before {
  border: 1px solid var(--color-theme);
  color: var(--color-theme);
  font-family: 'FontAwesome';
  content: '\f00c';
  font-size: 12px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  display: block;
  position: absolute;
  left: 0;
  top: 1px;
  bottom: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media only screen and (max-width:767px) {
  .menu-header .catch {
    font-size: 1.2rem;
  }
  .merit-wrap {
    margin: 30px auto;
    padding: 30px;
  }
  .merit-wrap .headline {
    padding: 0 0 20px 0;
    margin: 0 0 25px 0;
  }
}
/* health style
---------------------------*/
.health-wrap .condition {
  font-size: 1.2rem;
  border-left: 5px solid var(--color-theme);
  padding: 8px 0 8px 10px;
  margin-bottom: 10px;
  background-color: #f0f0f0f0;
}
/* CTAボタン
---------------------------*/
.cta_btn_area {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 50px 0 80px;
}
.cta_btn_area .btn {
  width: 45%;
  min-width: 250px;
  max-width: 320px;
  margin: 0 10px;
}
.cta_btn_area .btn a {
  background: var(--color-theme);
  padding: 25px 15px;
  letter-spacing: 1px;
  color: #fff;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}
.cta_btn_area .btn a:hover {
  opacity: 0.7;
}
.cta_btn_area .btn a:before {
  font-family: 'FontAwesome';
  font-size: 15px;
  margin-right: 10px;
}
.cta_btn_area .btn.tel a:before {
  content: '\f095';
}
.cta_btn_area .btn.mail a:before {
  content: '\f1d8';
}
@media only screen and (max-width:767px) {
  .cta_btn_area {
    margin: 30px 0;
  }
  .cta_btn_area .btn {
    margin-bottom: 10px;
  }
}
/* スケジュール
---------------------------*/
.schedule-wrapper {
  margin: 0 0 20px 0;
  padding: 0;
  border-bottom: 1px solid #ccc;
}
.schedule-wrapper .schedule-border {
  margin: 0;
  padding: 0;
  position: relative;
  border-bottom: 1px solid #ccc;
  box-sizing: border-box;
}
.schedule-wrapper .schedule-border:first-child {
  padding-top: 0;
}
.schedule-wrapper .schedule-border:before {
  content: "";
  position: absolute;
  bottom: -23px;
  left: 50%;
  margin-left: -12px;
  border: 12px solid transparent;
  border-top: 12px solid #FFF;
  z-index: 3;
}
.schedule-wrapper .schedule-border:after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  margin-left: -12px;
  border: 12px solid transparent;
  border-top: 12px solid #ccc;
  z-index: 2;
}
.schedule-wrapper .schedule-border:last-child {
  border: none;
}
.schedule-wrapper .schedule-border:last-child:before {
  border: none;
}
.schedule-wrapper .schedule-border:last-child:after {
  border: none;
}
.schedule-wrapper .schedule-border .schedule-content {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
}
.schedule-wrapper .schedule-border .schedule-content:after {
  content: "";
  position: absolute;
  bottom: -45px;
  left: 50%;
  margin-left: -22px;
  border: 22px solid transparent;
  border-top: 22px solid var(--color-theme);
  z-index: 1;
}
.schedule-wrapper .schedule-border .schedule-content.border-none:after {
  border: none;
}
.schedule-wrapper .schedule-border .schedule-content .l-content {
  width: 20%;
  font-weight: bolder;
  color: #666;
  margin: 0;
  padding: 20px;
  font-size: 1.8rem;
  box-sizing: border-box;
  text-align: center;
}
.schedule-wrapper .schedule-border .schedule-content .l-content span.num {
  font-size: 4.3rem;
  font-weight: bolder;
  color: var(--color-theme);
}
.schedule-wrapper .schedule-border .schedule-content .r-content {
  margin: 0;
  padding: 0;
  width: 80%;
}
.schedule-wrapper .schedule-border .schedule-content .inner {
  margin: 25px 0 0;
  padding: 0 0 25px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  align-items: center;
}
.schedule-wrapper .schedule-border .schedule-content .inner:last-child {
  border: none;
}
.schedule-wrapper .schedule-border .schedule-content .inner .icon {
  margin: 0;
  padding: 0;
  width: 20%;
  align-items: center;
  display: flex;
  justify-content: center;
}
.schedule-wrapper .schedule-border .schedule-content .inner .icon.column {
  flex-flow: column;
}
.schedule-wrapper .schedule-border .schedule-content .inner .icon img {
  margin: 0;
  padding: 0;
}
.schedule-wrapper .schedule-border .schedule-content .inner .icon.column img {
  margin: 20px !important;
}
.schedule-wrapper ul.flow-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 80%;
}
.schedule-wrapper ul.flow-list li {
  display: flex;
  gap: 20px;
}
.schedule-wrapper ul.flow-list li:last-child {
  margin-bottom: 0;
}
.schedule-wrapper ul.flow-list li > div {
  height: auto;
  position: relative;
}
.schedule-wrapper ul.flow-list li > div::before {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  left: 20px;
  border-right: solid 1px var(--color-theme);
  z-index: -100;
}
.schedule-wrapper ul.flow-list li > div span {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-theme);
  border-radius: 50%;
  color: white;
}
.schedule-wrapper ul.flow-list dl {
  width: 100%;
  margin-bottom: 0;
}
.schedule-wrapper ul.flow-list dt {
  padding: 5px;
  font-weight: bold;
}
.schedule-wrapper ul.flow-list dd {
  color: #000;
  margin: 0;
  padding: 5px 5px 15px;
  border-bottom: 1px solid #ddd;
}
.schedule-wrapper ul.flow-list dd p {
  padding: 0;
}
@media only screen and (max-width:1439px) {
  .schedule-wrapper .schedule-border .schedule-content .l-content {
    font-size: 1.3rem;
    padding: 0px;
    width: 15%;
  }
  .schedule-wrapper .schedule-border .schedule-content .l-content span.num {
    font-size: 2.3rem;
  }
  .schedule-wrapper .schedule-border .schedule-content .r-content {
    width: 85%;
  }
  .inner ul.flow-list li {
    gap: 10px;
  }
}
@media only screen and (max-width:767px) {
  .schedule-wrapper .schedule-border .schedule-content {
    display: block;
  }
  .schedule-wrapper .schedule-border .schedule-content .l-content {
    width: 100%;
    margin: 20px 0 0;
    font-size: 1.5rem;
  }
  .schedule-wrapper .schedule-border .schedule-content .l-content span.num {
    font-size: 3.0rem;
  }
  .schedule-wrapper .schedule-border .schedule-content .r-content {
    width: 100%;
  }
  .schedule-wrapper .schedule-border .schedule-content .r-content .inner {
    display: block;
    margin: 0;
    padding: 0;
  }
  .schedule-wrapper ul.flow-list {
    width: 100%;
  }
  .schedule-wrapper .schedule-border .schedule-content .inner .icon {
    width: 100%;
  }
}
/* こだわり
---------------------------*/
ul.recommend-list {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
}
ul.recommend-list.noimage {
  max-width: 1000px;
  margin: 0 auto;
}
ul.recommend-list > li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
ul.recommend-list > li:not(:last-child) {
  margin-bottom: 50px;
}
ul.recommend-list li .title-area {
  width: 65%;
  margin: 0;
}
ul.recommend-list.noimage li .title-area {
  width: 100%;
}
ul.recommend-list li .title-area .title {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #fff;
  font-size: 1.2rem;
}
.bg-blue2 ul.recommend-list li .title-area .title {
  border-color: inherit;
}
ul.recommend-list li .title-area .desc {
  margin: 0;
  padding: 10px 0 0;
}
ul.recommend-list li .img-area {
  width: 35%;
  margin: 0;
  padding: 0;
}
ul.recommend-list li .img-area img {
  border-radius: 10px;
}
@media(max-width:768px) {
  ul.recommend-list li {
    gap: 0;
  }
  ul.recommend-list li:nth-child(odd) {
    flex-direction: column-reverse;
  }
  ul.recommend-list li:nth-child(even) {
    flex-direction: column;
  }
  ul.recommend-list li .title-area {
    width: 100%;
  }
  ul.recommend-list li .title-area .title {
    font-size: 1.1rem;
  }
  ul.recommend-list li .img-area {
    width: 100%;
    margin-bottom: 10px;
  }
  ul.recommend-list li .img-area img {
    margin: 0 auto;
  }
}
/*-----------------------------------------------
 特集ページスタイル
-----------------------------------------------*/
section.common-wrap .common-inner#link {
  max-width: 1000px;
}
.page-template-template-ena-php #commitment {
  background: var(--color-content2);
  border-radius: inherit;
}
/* 季節ごとの見所
---------------------------*/
.seasonThumb {
  max-width: 1000px;
  width: calc(100% - 60px);
  margin: 0 auto;
  padding: 0 30px;
}
.seasonThumb ul li {
  position: relative;
  padding: 10px;
  margin: 0 auto;
  max-width: 180px;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.seasonThumb ul li:hover {
  cursor: pointer;
}
.seasonThumb ul li::before {
  position: absolute;
  transform: translateY(-30%);
  color: #fff;
  font-size: 5rem;
  font-weight: bold;
  font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  opacity: 0;
  z-index: 2;
  transition: var(--transition);
}
.seasonThumb ul li:hover::before {
  opacity: 0.7;
}
.seasonThumb ul li:nth-child(1)::before {
  content: '春';
}
.seasonThumb ul li:nth-child(2)::before {
  content: '夏';
}
.seasonThumb ul li:nth-child(3)::before {
  content: '秋';
}
.seasonThumb ul li:nth-child(4)::before {
  content: '冬';
}
.seasonThumb ul li::after {
  content: '\f13a';
  font-family: fontAwesome;
  color: #999;
  font-size: 1.5rem;
  transition: var(--transition);
}
.seasonThumb ul li:hover::after {
  color: var(--color-hover);
}
.seasonThumb ul li .image {
  border-radius: 50%;
  background: #000;
  overflow: hidden;
}
.seasonThumb ul li:hover img {
  transition: var(--transition);
}
.seasonThumb ul li:hover img {
  opacity: 0.5;
}
.seasonThumb p {
  font-size: 1.2rem;
  margin: 10px 0 5px;
  transition: var(--transition);
}
.seasonThumb ul li:hover p {
  color: var(--color-hover);
}
.seasonListWrap {
  overflow: hidden;
}
.seasonList {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 10px 0 100px;
  overflow: visible;
}
.seasonList ul.season > li {
  max-width: 1200px;
  width: calc(100% - 60px);
  height: -moz-fit-content;
  height: fit-content;
  padding: 60px;
  margin: 0 30px;
  border-radius: 30px;
  background-color: #FFFFFF;
  cursor: grab;
  box-shadow: 5px 5px 10px rgb(0, 0, 0, 0.3);
}
.seasonList ul.season > li:active {
  cursor: grabbing;
}
.seasonList img {
  border-radius: 10px;
}
.seasonList .topContent {
  display: flex;
  gap: 20px;
}
.seasonList .topContent .image-area {
  width: 40%;
}
.seasonList .topContent .desc-area {
  width: 60%;
}
.seasonList .topContent .desc-area .subtitle {
  text-align: center;
  margin: 0 0 10px;
  font-weight: bold;
}
.seasonList .btmContent .separator {
  display: table;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-theme);
  margin: 40px auto;
  border-bottom: 1px solid var(--color-theme);
}
@media only screen and (max-width:1200px) {
  .seasonList .topContent {
    display: block;
  }
  .seasonList .topContent .image-area, .seasonList .topContent .desc-area {
    width: 100%;
  }
}
@media only screen and (max-width:1023px) {
  .seasonThumb p {
    font-size: 0.8rem;
  }
}
@media only screen and (max-width:767px) {
  .seasonThumb {
    width: 100%;
    padding: 0;
  }
  .seasonThumb .swiper-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .seasonThumb ul li {
    padding: 5px;
  }
  .seasonList ul.season > li {
    width: calc(100% - 20px);
    padding: 30px;
    margin: 0 10px;
  }
}
@media only screen and (max-width:425px) {
  .seasonThumb ul li::before {
    font-size: 4rem;
  }
  .seasonList ul.season > li {
    width: calc(100% - 10px);
    padding: 20px;
    margin: 0 5px;
  }
  .seasonList .btmContent .separator {
    font-size: 1.1rem;
    margin: 40px auto 20px;
  }
}
/* ダイビングスポット
---------------------------*/
.divingspot svg {
	width: 100%;
	height: 100%;
}
.divingspot svg a {
	cursor: pointer;
}
.divingspot svg a.svg-btn .bg {
	transition: var(--transition);
  filter: drop-shadow(0px 4.4px 4.4px rgba(0,0,0,0.05));
}
.divingspot svg a.svg-btn:hover .bg {
	fill: var(--color-content1);
}
.divingspot .modal-desc .image-area img {
  margin: 0 auto;
}
.divingspot table.rps_table {
  max-width: 400px;
}
/*-----------------------------------------------
 ブログ記事スタイル
-----------------------------------------------*/
main > article, #single-main .post-sub {
  -webkit-box-shadow: 0 0 5px #ddd;
  -moz-box-shadow: 0 0 5px #ddd;
  box-shadow: 0 0 5px #ddd;
  -webkit-box-shadow: 0 0 0 5px rgba(150, 150, 150, .2);
  -moz-box-shadow: 0 0 5px rgba(150, 150, 150, .2);
  box-shadow: 0 0 5px rgba(150, 150, 150, .2);
}
main > article .post-meta, .article_footer {
  padding: 1em 20px;
}
@media only screen and (max-width:768px) {
  .article_footer {
    padding: 0;
    margin-top: -5px;
  }
}
/* ヘッダー
---------------------------*/
.cat-tag {
  max-width: 2000px;
  margin: 0 auto;
}
article .single-post-category {
  display: inline-block;
  margin-right: 5px;
  padding: .3em .5em;
  border-radius: 2px;
  margin-top: 5px;
  vertical-align: middle;
  background: #333;
  font-size: .8em;
}
article .single-post-category a {
  color: #fff;
  vertical-align: middle;
}
#single-main .post-meta .tag, #single-main .article_footer .tag {
  display: inline-block;
  margin-right: 5px;
  padding: .3em .5em;
  border-radius: 2px;
  margin-top: 5px;
  vertical-align: middle;
  background: #efefef;
  font-size: .8em;
}
#single-main .post-meta .tag:before, #single-main .article_footer .tag:before {
  content: '\f02b';
  margin-right: 5px;
  color: #7e9da7;
  font-family: fontAwesome;
}
h2.single-post-title {
  max-width: 2000px;
  margin: 10px auto;
}
/* 投稿日・更新日・投稿者情報
---------------------------*/
article .post-meta-bottom {
  float: left;
  font-size: .85em;
  margin-bottom: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.single-post-date, .post-meta-bottom span {
  margin-right: 8px;
}
.single-post-date.published {
  color: #999;
}
#single-main .post-author.author {
  position: relative;
  float: right;
  display: block;
  margin-bottom: 12px;
  margin-top: -8px;
}
/* 記事スタイル
---------------------------*/
.single-post-main {
	clear: both;
  margin-bottom: 10px;
  padding: 1em 40px;
}
.single-post-main .content img {
  border-radius: 20px;
}
.single-post-main .content a {
  text-decoration: underline;
  color: var(--color-link);
}
@media only screen and (max-width:1200px) {
  .single-post-main {
    padding: 15px;
  }
}
@media only screen and (max-width:1200px) {
  .single-post-main {
    padding: 10px;
  }
}
/* 投稿者情報コンテンツ
---------------------------*/
.post_footer_author_title {
  background: #eee;
  color: #333;
  border: 2px solid #eee;
  padding: 10px 20px;
  margin-top: 25px;
}
.post_footer_author {
  min-height: 100px;
  border: 2px solid #eee;
  padding: 15px;
  margin-bottom: 10px;
}
.post_author_user {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.post_author_user .post_thum {
  text-align: center;
}
.post_author_user .post_thum img {
  border-radius: 50%;
  border: 1px solid #ccc;
  margin: 0 auto;
}
.post_author_user .profile_sns {
  padding: 5px 0;
  white-space: nowrap;
}
.profile_sns li {
  display: inline-block;
}
.post_author_user .profile_sns li a {
  width: 28px;
  line-height: 28px;
}
.post_author_user_meta {
  vertical-align: middle;
  padding-left: 20px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.post_author_user .post-author {
  float: none;
  font-size: 20px;
  padding-bottom: 8px;
  font-weight: bold;
  line-height: 1.5;
}
.post_author_user_meta .post-description {
  font-size: 14px;
  overflow: auto;
  min-height: 50px;
}
.post_footer_author_title_post {
  font-weight: bold;
  border-bottom: 2px dotted #eee;
  margin: 10px 0;
  margin-top: 15px;
  clear: both;
}
.author-post-wrap {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
}
.hvr-fade-post {
  -webkit-transition-duration: .4s;
  -o-transition-duration: .4s;
  transition-duration: .4s;
}
@media screen and (min-width: 768px) {
  .post_footer_author .author-post:hover {
    -webkit-transform: translate(0, -3px);
    -ms-transform: translate(0, -3px);
    transform: translate(0, -3px);
  }
}
.post-box-thumbnail__wrap {
  overflow: hidden;
  position: relative;
  margin: 0;
}
.post-box-thumbnail__wrap:before {
  content: "";
  padding-top: 61.8%;
  display: block;
  height: 0;
}
.post_footer_author .author-post-thumb img, .post-box-thumbnail__wrap img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit:cover;";
  transition: .2s ease-in-out;
}
.post_footer_author .author-post-cat span {
  background: #333;
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 10px;
  color: #fff;
  padding: 1px 5px;
}
.author-post-meta {
  padding: 5px;
}
.post_footer_author .author-post-title {
  font-size: .9em;
  font-weight: bold;
}
.fa-brands:before {
  vertical-align: middle;
}
@media only screen and (max-width:767px) {
  .post_author_user {
    display: block;
  }
  .post_author_user .post_thum {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
  .post_author_user_meta {
    padding: 0;
  }
  .post_author_user .post-author {
    text-align: center;
  }
  .post_author_user_meta .post-description {
    font-size: .8em;
    width: 100%;
    padding: 0 10px;
  }
  .post_footer_author {
    padding: 10px;
  }
  .author-post-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* 関連キーワード
---------------------------*/
.single_title {
  background: 0;
  padding: 10px;
  border-radius: 0;
  font-size: 18px;
  border-bottom: 1px solid #ccc;
  margin-top: 15px;
}
#single-main .tag_area {
  padding: 0 5px;
}
.single_title a {
  color: var(--color-link);
}
/* 関連記事
---------------------------*/
.newpost_list {
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(40%, 1fr));
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .post_list_wrap:hover, .single-recommend:hover {
    -webkit-transform: translate(3px, 0);
    -ms-transform: translate(3px, 0);
    transform: translate(3px, 0);
  }
}
.post_list_wrap a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  width: 100%;
  text-decoration: none;
}
.post_list_wrap figure {
  background: #eee;
  width: 130px;
  float: left;
  overflow: hidden;
}
.post_list_wrap img {
  font-size: .8em;
}
.post_list_wrap .meta {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
}
.post_list_wrap .title {
  font-size: .9em;
  overflow: hidden;
  font-weight: bold;
}
.post_list_wrap .date {
  font-size: .7em;
}
@media only screen and (max-width:767px) {
  .post_list_wrap a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .post_list_wrap a figure {
    width: 100%;
  }
}
/* 次の記事・前の記事
---------------------------*/
.navigation-post {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  width: 100%;
  grid-gap: 2px;
  font-size: .9em;
  margin: 10px 0;
}
.navigation-post__item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 14px 16px;
  background: #fff;
}
.navigation-post__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 14px;
  width: 100%;
  position: relative;
  text-decoration: none;
}
.navigation-post__link:before, .navigation-post__link:after {
  font-size: 2em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "FontAwesome";
}
.navigation-post__item.previous_post a::before {
  content: "\f104";
}
.navigation-post__item.next_post a:after {
  content: "\f105";
}
.navigation-post__thumb {
  position: relative;
  width: 100px;
  background-color: #eee;
}
.navigation-post__thumb:before {
  content: "";
  padding-top: 61.8%;
  display: block;
}
.navigation-post__thumb img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.navigation-post__title {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-weight: bold;
  font-size: .9em;
}
@media only screen and (max-width:767px) {
  .navigation-post {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
/* おすすめの記事
---------------------------*/
.recommend-post {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(40%, 1fr));
  padding: 10px;
  gap: 10px;
}
.recommend-post .single-recommend {
  width: 100%;
  position: relative;
  overflow: hidden;
  letter-spacing: normal;
  vertical-align: top;
}
.recommend-post .single-recommend a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  width: 100%;
  text-decoration: none;
}
.recommend-post .single-recommend .recommend-thumb {
  position: relative;
  background: #eee;
  width: 150px;
  font-size: .8em;
}
.recommend-post .single-recommend .recommend-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit:cover;";
  vertical-align: middle;
  background: #eee;
}
.recommend-cat {
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 2px 4px;
  position: absolute;
  background: #333;
  bottom: 0;
  right: 0;
}
.recommend-post .single-recommend .recommend-meta {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.recommend-title {
  font-size: .9em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: calc(3em + 16px);
  font-weight: bold;
}
.recommend-desc {
  font-size: .7em;
  color: #999;
  padding: 5px 0;
}
@media only screen and (max-width:767px) {
  .recommend-post .single-recommend a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .recommend-post .single-recommend .recommend-thumb {
    width: 100%;
  }
}
/*-----------------------------------------------
 ブログアーカイブページスタイル
-----------------------------------------------*/
.catpage_tag {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto 50px;
  gap: 10px;
  width: 96%;
  max-width: 1300px;
}
.catpage_tag a {
  background: #eee;
  color: #000;
  white-space: nowrap;
  padding: 5px 10px;
  margin: 3px 1px;
  display: inline-block;
  border-radius: 2px;
}
.catpage_tag a:before {
  content: '\f02b';
  margin-right: 5px;
  color: #7e9da7;
  font-family: fontAwesome;
}
.catpage_tag a:hover {
  opacity: 0.8;
}
/*-----------------------------------------------
 プロフィールアーカイブページスタイル
-----------------------------------------------*/
.author_title {
  background: #fff;
  padding: 2em;
  margin-bottom: 10px;
  display: flex;
  gap: 2em;
}
.author_title-thum img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.author_title-meta {
  width: 100%;
}
.author_title-name {
  font-size: 1.3em;
  font-weight: bold;
}
@media screen and (max-width:768px) {
  .author_title {
    display: block;
  }
  .author_title-thum {
    width: 100%;
    text-align: center;
  }
  .author_title-thum img {
    width: auto;
    margin: 0 auto;
  }
  .author_title-name {
    text-align: center;
    margin-bottom: 1em;
  }
}
/*-----------------------------------------------
 Contact Usスタイル
-----------------------------------------------*/
.phonenumber {
  text-align: center;
}
.phonenumber a {
  display: inline-block;
}
.phonenumber a img {
  margin: 0 auto;
  height: auto;
}
.msg_resend {
  margin: 30px auto;
  padding: 20px;
  text-align: center;
  width: 85%;
  background: var(--color-content2);
  border-radius: 20px;
}
.msg_resend span {
  display: inline-block;
  background-color: #fff;
  padding: 10px 15px;
}
div.toggle {
  width: 100%;
}
@media(max-width:425px) {
  .msg_resend {
    width: 90%;
  }
}
/*-----------------------------------------------
 個人情報保護方針スタイル
-----------------------------------------------*/
.popup_content.privacypolicy {
  padding: 50px 50px 80px;
}
section#privacypolicy .content-wrap {
  padding: 80px 0 50px;
}
section#privacypolicy hr {
  margin: 30px 0;
}
section#privacypolicy ul.note {
  padding-left: 1.5rem;
}
section#privacypolicy ul.note li {
  list-style-type: disc;
}
@media screen and (max-width:768px) {
  .popup_content.privacypolicy {
    width: 96%;
    padding: 10px 10px 50px;
  }
}
/*-----------------------------------------------
 サンクス画面スタイル
-----------------------------------------------*/
.msg_thanks span.underline {
  color: #f00;
  box-shadow: 0 -10px 0 inset rgba(11, 144, 148, .1);
}
/*-----------------------------------------------
 サイドバースタイル
-----------------------------------------------*/
/* バナー
---------------------------*/
.bnr-wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
/*-----------------------------------------------
 その他共通スタイル
-----------------------------------------------*/
/* accordion style
---------------------------*/
ul.accordion-area {
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #ccc;
  background-color: rgb(255, 255, 255, 0.7);
}
ul.accordion-area section {
  border-top: 1px solid #ccc;
}
/*アコーディオンタイトル*/
ul.accordion-area li .title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: normal;
  padding: 3% 3% 3% 3%;
  margin: 0;
  transition: all .5s ease;
}
ul.accordion-area li .title:hover {
  transform: translateX(5px);
}
/*アイコンの＋と×*/
ul.accordion-area li .title::before, ul.accordion-area li .title::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 2px;
  background-color: #999;
}
ul.accordion-area li .title::before {
  top: 48%;
  right: 15px;
  transform: rotate(0deg);
}
ul.accordion-area li .title::after {
  top: 48%;
  right: 15px;
  transform: rotate(90deg);
  transition: 0.5s;
}
ul.accordion-area li .title.close::after {
  transform: rotate(0deg);
}
/*アコーディオンで現れるエリア*/
ul.accordion-area li .content {
  display: none; /*はじめは非表示*/
  padding: 0 3% 3% 3%;
}
ul.accordion-area li .content ul.notes {
  padding-left: 40px;
}
.accordion-area a.link {
  color: #6f97bc;
  border-bottom: 1px solid #6f97bc;
  transition: 0.3s;
}
.accordion-area a.link:hover {
  color: #72C8D5;
  border-bottom: 1px solid #72C8D5;
}
@media only screen and (max-width:425px) {
  ul.accordion-area {
    margin: 0 auto 50px;
  }
  ul.accordion-area li .content.schedule {
    padding: 0;
  }
  ul.accordion-area li .title {
    font-size: 1.2rem;
    padding: 5%;
  }
  ul.accordion-area li .content ul.notes {
    padding-left: 25px;
  }
}