/*****************************************
*
* メインビジュアル
*
******************************************/

.topmain {
  position: relative;
  background: var(--color-main-back);
}

.topmain img {
  width: 100%;
}

@media screen and (max-width: 833px) {
  .topmain {
    padding-top: 60px;
  }
}

@media screen and (min-width: 834px), print {
  .topmain {
    text-align: right;
    padding-left: 240px;
  }
}

@media screen and (min-width: 1500px), print {


  .topmain img {
    width: auto;
    height: calc(100vh - 80px);
  }
}

@media screen and (min-width: 1600px), print {
  .topmain {
    padding-right: 100px;
  }
}


/* アニメーション --------------------------------*/
/*
@media screen and (min-width: 834px), print {
  .topmain img {
    animation-name: fadeinImg;
    animation-duration: 3s;
  }
}
*/

@keyframes fadeinImg {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}



/*****************************************
*
* 共通
*
******************************************/
/*------------------------------------------*/
/* 見出し下の大文字
/*------------------------------------------*/

.heading-catchcopy {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 40px;
}

@media screen and (min-width: 834px), print {
  .heading-catchcopy {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 60px;
  }
}

.top-plan .heading-catchcopy {
  margin-bottom: 20px;
}

/*------------------------------------------*/
/* 見出しの下の文字
/*------------------------------------------*/

.heading-lead {
  margin-bottom: 40px;
}

@media screen and (min-width: 834px), print {
  .heading-lead {
    margin-bottom: 80px;
  }
}

/*------------------------------------------*/
/* 電話
/*------------------------------------------*/

.contact-phone {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: var(--color-dark-pink);
  font-family: var(--font-family-maru);
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: bold;
  line-height: 1.1;
  padding: 20px;
  margin-top: 60px;
}

.contact-phone .num {
  position: relative;
  font-family: var(--font-family-en);
  font-size: 1.2rem;
  font-weight: 600;
  padding-left: 25px;
  margin-bottom: -0.15em;
  margin-left: 0.3em;
  margin-right: 0.1em;
}

.contact-phone .num::before {
  content: '';
  display: inline-block;
  background: url('img/tel.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 40/36;
  width: 20px;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 834px), print {
  .contact-phone {
    font-size: 1.6rem;
    margin-top: 80px;
  }

  .contact-phone .num {
    font-size: 3rem;
    padding-left: 60px;
    margin-bottom: -0.2em;
  }

  .contact-phone .num::before {
    width: 50px;
  }
}


/*****************************************
*
* プラン
*
******************************************/


/*------------------------------------------*/
/* プラン
/*------------------------------------------*/

.top-plan .plan-contents {
  font-family: var(--font-family-sans);
  border: 1px solid var(--color-light-gray);
}

.top-plan .plan-contents+.plan-contents {
  margin-top: 40px;
}

@media screen and (min-width: 768px), print {
  .top-plan .plan-contents+.plan-contents {
    margin-top: 60px;
  }
}


/* 見出し --------------------------------*/
.top-plan .plan-contents .heading-wrap {
  display: inline-block;
  width: 100%;
  color: var(--color-white);
  font-weight: bold;
  padding: 10px;
}

.top-plan .plan-contents .heading-wrap.plan1 {
  background: var(--color-dull-blue);
}

.top-plan .plan-contents .heading-wrap.plan2 {
  background: var(--color-dull-green);
}

.top-plan .plan-contents .heading-wrap.plan3 {
  background: var(--color-dull-orange);
}

.top-plan .plan-contents .heading-wrap.plan4 {
  background: var(--color-dull-purple);
}

.top-plan .plan-contents .heading-wrap .heading {
  font-size: 1.2rem;
}

.top-plan .plan-contents .heading-wrap .heading span {
  font-family: var(--font-family-en);
  font-size: 2rem;
  padding-left: 0.2em;
}

.top-plan .plan-contents .heading-wrap .text1 {
  font-size: 0.9rem;
}

@media screen and (min-width: 768px), print {
  .top-plan .plan-contents .heading-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    padding: 20px;
  }

  .top-plan .plan-contents .heading-wrap .heading {
    font-size: 2rem;
    padding-left: 20px;
  }

  .top-plan .plan-contents .heading-wrap .heading span {
    font-size: 3rem;
  }

  .top-plan .plan-contents .heading-wrap .text1 {
    font-size: 1.6rem;
    margin-left: 2em;
  }
}

