@charset "UTF-8";

/*----------------------------------------------------
 Reset
----------------------------------------------------*/
*,
*::before,
*::after {
    box-sizing: border-box;
    word-break: break-word;
    overflow-wrap: anywhere;
}

ul[class], ol[class] {
    padding: 0;
}

body, h1, h2, h3, h4, h5, h6, p, ul[class], ol[class], li, figure, figcaption, blockquote, dl, dd {
    font-size: inherit;
    margin: 0;
}

body {
    font-size: 16px;
    min-height: 100vh;
    scroll-behavior: smooth;
    line-height: 1.8;
    -webkit-text-size-adjust: 100%;
}

@media (min-width: 940px) {
    body {
      font-size: 17px;
    }
}
@media (min-width: 1024px) {
}

ul[class], ol[class] {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

input, button, textarea, select {
    font: inherit;
}

/*----------------------------------------------------
 display
----------------------------------------------------*/
.block{display:block}.inline{display:inline}.inline-block{display:inline-block}.hidden{display:none}.flex{display:flex}.inline-flex{display:inline-flex}

@media (min-width: 940px) {
    .md\:block{display:block}.md\:inline{display:inline}.md\:inline-block{display:inline-block}.md\:hidden{display:none}.md\:flex{display:flex}.md\:inline-flex{display:inline-flex}
}
@media (min-width: 1024px) {
    .lg\:block{display:block}.lg\:inline{display:inline}.lg\:inline-block{display:inline-block}.lg\:hidden{display:none}.lg\:flex{display:flex}.lg\:inline-flex{display:inline-flex}
}
@media (min-width: 1280px) {
    .xl\:block{display:block}.xl\:inline{display:inline}.xl\:inline-block{display:inline-block}.xl\:hidden{display:none}.xl\:flex{display:flex}.xl\:inline-flex{display:inline-flex}
}

/*----------------------------------------------------
    Component
----------------------------------------------------*/
/* clearfix */
.clearfix {
    clear: both;
    zoom: 1;
}

.clearfix:after {
    content: " ";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

/* rollover */
.rollover {
    animation: horizontalY 1s ease-in-out infinite alternate;
            transition: all 1s;
    -webkit-transition: all 1s;
}

.rollover:hover {
    animation: horizontalY 0.5s ease-in-out infinite alternate;
            transition: all 0.5s;
    -webkit-transition: all 0.5s;
    filter: alpha(opacity=70);
    opacity: 0.7;
}

/* innerlink */
.innerlink {
    display: block;
    height: 1px;
    position: relative;
    top: -60px;
}
@media (min-width: 940px) {
    .innerlink {
        display: block;
        height: 1px;
        position: relative;
        top: -130px;
    }
}


/* pc/sp */
.pc {
    display: none;
}

.pc-i {
    display: none;
}

.sp {
    display: block;
}

.sp-i {
    display: inline;
}

@media (min-width: 940px) {
    .pc {
        display: block;
    }

    .pc-i {
        display: inline;
    }

    .sp,
    .sp-i {
        display: none;
    }
}

/*----------------------------------------------------
 body
----------------------------------------------------*/
body {
    font-family:"メイリオ",Meiryo,Meiryo UI,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","Osaka","Osaka－等幅","Osaka-Mono",Arial,Verdana,"ＭＳ Ｐゴシック",sans-serif;
}

/*----------------------------------------------------
 contents
----------------------------------------------------*/
.content {
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 70px;
}

@media (min-width: 940px) {
  .content {
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 120px;
    max-width: 1080px;
  }
}



/*----------------------------------------------------
 title
----------------------------------------------------*/
.title {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
}
.title span {
  position: relative;
}
.title span::before {
  background: url(../img/title-bg.webp) no-repeat center center;
  background-size: 100% auto;
  content: '';
  display: block;
  position: absolute;
  top: -40%;
  left: -40%;
  height: 180%;
  width: 180%;
  z-index: -1;
}
@media (min-width: 940px) {
  .title {
    font-size: 45px;
    text-align: center;
  }
}


/*----------------------------------------------------
 text
----------------------------------------------------*/
.text > * + * {
  margin-top: 30px;
}

/*----------------------------------------------------
 main-visual
----------------------------------------------------*/
.main-visual {
  padding: 70px 5% 30px;
}
/* img */
.main-visual-img {
  margin-bottom: 40px;
}
/* link */
.main-visual-link {
  text-align: center;
}
.main-visual-link-each:nth-child(n+2) {
  margin-top: 15px;
}

@media (min-width: 940px) {
  .main-visual {
    background: url(../img/main-visual-bg.webp) no-repeat center bottom;
    margin-bottom: 120px;
    padding: 100px 0;
    position: relative;
  }
  .main-visual img {
    margin: 0 auto;
  }
  /* link */
  .main-visual-link-each a {
    display: inline-block;
    vertical-align: middle;
  }
  .main-visual-link-each:nth-child(n+2) {
    margin-top: 10px;
  }
}

/*----------------------------------------------------
 main-visual-bg
----------------------------------------------------*/
.main-visual-bg {
  margin-bottom: 80px;
}

.main-visual-bg img {
  width: 100%;
}

/*----------------------------------------------------
 about
----------------------------------------------------*/
.about-title {
  margin-bottom: 40px;
}

@media (min-width: 940px) {
  .about-title {
    margin-bottom: 60px;
  }
}

/*----------------------------------------------------
 info
----------------------------------------------------*/
/* toggle */
.info-toggle {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  cursor: pointer;
  font-family: "Noto Serif JP", serif;
  font-size: 21px;
  display: block;
  line-height: 1;
  padding: .5em;
  text-align: center;
}
.info-toggle img {
  display: inline-block;
  margin-right: 1em;
  width: 1.5em;
}
.info-toggle.open img {
  transform: scale(1, -1);
}
/* list */
.info-list {
  border-bottom: 1px solid #000;
  display: none;
  padding-bottom: 2em;
}
.info-list ul {
  margin-top: 2em;
  padding-left: 1em;
}
.info-list li {
  text-indent: -1em;
}
.info-list li + li {
  margin-top: 1em;
}
.info-list a {
  color: inherit;
  text-decoration: underline;
}

@media (min-width: 940px) {
  /* toggle */
  .info-toggle {
    border-top-width: 2px;
    border-bottom-width: 2px;
    font-size: 24px;
    padding: .75em;
  }
  /* list */
  .info-list {
    border-bottom-width: 2px;
  }
}

/*----------------------------------------------------
 asago
----------------------------------------------------*/
.asago-title {
  margin-bottom: 40px;
}

@media (min-width: 940px) {
  .asago-title {
    margin-bottom: 60px;
  }
}

/*----------------------------------------------------
 theme
----------------------------------------------------*/
.theme-in {
  border-top: 1px solid #000; 
  padding-top: 70px;
}

.theme-title {
  margin-bottom: 30px;
}
.top .theme-title {
  font-size: 24px;
}
.lower .theme-title {
  text-align: center;
}
.theme-link + .theme-link {
  margin-top: 15px;
}

@media (min-width: 940px) {
  .theme-in {
    padding-top: 120px;
  }
  .theme-title {
    margin-bottom: 50px;
  }
  .top .theme-title {
    font-size: 36px;
  }
  .theme-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .theme-link {
    width: 48.5%;
  }
  .theme-link + .theme-link {
    margin-top: 0;
  }
  .theme-link:nth-child(n+3) {
    margin-top: 30px;
  }
  .theme-link:nth-child(1),
  .theme-link:nth-child(3) {
    margin-right: 3%;
  }
}

/*----------------------------------------------------
 selector
----------------------------------------------------*/
.selector {
  border-top: 1px solid #000;
  padding-top: 80px;
}
/* title */
.selector-title {
  margin-bottom: 40px;
  text-align: center;
}

/* list */
.selector-list {
  
}
.selector-each + .selector-each {
  margin-top: 50px;
}

/* list img */
.selector-img {
  margin-bottom: 15px;
}
.selector-img img {
  border-radius: 15px;
}

/* list each-title */
.selector-each-title {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

/* list name */
.selector-name {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}
.selector-name small {
  font-size: 16px;
  margin-left: .25em;
}

@media (min-width: 940px) {
  .selector {
    border-top-width: 2px;
    padding-top: 120px;
  }
  /* title */
  .selector-title {
    margin-bottom: 60px;
  }
  
  /* list */
  .selector-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .selector-each {
    width: 48%;
  }
  .selector-each + .selector-each {
    margin-top: 0;
  }
  .selector-each:nth-child(n+3) {
    margin-top: 40px;
  }
  
  /* list img */
  .selector-img {
    margin-bottom: 20px;
  }
  .selector-img img {
    border-radius: 0;
  }
  
  /* list each-title */
  .selector-each-title {
    font-size: 16px;
    margin-bottom: 0;
  }
  
  /* list name */
  .selector-name {
    margin-bottom: 20px;
  }
}

/*----------------------------------------------------
 footer
----------------------------------------------------*/
.footer {
  background: url(../img/footer-bg-sp.webp) no-repeat center bottom #f2f2f2;
  background-size: 100% auto;
  padding: 80px 0 50vw;
}
/* info */
.footer-info {
  padding: 0 5%;
  text-align: center;
}
.footer-each + .footer-each {
  margin-top: 40px;
}
/* title */
.footer-title {
  font-size: 18px;
  font-weight: bold;
}

@media (min-width: 940px) {
  .footer {
    background: url(../img/footer-bg.webp) no-repeat center bottom #f8f8f8;
    background-size: 100% auto;
    padding: 80px 0 10vw;
  }
  /* info */
  .footer-each + .footer-each {
    margin-top: 60px;
  }
  /* title */
  .footer-title {
    font-size: 21px;
    margin-bottom: 10px;
  }
}

/*----------------------------------------------------
 copyright
----------------------------------------------------*/
.copyright {
  font-size: 14px;
  padding: 1em 0;
  text-align: center;
}
@media (min-width: 940px) {
  .copyright {
    font-size: 16px;
  }
}

/*----------------------------------------------------
 header
----------------------------------------------------*/
.header {
  padding: 60px 0 30px;
}
.header img {
  width: 100%;
}

@media (min-width: 940px) {
  .header {
    display: flex;
    justify-content: space-between;
    padding: 0 0 40px;
  }
  .header img {
    width: auto;
  }
  .header-left {
    padding-top: 30px;
    padding-left: 60px;
    width: 30%;
  }
  .header-right {
    width: 21%;
  }
  .header-right img {
    margin-left: auto;
    margin-right: 0;
  }
}

/*----------------------------------------------------
 lower
----------------------------------------------------*/
/* title */
.lower-title {
  margin-bottom: 80px;
}
.lower-title img {
  width: 100%;
}
@media (min-width: 940px) {
  .lower-title {
    margin-bottom: 120px;
  }
}

/* title2,3 */
.lower-title2,
.lower-title3 {
  text-align: center;
}
@media (min-width: 940px) {
  .lower-title3 span::before {
    content: none;
  }
  .lower-title3 div {
    background: url(../img/title-bg.webp) no-repeat right bottom;
    background-size: auto 100%;
    display: inline-block;
    padding-top: .4em;
    padding-bottom: .15em;
  }
}

.lower-title-icon-center span::before {
  content: none;
}
.lower-title-icon-center {
  background: url(../img/title-bg.webp) no-repeat center bottom;
  background-size: auto 100%;
  padding-top: .2em;
  padding-bottom: .2em;
  text-align: center;
}

/* selector */
.lower-selector {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 2em;
  padding-top: 10px;
}
.lower-selector-name {
  margin-right: 1em;
}
.lower-selector-img {
  width: 3em;
}

@media (min-width: 940px) {
  .lower-selector {
    margin-bottom: 70px;
    padding-top: 15px;
  }
  .lower-selector-name {
    font-size: 18px;
  }
}

/* gallery */
.lower-gallery-sub {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 10px;
}
.lower-gallery-sub span {
  cursor: pointer;
  margin: 0 5px;
  width: 17%;
}
.lower-gallery-sub span:nth-child(n+6) {
  margin-top: 10px;
}
@media (min-width: 940px) {
  .lower-gallery-sub {
    justify-content: flex-start;
    padding-top: 50px;
  }
  .lower-gallery-sub span {
    margin: 0 10px 0 0;
    width: 7%;
  }
  .lower-gallery-sub span:nth-child(n+6) {
    margin-top: 0;
  }
  .lower-gallery-sub span:nth-child(n+14) {
    margin-top: 10px;
  }
  .lower-gallery-sub span {
  }
}

/* catch */
.lower-catch {
  font-size: 17px;
  margin-top: 30px;
}
@media (min-width: 940px) {
  .lower-catch {
    margin-top: 50px;
  }
}



/*----------------------------------------------------
 lower-main
----------------------------------------------------*/
.lower-main {
  border-top: 1px solid #ccc;
  margin-top: 30px;
  padding-top: 50px;
  position: relative;
}
.lower-main + .lower-main {
  padding-top: calc(30px + 15px);
}
.lower-main::before,
.lower-main::after {
  content: '';
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  display: block;
  height: calc(tan(60deg) * 40px / 3);
  position: absolute;
  right: 22%;
  width: 40px;
}
.lower-main + .lower-main::before,
.lower-main + .lower-main::after {
  content: none;
}
.lower-main::before {
  background: #ccc;
  top: -1px;
}
.lower-main::after {
  background: #fff;
  top: -2px;
}

@media (min-width: 940px) {
  .lower-main {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding-top: 50px;
  }
  .lower-main::before,
  .lower-main::after {
    height: calc(tan(60deg) * 60px / 4);
    right: 11.4%;
    width: 60px;
  }
  .lower-info {
    width: 62%;
  }
  .lower-map {
    width: 32%;
  }
}

/*----------------------------------------------------
 lower-info title
----------------------------------------------------*/
.lower-info-title {
  align-items: center;
  display: flex;
  font-family: "Noto Serif JP", serif;
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 1em;
}
.lower-info-title-icon {
  margin-left: .5em;
  width: 1.5em;
}

@media (min-width: 940px) {
  .lower-info-title {
    font-size: 24px;
    margin-bottom: 1.5em;
  }
  .lower-info-title-icon {
    width: 1.25em;
  }
}

/*----------------------------------------------------
 lower-info table
----------------------------------------------------*/
.lower-info table {
  border-collapse: collapse;
  line-height: 1.7;
  width: 100%;
}
.lower-info table th,
.lower-info table td {
  text-align: left;
  vertical-align: center;
}
.lower-info table td.stretch {
  width: 80%;
}
.lower-info table td span {
  display: inline-block;
}
@media (max-width: 939px) {
  .lower-info table {
    margin-bottom: 30px;
  }
  .lower-info table th,
  .lower-info table td {
    display: block;
  }
  .lower-info table td.stretch {
    width: auto;
  }
  .lower-info table th {
    font-weight: bold;
    padding: 0 0 6px;
  }
  .lower-info table tr:nth-child(n+2) th {
    border-top: 1px solid #ccc;
    padding: 15px 0 6px;
  }
  .lower-info table td {
    padding: 0 0 15px;
  }
}
@media (min-width: 940px) {
  .lower-info table th,
  .lower-info table td {
    font-weight: normal;
    padding: 0 0 15px;
  }
  .lower-info table tr:nth-child(n+2) th,
  .lower-info table tr:nth-child(n+2) td {
    border-top: 1px solid #ccc;
    padding-top: 15px;
  }
  .lower-info table tr:first-child:last-child th,
  .lower-info table tr:first-child:last-child td {
    border-bottom: 1px solid #ccc;
  }
  .lower-info table th {
    white-space: nowrap;
  }
  .lower-info table td {
    padding-left: 2em;
  }
}


/*----------------------------------------------------
 lower-info map
----------------------------------------------------*/
.lower-map-iframe {
  max-width: 100%;
}
.lower-map-iframe {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 76.2%;
}
.lower-map-iframe iframe {
  border-radius: .5em;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*----------------------------------------------------
 comment
----------------------------------------------------*/
.comment-main {
  background: url(../img/comment-bg.webp) no-repeat center center;
  background-size: 100% 100%;
  padding: 1em;
}

.comment-title {
  align-items: center;
  display: flex;
  font-family: "Noto Serif JP", serif;
  justify-content: flex-start;
  margin-bottom: 1em;
}
.comment-title-img {
  width: 3em;
}
.comment-title-text {
  font-size: 16px;
  margin-left: 1em;
}

@media (min-width: 940px) {
  .comment-main {
    padding: 2em;
  }
  
  .comment-title {
    margin-bottom: 1.5em;
  }
  .comment-title-text {
    font-size: 21px;
  }
  .comment-title-img {
    width: 4em;
  }
}

/*----------------------------------------------------
 pagetop
----------------------------------------------------*/
#page-top,
#home-link {
  opacity: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.scroll #page-top,
.scroll #home-link {
  opacity: 1;
}

/***右下固定：トップへ戻るボタン***/
#page-top {
  position: fixed;
  right: 0px;
  bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 40px;
  background: #FFF;
  color: #111;
  text-decoration: none;
  border-top: solid 2px #111;
  border-bottom: solid 2px #111;
  border-left: solid 2px #111;
  border-radius: 9999px 0 0 9999px;
  z-index: 10;
}
.top #page-top {
  bottom: 30px;
}
#page-top:hover {
  background: #111;
  color: #FFF;
  transition: 0.5s;
}
#page-top i {
  flex-basis: 30%;
  text-align: center;
}
#page-top svg {
  margin-left: .25em;
  height: .8em;
}
#page-top span {
  flex-basis: 70%;
  text-align: center;
  font-size: 0.8rem;
  font-weight: bold;
}

#home-link {
  position: fixed;
  right: 0px;
  bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 40px;
  background: #FFF;
  color: #111;
  text-decoration: none;
  border-top: solid 2px #111;
  border-bottom: solid 2px #111;
  border-left: solid 2px #111;
  border-radius: 9999px 0 0 9999px;
  z-index: 10;
}
#home-link:hover {
  background: #111;
  color: #FFF;
  transition: 0.5s;
}
#home-link i {
  flex-basis: 30%;
  text-align: center;
}
#home-link svg {
  margin-left: .25em;
  height: .8em;
}
#home-link span {
  flex-basis: 70%;
  text-align: center;
  font-size: 0.8rem;
  font-weight: bold;
}