@media screen and (min-width: 1200px), print {
  .top-plan .plan-contents .heading-wrap .heading {
    font-size: 3rem;
  }

  .top-plan .plan-contents .heading-wrap .heading span {
    font-size: 4rem;
  }

  .top-plan .plan-contents .heading-wrap .text1 {
    font-size: 2rem;
    margin-left: 2em;
  }
}


/* 画像 --------------------------------*/
.top-plan .plan-contents .box figure img {
  width: 100%;
}

/* テキストエリア --------------------------------*/
.top-plan .plan-contents .cont {
  padding: 20px;
}

@media screen and (min-width: 768px), print {
  .top-plan .plan-contents .box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    align-items: center;
  }

  .top-plan .plan-contents .cont {
    padding: 40px;
  }
}

/* 説明文 --------------------------------*/
.top-plan .plan-contents .box .cont .description {
  font-size: 1rem;
}

@media screen and (min-width: 834px), print {
  .top-plan .plan-contents .box .cont .description {
    text-align: left;
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 1200px), print {
  .top-plan .plan-contents .box .cont .description {
    font-size: 1.6rem;
  }
}


/* 金額 --------------------------------*/
.top-plan .plan-contents .box .cont .price {
  font-size: 1rem;
}

.top-plan .plan-contents .box .cont .price .num,
.top-plan .plan-contents .box .cont .price .yen {
  color: var(--color-pink);
  font-weight: bold;
}

.top-plan .plan-contents .box .cont .price .num {
  font-size: 2rem;
}

@media screen and (min-width: 834px), print {
  .top-plan .plan-contents .box .cont .price {
    text-align: left;
    font-size: 1.1rem;
  }

  .top-plan .plan-contents .box .cont .price .num {
    font-size: 3.2rem;
  }

  .top-plan .plan-contents .box .cont .price .yen {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 1200px), print {
  .top-plan .plan-contents .box .cont .price {
    text-align: left;
    font-size: 1.2rem;
  }

  .top-plan .plan-contents .box .cont .price .num {
    font-size: 3.4rem;
  }

  .top-plan .plan-contents .box .cont .price .yen {
    font-size: 1.6rem;
  }
}

/* 注意書き --------------------------------*/
.top-plan .plan-contents .box .cont .notes {
  font-size: 0.8rem;
}

@media screen and (min-width: 834px), print {
  .top-plan .plan-contents .box .cont .notes {
    text-align: left;
    font-size: 0.9rem;
  }
}

/* 見出し --------------------------------*/
.top-plan .plan-contents .heading-item {
  text-align: left;
  border-bottom: dotted 1px var(--color-gray);
  font-size: 1rem;
  font-weight: bold;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

@media screen and (min-width: 834px), print {
  .top-plan .plan-contents .heading-item {
    font-size: 1.1rem;
  }
}


/* セットリスト --------------------------------*/
.top-plan .plan-contents .list {
  text-align: left;
  font-size: 0.8rem;
  line-height: 2;
}

.top-plan .plan-contents .list li {
  display: inline-block;
}

@media screen and (min-width: 834px), print {
  .top-plan .plan-contents .list {
    font-size: 0.9rem;
  }
}


/*------------------------------------------*/
/* spプラン
/*------------------------------------------*/

.top-plan .splan-contents {
  border: 1px solid var(--color-light-gray);
  margin-top: 40px;
}

@media screen and (min-width: 768px), print {
  .top-plan .splan-contents {
    margin-top: 60px;
  }
}

/* 見出し --------------------------------*/
.top-plan .splan-contents .heading-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--color-blue-green);
  color: var(--color-white);
  font-weight: bold;
  padding: 10px;
}

.top-plan .splan-contents .heading-wrap .heading {
  font-size: 1.2rem;
}

.top-plan .splan-contents .heading-wrap .text1 {
  font-size: 0.9rem;
  margin-left: 1em;
}

@media screen and (min-width: 768px), print {
  .top-plan .splan-contents .heading-wrap .heading {
    font-size: 1.6rem;
  }

  .top-plan .splan-contents .heading-wrap .text1 {
    font-size: 1.1rem;
    margin-left: 2em;
  }
}

/* テキストエリア --------------------------------*/
.top-plan .splan-contents .cont {
  padding: 10px;
}

@media screen and (min-width: 768px), print {
  .top-plan .splan-contents {
    margin-top: 60px;
  }

  .top-plan .splan-contents .box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    align-items: center;
  }

  .top-plan .splan-contents .cont {
    padding: 20px;
  }
}

/* 説明文 --------------------------------*/
.top-plan .splan-contents .box .cont .description {
  font-size: 0.9rem;
}

@media screen and (min-width: 834px), print {
  .top-plan .splan-contents .box .cont .description {
    text-align: left;
    font-size: 1rem;
  }
}

/* 金額 --------------------------------*/
.top-plan .splan-contents .box .cont .price {
  font-size: 0.9rem;
}

.top-plan .splan-contents .box .cont .price .num,
.top-plan .splan-contents .box .cont .price .yen {
  color: var(--color-pink);
  font-weight: bold;
}

.top-plan .splan-contents .box .cont .price .num {
  font-size: 1.2rem;
}

@media screen and (min-width: 834px), print {
  .top-plan .splan-contents .box .cont .price {
    text-align: left;
    font-size: 1rem;
  }

  .top-plan .splan-contents .box .cont .price .num {
    font-size: 1.6rem;
  }
}

/* 注意書き --------------------------------*/
.top-plan .splan-contents .box .cont .notes {
  font-size: 0.7rem;
}

@media screen and (min-width: 834px), print {
  .top-plan .splan-contents .box .cont .notes {
    text-align: left;
    font-size: 0.8rem;
  }
}

/* 見出し --------------------------------*/
.top-plan .splan-contents .heading-item {
  text-align: left;
  border-bottom: dotted 1px var(--color-gray);
  font-size: 1rem;
  font-weight: bold;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

@media screen and (min-width: 834px), print {
  .top-plan .splan-contents .heading-item {
    font-size: 1rem;
  }
}

/* セットリスト --------------------------------*/
.top-plan .splan-contents .list {
  text-align: left;
  font-size: 0.7rem;
  line-height: 2;
}

.top-plan .splan-contents .list li {
  display: inline-block;
}

@media screen and (min-width: 834px), print {
  .top-plan .splan-contents .list {
    font-size: 0.8rem;
  }
}


/*------------------------------------------*/
/* プラン 注意書き
/*------------------------------------------*/

.top-plan .plan-notes {
  margin-top: 20px;
}

@media screen and (min-width: 834px), print {
  .top-plan .plan-notes {
    margin-top: 40px;
  }
}



/*****************************************
*
* 寺院
*
******************************************/

/*------------------------------------------*/
/* リスト
/*------------------------------------------*/


.top-temple .temple-contents .box {
  border: 1px solid var(--color-light-gray);
}

@media screen and (max-width: 833px) {
  .top-temple .temple-contents .box {
    display: flex;
    padding: 20px;
  }

  .top-temple .temple-contents .box+.box {
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .top-temple .temple-contents .box {
    display: inline-block;
    width: 100%;
  }
}

@media screen and (min-width: 834px), print {
  .top-temple .temple-contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .top-temple .temple-contents .box {
    width: 32%;
    padding: 20px;
  }
}

/* 画像 --------------------------------*/
.top-temple .box figure {
  display: inline-block;
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: calc(616px / 2);
  height: calc(332px / 2);
}

.top-temple .box figure img {
  width: 100%;
}

/* テキストエリア --------------------------------*/

@media screen and (max-width: 833px) {
  .top-temple .cont {
    width: 100%;
    margin-left: 40px;
  }
}

@media screen and (max-width: 767px) {
  .top-temple .cont {
    margin-left: 0;
  }
}

/* 見出し --------------------------------*/
.top-temple .heading {
  margin-top: 10px;
  margin-bottom: 10px;
}

@media screen and (max-width: 833px) {
  .top-temple .heading {
    font-size: 1.4rem;
    font-weight: bold;
  }
}

@media screen and (max-width: 767px) {
  .top-temple .heading {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 834px), print {
  .top-temple .heading {
    font-size: 1.4rem;
    font-weight: 500;
  }
}

/* 値段 --------------------------------*/
.top-temple .price {
  margin-top: 10px;
  margin-bottom: 10px;
}

.top-temple .price span {
  color: var(--color-pink);
  font-weight: bold;
}

@media screen and (max-width: 833px) {
  .top-temple .price {
    font-size: 1.2rem;
  }

  .top-temple .price .num {
    font-size: 2.4rem;
  }

  .top-temple .price .yen {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .top-temple .price {
    font-size: 1rem;
  }

  .top-temple .price .num {
    font-size: 2rem;
  }

  .top-temple .price .yen {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 834px), print {
  .top-temple .price {
    font-size: 1.2rem;
  }

  .top-temple .price .num {
    font-size: 2.4rem;
  }

  .top-temple .price .yen {
    font-size: 1.5rem;
  }
}

/*****************************************
*
* 価格も内容も明瞭
*
******************************************/

.top-clarity .clarity-contents .box {
  position: relative;
  border: 1px solid var(--color-light-gray);
}

.top-clarity .clarity-contents {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 40px;
}

@media screen and (min-width: 834px), print {
  .top-clarity .clarity-contents {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
    column-gap: 40px;
  }
}


/* 画像 --------------------------------*/
.top-clarity .clarity-contents figure,
.top-clarity .clarity-contents figure img {
  width: 100%;
}


/* テキスト --------------------------------*/
.top-clarity .heading-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .top-clarity .heading-wrap {
    top: -10px;
    left: -10px;
  }
}

/* 数字 --------------------------------*/
.top-clarity .num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: var(--color-blue-green);
  color: var(--color-white);
  font-weight: bold;
}

.top-clarity .num span {
  vertical-align: -0.03em;
}

.iphone .top-clarity .num span,
.ipad .top-clarity .num span,
.mac .top-clarity .num span {
  vertical-align: -0.05em;
}

@media screen and (max-width: 833px) {
  .top-clarity .num {
    font-size: 1.2rem;
    padding: 5px 30px;
  }

  .top-clarity .num span {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .top-clarity .num {
    font-size: 1rem;
    padding: 2px 20px;
  }

  .top-clarity .num span {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 834px), print {
  .top-clarity .num {
    font-size: 1.2rem;
    padding: 5px 30px;
  }

  .top-clarity .num span {
    font-size: 2rem;
  }
}

/* 見出し --------------------------------*/
.top-clarity .heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: var(--color-bright-blue);
}

@media screen and (max-width: 833px) {
  .top-clarity .heading {
    font-size: 1.2rem;
    padding: 5px 30px;
  }
}

@media screen and (max-width: 767px) {
  .top-clarity .heading {
    font-size: 1.1rem;
    padding: 2px 20px;
  }
}

@media screen and (min-width: 834px), print {
  .top-clarity .heading {
    font-size: 1.2rem;
    padding: 5px 30px;
  }
}

/* テキスト --------------------------------*/

@media screen and (max-width: 833px) {
  .top-clarity .clarity-contents .text {
    padding: 20px;
  }
}

@media screen and (max-width: 767px) {
  .top-clarity .clarity-contents .text {
    padding: 10px;
  }
}

@media screen and (min-width: 834px), print {
  .top-clarity .clarity-contents .text {
    padding: 20px 30px;
  }
}


/*****************************************
*
* 会員ご入会
*
******************************************/

.top-members .catchcopy {
  font-size: 1rem;
  font-weight: bold;
  line-height: 2;
  margin-bottom: 40px
}

@media screen and (min-width: 834px), print {
  .top-members .catchcopy {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 60px;
  }
}

/* リスト --------------------------------*/
.top-members .list {
  display: inline-block;
}

.top-members .list li {
  position: relative;
  margin-top: 20px;
  margin-left: 40px;
}

.top-members .list li+li {
  margin-top: 40px;
}

.top-members .list li .num {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-fill-orange);
  width: 50px;
  height: 50px;
  font-family: var(--font-family-en);
  color: white;
  font-size: 2.4rem;
  font-weight: 600;
  position: absolute;
  top: -20px;
  left: -40px;
}

.top-members .list li .cont {
  border: solid 1px var(--color-light-gray);
  text-align: left;
  font-family: var(--font-family-sans);
  padding: 20px;
}


/* リンク --------------------------------*/
.top-members .link-btn img {
  width: 100%;
}

.top-members .link-btn {
  width: 160px;
  margin: 0 auto;
  margin-top: 60px;
}

@media screen and (min-width: 834px), print {
  .top-members .link-btn {
    width: 180px;
  }
}


/*****************************************
*
* 加盟店一覧
*
******************************************/

@media screen and (max-width: 833px) {
  .top-maps .list-box {
    margin-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  .top-maps .list-box {
    margin-top: 40px;
  }
}

@media screen and (min-width: 834px), print {
  .top-maps .list-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 80px;
  }
}

/* 地図 --------------------------------*/
.top-maps .list-map {
  background: var(--color-light-blue);
}

.top-maps .list-map area {
  outline: none;
}

@media screen and (min-width: 834px), print {
  .top-maps .list-map {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50%;
  }
}

/* 地図画像 --------------------------------*/

@media screen and (max-width: 833px) {
  .top-maps .list-box svg {
    width: 100%;
  }
}

@media screen and (min-width: 834px), print {
  .top-maps .list-box svg {
    -ms-flex-negative: 0;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    width: calc(900px / 2.5);
  }
}

@media screen and (min-width: 1200px), print {
  .top-maps .list-box svg {
    -ms-flex-negative: 0;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    width: calc(900px / 2);
  }
}








/* リンク画像 レイアウト --------------------------------*/
.top-maps .list-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.top-maps .list-cont li {
  line-height: 1.1;
}

@media screen and (max-width: 833px) {
  .top-maps .list-cont {
    margin-top: 20px;
  }

  .top-maps .list-cont ul:nth-of-type(2) {
    margin-left: 20px;
  }

  .top-maps .list-cont li:not(:first-child) {
    margin-top: 5px;
  }
}

@media screen and (min-width: 834px), print {
  .top-maps .list-cont ul {
    margin-left: 40px;
  }

  .top-maps .list-cont li:not(:first-child) {
    margin-top: 5px;
  }
}


/*------------------------------------------*/
/* 一覧
/*------------------------------------------*/

.top-halls {
  margin-top: 60px;
}

@media screen and (min-width: 834px), print {
  .top-halls {
    margin-top: 80px;
  }
}

/* 一覧 list --------------------------------*/
.top-halls .list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
}

@media screen and (min-width: 768px), print {
  .top-halls .list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
  }
}

@media screen and (min-width: 834px), print {
  .top-halls .list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 一覧 box --------------------------------*/
.top-halls .list a.box {
  text-decoration: none;
  color: var(--color-text);
  transition: all .5s ease;
}

.top-halls .list .box {
  display: grid;
  grid-template-columns: 20px 100px 1fr;
  align-items: center;
  border-style: solid;
  border-width: 2px;
  border-top-width: 1px;
  border-right-width: 4px;
  border-left-width: 4px;
  border-bottom-width: 1px;
  transition: all .5s ease;
}

.top-halls .list .box.yellow {
  background: var(--color-fill-yellow);
  border-color: var(--color-fill-yellow);
}

.top-halls .list .box.green {
  background: var(--color-fill-green);
  border-color: var(--color-fill-green);
}

.top-halls .list .box.pink {
  background: var(--color-fill-pink);
  border-color: var(--color-fill-pink);
}

.top-halls .list .box.purple {
  background: var(--color-fill-purple);
  border-color: var(--color-fill-purple);
}

.top-halls .list .box.brown {
  background: var(--color-fill-brown);
  border-color: var(--color-fill-brown);
}

.top-halls .list .box.blue {
  background: var(--color-fill-blue);
  border-color: var(--color-fill-blue);
}

.top-halls .list .box.dark-green {
  background: var(--color-fill-dark-green);
  border-color: var(--color-fill-dark-green);
}

.top-halls .list .box.orange {
  background: var(--color-fill-orange);
  border-color: var(--color-fill-orange);
}

.top-halls .list a.box:hover {
  background: var(--color-gray);
  border-color: var(--color-gray);
}

/* 一覧 記号 --------------------------------*/
.top-halls .list .box .sign {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-en);
  color: var(--color-white);
  font-size: 1em;
  font-weight: 500;
  padding-right: 0.1em;
}

.top-halls .list .box .sign span {
  transform: scale(1, 2);
}

/* 一覧 画像 --------------------------------*/
.top-halls .list .box figure img {
  width: 100%;
}

/* 一覧 テキストエリア --------------------------------*/
.top-halls .list .box .cont {
  width: 100%;
  height: 100%;
  text-align: left;
  background: var(--color-white);
  font-size: 0.6rem;
  line-height: 1.4;
  padding: 7px;
  padding-left: 15px;
}

/* 一覧 見出し --------------------------------*/
.top-halls .list .box .heading {
  font-size: 0.8rem;
  font-weight: bold;
}

/*------------------------------------------*/
/* モーダル
/*------------------------------------------*/

/* モーダルウィンドウ 地図 --------------------------------*/
.modal-list svg {
  width: 100%;
}

.modal-list g[class^="openmodal-"] {
  cursor: pointer;
}

.modal-list g[class^="openmodal-"] path {
  transition: all .5s ease;
}

.modal-list g[class^="openmodal-"]:hover rect {
  fill: #000;
}

.modal-list svg {
  max-width: 520px;
}

@media screen and (min-width: 834px), print {
  .modal-list svg {
    width: 800px;
  }
}

/* モーダルウィンドウ
横幅はjsの方で指定
 --------------------------------*/

/* モーダルウィンドウ レイアウト --------------------------------*/
@media screen and (min-width: 768px), print {
  .modal-box {
    width: 100%;
  }
}

/* モーダルウィンドウ 大見出し --------------------------------*/
.iziModal .modal-box .heading {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gray);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: bold;
  padding: 10px;
}

.iziModal.yellow .modal-box .heading {
  background: var(--color-fill-yellow);
}

.iziModal.green .modal-box .heading {
  background: var(--color-fill-green);
}

.iziModal.pink .modal-box .heading {
  background: var(--color-fill-pink);
}

.iziModal.purple .modal-box .heading {
  background: var(--color-fill-purple);
}

.iziModal.brown .modal-box .heading {
  background: var(--color-fill-brown);
}

.iziModal.blue .modal-box .heading {
  background: var(--color-fill-blue);
}

.iziModal.dark-green .modal-box .heading {
  background: var(--color-fill-dark-green);
}

.iziModal.orange .modal-box .heading {
  background: var(--color-fill-orange);
}

.modal-box .heading .sign {
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px var(--color-white);
  width: 1.7em;
  height: 1.7em;
  font-family: var(--font-family-en);
  font-weight: 500;
  line-height: 1;
}

.modal-box .heading .name {
  padding-left: 1em;
}

/* モーダルウィンドウ レイアウト --------------------------------*/
.modal-box .box {
  padding: 20px;
}

@media screen and (min-width: 768px), print {
  .modal-box .box {
    display: flex;
    padding: 40px;
  }
}

/* モーダルウィンドウ 会館画像 --------------------------------*/
.modal-box figure img {
  width: 100%;
}

.modal-box figure.image {
  max-width: 280px;
}

@media screen and (max-width: 767px) {
  .modal-box figure.image {
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px), print {
  .modal-box figure.image {
    width: 280px;
  }
}

/* モーダルウィンドウ cont --------------------------------*/

@media screen and (max-width: 767px) {
  .modal-box .box .cont {
    margin-top: 20px;
  }
}

@media screen and (min-width: 768px), print {
  .modal-box .box .cont {
    margin-left: 40px;
  }
}

/* モーダルウィンドウ ロゴ --------------------------------*/
.modal-box .heading-second img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .modal-box .heading-second {
    margin: 0 auto;
  }
}

.modal-box .heading-second {
  width: 120px;
  margin-bottom: 20px;
}

@media screen and (min-width: 768px), print {
  .modal-box .heading-second {
    width: 120px;
  }
}

/* モーダルウィンドウ サイトを見る --------------------------------*/
.iziModal .modal-box .btn a {
  display: inline-block;
  background: var(--color-gray);
  border: solid 1px var(--color-gray);
  border-radius: 40px;
  color: var(--color-white);
  font-size: 0.9rem;
  padding: 10px 30px;
  margin: 0 auto;
  margin-top: 20px;
  transition: all .5s ease;
}

.iziModal.yellow .modal-box .btn a {
  background: var(--color-fill-yellow);
  border: solid 1px var(--color-fill-yellow);
}

.iziModal.green .modal-box .btn a {
  background: var(--color-fill-green);
  border: solid 1px var(--color-fill-green);
}

.iziModal.pink .modal-box .btn a {
  background: var(--color-fill-pink);
  border: solid 1px var(--color-fill-pink);
}

.iziModal.purple .modal-box .btn a {
  background: var(--color-fill-purple);
  border: solid 1px var(--color-fill-purple);
}

.iziModal.brown .modal-box .btn a {
  background: var(--color-fill-brown);
  border: solid 1px var(--color-fill-brown);
}

.iziModal.blue .modal-box .btn a {
  background: var(--color-fill-blue);
  border: solid 1px var(--color-fill-blue);
}

.iziModal.dark-green .modal-box .btn a {
  background: var(--color-fill-dark-green);
  border: solid 1px var(--color-fill-dark-green);
}

.iziModal.orange .modal-box .btn a {
  background: var(--color-fill-orange);
  border: solid 1px var(--color-fill-orange);
}

.iziModal .modal-box .btn a:hover {
  text-decoration: none;
  background: var(--color-white);
  color: var(--color-gray);
}

.iziModal.yellow .modal-box .btn a:hover {
  color: var(--color-fill-yellow);
}

.iziModal.green .modal-box .btn a:hover {
  color: var(--color-fill-green);
}

.iziModal.pink .modal-box .btn a:hover {
  color: var(--color-fill-pink);
}

.iziModal.purple .modal-box .btn a:hover {
  color: var(--color-fill-purple);
}

.iziModal.brown .modal-box .btn a:hover {
  color: var(--color-fill-brown);
}

.iziModal.blue .modal-box .btn a:hover {
  color: var(--color-fill-blue);
}

.iziModal.dark-green .modal-box .btn a:hover {
  color: var(--color-fill-dark-green);
}

.iziModal.orange .modal-box .btn a:hover {
  color: var(--color-fill-orange);
}


/* モーダルウィンドウ 閉じるボタン --------------------------------*/
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
}

.iziModal button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  border-radius: 0;
  outline: none;
  cursor: pointer;
  background: transparent;
  border: solid 1px var(--color-gray);
  border-radius: 40px;
  font-size: 0.9rem;
  padding: 10px 30px;
  margin-bottom: 20px;
  transition: all .5s ease;
}

.iziModal button:hover {
  background: var(--color-gray);
  border: solid 1px var(--color-gray);
  color: var(--color-white);
}

.iziModal.yellow button:hover {
  background: var(--color-fill-yellow);
  border: solid 1px var(--color-fill-yellow);
}

.iziModal.green button:hover {
  background: var(--color-fill-green);
  border: solid 1px var(--color-fill-green);
}

.iziModal.pink button:hover {
  background: var(--color-fill-pink);
  border: solid 1px var(--color-fill-pink);
}

.iziModal.purple button:hover {
  background: var(--color-fill-purple);
  border: solid 1px var(--color-fill-purple);
}

.iziModal.brown button:hover {
  background: var(--color-fill-brown);
  border: solid 1px var(--color-fill-brown);
}

.iziModal.blue button:hover {
  background: var(--color-fill-blue);
  border: solid 1px var(--color-fill-blue);
}

.iziModal.dark-green button:hover {
  background: var(--color-fill-dark-green);
  border: solid 1px var(--color-fill-dark-green);
}

.iziModal.orange button:hover {
  background: var(--color-fill-orange);
  border: solid 1px var(--color-fill-orange);
}

@media screen and (min-width: 768px), print {
  .iziModal button {
    padding: 10px 40px;
    margin-bottom: 40px;
  }
}

/* モーダルウィンドウ navigation --------------------------------*/
.iziModal-navigate {
  display: none;
}

.iziModal-navigate-caption {
  display: none !important;
}

.iziModal-navigate>button {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: solid 1px white;
  border-radius: 50%;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.iziModal-navigate>button:hover {
  opacity: 0.5;
}

.iziModal-navigate-prev,
.iziModal-navigate-next {
  position: relative;
  background: transparent;
  width: 100%;
  height: 100%;
}

.iziModal-navigate-prev::before,
.iziModal-navigate-next::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border: 2px solid;
  transform: rotate(45deg);
  position: absolute;
  top: 16px;
  transition: all .5s ease;
}

.iziModal-navigate-prev::before {
  border-color: transparent transparent white white;
  left: 20px;
}

.iziModal-navigate-next::before {
  border-color: white white transparent transparent;
  right: 20px;
}



/*****************************************
*
* 特徴
*
******************************************/


/* レイアウト --------------------------------*/
.top-strengths .list .box+.box {
  margin-top: 20px;
}

@media screen and (min-width: 768px), print {
  .top-strengths .list .box {
    display: grid;
    grid-template-columns: 200px 1fr;
    row-gap: 20px;
  }
}

@media screen and (min-width: 834px), print {
  .top-strengths .list .box {
    grid-template-columns: 260px 1fr;
    row-gap: 40px;
  }
}

/* 数字 --------------------------------*/
.top-strengths .num {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-red-orange);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: bold;
  padding: 2px 20px;
}

.top-strengths .num span {
  font-size: 1.6rem;
  vertical-align: -0.03em;
}

.iphone .top-strengths .num span,
.ipad .top-strengths .num span,
.mac .top-strengths .num span {
  vertical-align: -0.05em;
}

@media screen and (min-width: 768px), print {
  .top-strengths .num {
    font-size: 1.6rem;
    padding: 0;
  }

  .top-strengths .num span {
    font-size: 3rem;
  }
}


/* テキストエリア --------------------------------*/
.top-strengths .cont {
  text-align: left;
  border: solid 1px var(--color-light-gray);
}

@media screen and (max-width: 767px) {
  .top-strengths .cont {
    border-top: 0;
    padding: 20px;
  }
}

@media screen and (min-width: 768px), print {
  .top-strengths .cont {
    border-left: 0;
    padding: 20px 40px;
  }
}

@media screen and (min-width: 834px), print {
  .top-strengths .cont {
    padding: 30px 60px;
  }
}

/* 見出し --------------------------------*/
.top-strengths .heading {
  text-align: justify;
  text-justify: inter-ideograph;
}

@media screen and (max-width: 833px) {
  .top-strengths .heading {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .top-strengths .heading {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
}

@media screen and (min-width: 834px), print {
  .top-strengths .heading {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 20px;
  }
}

/* テキスト --------------------------------*/

@media screen and (min-width: 834px), print {
  .feature-list .text {
    line-height: 2;
  }
}


/*****************************************
*
* 都道府県葬祭業協同組合一覧
*
******************************************/

.top-list .heading {
  text-align: left;
  border-bottom: dotted 1px var(--color-gray);
  font-size: 0.9rem;
  font-weight: bold;
  padding-bottom: 5px;
  margin-top: 60px;
  margin-bottom: 20px;
}

@media screen and (min-width: 834px), print {
  .top-list .heading {
    margin-top: 80px;
    margin-bottom: 40px;
  }
}

/* リスト --------------------------------*/
.top-list .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 5px;
  column-gap: 5px;
  text-align: left;
  font-size: 0.7rem;
}

.top-list .list a {
  color: var(--color-main);
}

.top-list .list a:visited {
  color: var(--color-gray);
}

@media screen and (min-width: 768px), print {
  .top-list .list {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (min-width: 1100px), print {
  .top-list .list {
    grid-template-columns: repeat(5, 1fr);
  }
}