@charset "UTF-8";
* {
  box-sizing: border-box;
  word-wrap: break-word;
}

html {
  font-size: 62.5%;
}
@media screen and (max-width: 750px) {
  html {
    font-size: 2.375vw;
  }
}

body {
  color: #333;
  font-family: "Zen Kaku Gothic New", YuGothicM, YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 1.6rem;
  -webkit-text-size-adjust: 100%;
}
li {
  list-style: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}
img[usemap] {
  height: auto;
}

video {
  max-width: 100%;
}

a {
  color: #333;
}
a:hover {
  text-decoration: none;
}

button {
  padding: 0;
  border: none;
  background: none;
  color: inherit;
  font-family: inherit;
  font-size: 1.6rem;
  cursor: pointer;
}

input[type=text], input[type=password], input[type=tel], input[type=email], input[type=submit], input[type=button], textarea, select {
  font-family: inherit;
  font-size: 1.6rem;
}

.only-pc {
  display: block;
}
@media screen and (max-width: 750px) {
  .only-pc {
    display: none;
  }
}

.only-sp {
  display: none;
}
@media screen and (max-width: 750px) {
  .only-sp {
    display: block;
  }
}

img.only-pc, span.only-pc {
  display: inline;
}
@media screen and (max-width: 750px) {
  img.only-pc, span.only-pc {
    display: none;
  }
}
img.only-sp, span.only-sp {
  display: none;
}
@media screen and (max-width: 750px) {
  img.only-sp, span.only-sp {
    display: inline;
  }
}

table.only-pc {
  display: table;
}
@media screen and (max-width: 750px) {
  table.only-pc {
    display: none;
  }
}
table.only-sp {
  display: none;
}
@media screen and (max-width: 750px) {
  table.only-sp {
    display: table;
  }
}

.js-tel {
  color: #000 !important;
  text-decoration: none;
  cursor: default;
}

.pagetop {
  position: fixed;
  bottom: 40px;
  right: 25px;
  z-index: 9999;
  opacity: 0;
  transition: all 0.5s;
  transform: translateY(100px);
  width: 107px;
}
@media screen and (max-width: 1200px) {
  .pagetop {
    right: 10px;
  }
}
@media screen and (max-width: 750px) {
  .pagetop {
    width: 57px;
  }
}
.pagetop.is-show {
  opacity: 1;
  transform: translateY(0);
}

.inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-inline: 20px;
  line-height: 1.6;
}
@media screen and (max-width: 750px) {
  .inner {
    padding-inline: 4%;
  }
}

/* ------------------------------
   ヘッダー
------------------------------ */
.header {
  z-index: 99999;
  position: sticky;
  top: 0;
  right: 0;
  width: 100%;
  background-color: #000;
}
.header .header-main {
  display: grid;
  grid-template-columns: 427px 1fr;
  height: 130px;
  padding-left: 30px;
}
@media screen and (max-width: 1500px) {
  .header .header-main {
    padding-left: 20px;
  }
}
@media screen and (max-width: 980px) {
  .header .header-main {
    grid-template-columns: auto 1fr auto;
    height: 120px;
  }
}
@media screen and (max-width: 750px) {
  .header .header-main {
    height: 80px;
    padding-left: 4%;
  }
}
.header .header-main .header-logo {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 980px) {
  .header .header-main .header-logo {
    grid-column: 1;
  }
}
.header .header-main .header-logo img {
  width: 427px;
}
@media screen and (max-width: 750px) {
  .header .header-main .header-logo img {
    width: 227px;
  }
}
.header .header-main .header-box {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 980px) {
  .header .header-main .header-box .header-banner {
    display: none;
  }
}
.header .header-main .header-box .header-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: 25px;
       column-gap: 25px;
}
@media screen and (max-width: 1500px) {
  .header .header-main .header-box .header-nav {
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
}
@media screen and (max-width: 980px) {
  .header .header-main .header-box .header-nav {
    width: 100%;
    display: block;
  }
}
@media screen and (max-width: 980px) {
  .header .header-main .header-box .header-nav li {
    border-bottom: 1px solid #fff;
  }
}
.header .header-main .header-box .header-nav li a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: 10px;
       column-gap: 10px;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 1500px) {
  .header .header-main .header-box .header-nav li a {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 980px) {
  .header .header-main .header-box .header-nav li a {
    padding: 20px 40px;
    font-size: 1.6rem;
  }
}
.header .header-main .header-box .header-nav li a:hover {
  text-decoration: underline;
}
.header .header-main .header-box .header-nav li a .ico {
  width: 1.5rem;
}
@media screen and (max-width: 980px) {
  .header .header-main .header-box .header-nav li a .ico {
    width: 2rem;
  }
}
.header .header-main .header-box .header-nav li a span {
  flex: 1;
}
.header .header-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 96px;
  height: 96px;
  background-color: #ff9ebd;
  cursor: pointer;
}
@media screen and (max-width: 980px) {
  .header .header-menu {
    width: 120px;
    height: 100%;
    border-bottom-left-radius: 1em;
  }
}
@media screen and (max-width: 750px) {
  .header .header-menu {
    width: 80px;
  }
}
.header .header-menu .header-menu-con {
  width: 100%;
}
.header .header-menu p {
  position: relative;
  display: block;
  width: 45px;
  height: 24px;
  margin: 0 auto 10px;
}
@media screen and (max-width: 980px) {
  .header .header-menu p {
    width: 56px;
    height: 31px;
  }
}
@media screen and (max-width: 750px) {
  .header .header-menu p {
    width: 36px;
    height: 21px;
  }
}
.header .header-menu span {
  position: absolute;
  right: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000;
  transition: all 0.4s;
}
.header .header-menu span:nth-of-type(1) {
  top: 0;
}
.header .header-menu span:nth-of-type(2) {
  top: 50%;
  margin-top: -1px;
}
.header .header-menu span:nth-of-type(3) {
  bottom: 0;
}
.header .header-menu .header-menu-txt {
  text-align: center;
  line-height: 1;
}
.header .header-menu .header-menu-txt:before {
  content: "Menu";
  font-size: 2rem;
  color: #000;
  font-weight: 700;
}
@media screen and (max-width: 980px) {
  .header .header-menu .header-menu-txt:before {
    font-size: 2.2rem;
    font-weight: 500;
  }
}
@media screen and (max-width: 750px) {
  .header .header-menu .header-menu-txt:before {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 750px) {
  .js-menuopen {
    overflow: hidden;
  }
}
.js-menuopen .nav-menu {
  transform: translateX(0);
  visibility: visible;
}

/* ------------------------------
   SPメニュー
------------------------------ */
.nav-menu {
  z-index: 99999;
  position: fixed;
  top: 0;
  right: 0;
  width: 470px;
  height: 100%;
  background: #FF9EBD;
  transform: translateX(100%);
  visibility: hidden;
}
@media screen and (max-width: 750px) {
  .nav-menu {
    width: 100%;
  }
}
.nav-menu._loaded {
  transition: all 0.5s;
}
.nav-menu .nav-menu-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-bottom: 5em;
  overflow-y: auto;
}
.nav-menu a, .nav-menu div {
  display: block;
  text-decoration: none;
}
.nav-menu .nav-close {
  display: block;
  width: 96px;
  margin: 0 0 25px auto;
}
@media screen and (max-width: 980px) {
  .nav-menu .nav-close {
    width: 120px;
  }
}
@media screen and (max-width: 750px) {
  .nav-menu .nav-close {
    width: 80px;
  }
}
.nav-menu .nav-menu-main {
  width: 82.9787234043%;
  margin: 0 auto;
  padding: 30px 20px;
  background-color: #fff;
  border-radius: 16px;
}
@media screen and (max-width: 750px) {
  .nav-menu .nav-menu-main {
    width: 87.2%;
  }
}
.nav-menu .nav-menu-main p a {
  padding: 20px 20px 20px 0;
  background: url(../img/common/ico_arrow_lpk03.svg) no-repeat right center;
  background-size: 6px auto;
  font-weight: 500;
}
.nav-menu .nav-menu-main dl {
  border-top: 1px solid #CECECE;
  border-bottom: 1px solid #CECECE;
}
.nav-menu .nav-menu-main dl dt a {
  padding: 20px 20px 20px 0;
  background: url(../img/common/ico_arrow_lpk03.svg) no-repeat right center;
  background-size: 6px auto;
  font-weight: 500;
}
.nav-menu .nav-menu-main dl dd ul li {
  margin-bottom: 1em;
  padding-left: 0;
  background: url(../img/common/ico_arrow_lpk04.svg) no-repeat left 10px center;
  background-size: 22px auto;
}
.nav-menu .nav-menu-main dl dd ul li:last-child {
  margin-bottom: 2em;
}
.nav-menu .nav-menu-main dl dd ul li a {
  display: block;
  padding-left: 55px;
  font-size: 1.4rem;
  font-weight: 500;
}
.nav-menu .nav-menu-main .nav-photocontest {
  width: 87.4635568513%;
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .nav-menu .nav-menu-main .nav-photocontest {
    width: 100%;
  }
}
.nav-menu .nav-banner {
  display: none;
}
@media screen and (max-width: 750px) {
  .nav-menu .nav-banner {
    display: block;
    width: 74.1333333333%;
    margin: 10.6666666667% auto 0;
  }
}

/* ------------------------------
   ぱんくず
------------------------------ */
.topicpath {
  padding: 15px 95px;
}
@media screen and (max-width: 1200px) {
  .topicpath {
    padding-inline: 20px;
  }
}
@media screen and (max-width: 750px) {
  .topicpath {
    padding-inline: 4%;
  }
}
.topicpath ol {
  display: flex;
  flex-wrap: wrap;
}
.topicpath ol li {
  font-size: 1.5rem;
}
@media screen and (max-width: 750px) {
  .topicpath ol li {
    font-size: 1.3rem;
  }
}
.topicpath ol li::after {
  content: "＞";
  margin: 0 0.5em;
}
.topicpath ol li:last-child::after {
  display: none;
}
.topicpath ol li a {
  text-decoration: none;
}
.topicpath ol li a:hover {
  text-decoration: underline;
}

/* ------------------------------
   フォトコンテスト
------------------------------ */
.photo-sec {
  padding: 85px 0 110px;
  background-color: #f9c2cf;
}
@media screen and (max-width: 750px) {
  .photo-sec {
    padding-block: 60px;
  }
}
.photo-sec .photo-main {
  position: relative;
  padding: 30px 20px 60px;
  background-color: #f9709b;
}
@media screen and (max-width: 750px) {
  .photo-sec .photo-main {
    padding-top: 80px;
  }
}
.photo-sec .photo-main .photo-fig {
  position: absolute;
  top: 0;
}
@media screen and (max-width: 750px) {
  .photo-sec .photo-main .photo-fig {
    display: none;
  }
}
.photo-sec .photo-main .photo-fig._fig01 {
  left: 0;
  width: 14.9166666667%;
  margin-top: 19.5833333333%;
  margin-left: 3.3333333333%;
}
.photo-sec .photo-main .photo-fig._fig02 {
  right: 0;
  width: 19.25%;
  margin-top: 3.3333333333%;
  margin-right: 1.6666666667%;
}
.photo-sec .photo-main .photo-fig._fig02 li:last-child {
  width: 58.8744588745%;
  margin: 8.658008658% 12.987012987% 0 auto;
}
.photo-sec .photo-main .photo-icon {
  width: 4.1666666667%;
  margin: 0 auto 15px;
}
@media screen and (max-width: 750px) {
  .photo-sec .photo-main .photo-icon {
    width: 50px;
  }
}
.photo-sec .photo-main .photo-tag {
  margin-bottom: 15px;
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .photo-sec .photo-main .photo-tag {
    font-size: 2.4rem;
  }
}
.photo-sec .photo-main .photo-ttl {
  position: absolute;
  top: 0;
  left: 0;
  width: 30.6666666667%;
}
@media screen and (max-width: 750px) {
  .photo-sec .photo-main .photo-ttl {
    width: 53.3333333333%;
  }
}
.photo-sec .photo-main .photo-heading {
  z-index: 9;
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 750px) {
  .photo-sec .photo-main .photo-heading {
    max-width: 350px;
  }
}
.photo-sec .photo-main .photo-date {
  z-index: 9;
  position: relative;
  margin-bottom: 20px;
  font-size: 2.7rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.photo-sec .photo-main .photo-lead {
  z-index: 9;
  position: relative;
  margin-bottom: 30px;
  font-size: 2rem;
  color: #fff;
  text-align: center;
}
.photo-sec .photo-main .photo-btn {
  width: 100%;
  max-width: 255px;
  margin: 0 auto;
}
.photo-sec .photo-main .photo-btn a {
  display: block;
  text-decoration: none;
  padding: 10px;
  background-color: #fff;
  font-size: 2rem;
  text-align: center;
  color: #f9709b;
  border-radius: 2em;
}

/* ------------------------------
   関連リンク
------------------------------ */
.links-sec {
  padding: 100px 0 120px;
  background-color: #f9f0f4;
}
@media screen and (max-width: 750px) {
  .links-sec {
    padding-block: 60px;
  }
}
.links-sec .links-icon {
  width: 36px;
  margin: 0 auto 20px;
}
.links-sec .links-heading {
  margin-bottom: 60px;
  font-size: 2.3rem;
  text-align: center;
  font-weight: 500;
}
.links-sec ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px 5%;
}
@media screen and (max-width: 750px) {
  .links-sec ul {
    grid-template-columns: 1fr 1fr;
    gap: 30px 5.7971014493%;
  }
}

/* ------------------------------
   フッター
------------------------------ */
.footer {
  background-color: #000;
}
.footer .footer-main {
  position: relative;
  padding: 50px 0 75px;
}
@media screen and (max-width: 750px) {
  .footer .footer-main {
    padding-bottom: 50px;
  }
}
.footer .footer-main .footer-in {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-inline: 20px;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .footer .footer-main .footer-in {
    padding-inline: 4%;
  }
}
.footer .footer-main .footer-nav {
  margin-bottom: 50px;
}
@media screen and (max-width: 750px) {
  .footer .footer-main .footer-nav {
    display: none;
  }
}
.footer .footer-main .footer-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .footer-main .footer-nav ul li {
  border-right: 1px solid #fff;
}
.footer .footer-main .footer-nav ul li:last-child {
  border-right: none;
}
.footer .footer-main .footer-nav ul li a {
  display: block;
  text-decoration: none;
  padding-inline: 25px;
  font-size: 1.7rem;
  font-weight: 500;
  text-align: center;
  color: #fff;
}
.footer .footer-main .footer-nav ul li a:hover {
  text-decoration: underline;
}
.footer .footer-main .footer-logo {
  position: relative;
  width: 100%;
  max-width: 285px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .footer .footer-main .footer-logo {
    max-width: 200px;
  }
}
.footer .footer-main .footer-logo .logo-txt {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 280px;
  margin-top: 120px;
  margin-left: -400px;
}
@media screen and (max-width: 1200px) {
  .footer .footer-main .footer-logo .logo-txt {
    margin-left: -300px;
  }
}
@media screen and (max-width: 980px) {
  .footer .footer-main .footer-logo .logo-txt {
    position: static;
    margin: 30px auto;
  }
}
.footer .footer-main .footer-banner {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 330px;
  margin-right: 150px;
  margin-bottom: -15px;
}
@media screen and (max-width: 1200px) {
  .footer .footer-main .footer-banner {
    margin-right: 120px;
    max-width: 250px;
  }
}
@media screen and (max-width: 980px) {
  .footer .footer-main .footer-banner {
    max-width: 300px;
  }
}
@media screen and (max-width: 750px) {
  .footer .footer-main .footer-banner {
    display: none;
  }
}
.footer .copy {
  padding: 15px 20px;
  background-color: #ff9ebd;
  font-size: 1.4rem;
  text-align: center;
  color: #fff;
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  .footer .copy {
    padding: 2% 4%;
    font-size: 1.2rem;
  }
}

.font-nsj {
  font-family: "Noto Sans JP", sans-serif;
}

.font-min {
  font-family: "Shippori Mincho", serif;
}

.font-num {
  font-family: "Cardo", serif;
}

.opacity {
  transition: all 0.6s;
}
.opacity:hover {
  opacity: 0.7;
}

.ico {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 1em;
  line-height: 0;
}
.ico::before {
  width: 100% !important;
}

.ico-arrow-g::before {
  content: url("../img/common/ico_arrow_g.svg");
}

.ico-arrow-lpk::before {
  content: url("../img/common/ico_arrow_lpk.svg");
}

.ico-arrow-pk::before {
  content: url("../img/common/ico_arrow_pk.svg");
}

.ico-kamon-01::before {
  content: url("../img/common/ico_kamon01.svg");
}

.ico-web::before {
  content: url("../img/photocontest/idx/web_i001.svg");
}

.ico-insta::before {
  content: url("../img/photocontest/idx/insta_i001.svg");
}

.ico-insta-w::before {
  content: url("../img/photocontest/idx/insta_i002.svg");
}

.ico-award-01::before {
  content: url("../img/photocontest/idx/award_i001.svg");
}

.ico-award-02::before {
  content: url("../img/photocontest/idx/award_i002.svg");
}

.ico-award-03::before {
  content: url("../img/photocontest/idx/award_i003.svg");
}

.ico-link-w::before {
  content: url("../img/common/ico_link_w.svg");
}

.ico-close::before {
  content: url("../img/common/ico_close.svg");
}

.c-box {
  margin-bottom: 50px;
}

.c-img {
  aspect-ratio: 4/3;
  border-radius: 1em;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-img._v {
  aspect-ratio: initial;
}

.c-heading {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #fff;
  font-size: 3.4rem;
  font-weight: 400;
}
@media screen and (max-width: 750px) {
  .c-heading {
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-size: 2.8rem;
  }
}

.c-subheading {
  display: inline-block;
  margin-bottom: 20px;
  padding: 5px 10px;
  background-color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  .c-subheading {
    padding-bottom: 10px;
    font-size: 2.2rem;
  }
}

.c-txtheading {
  margin-bottom: 20px;
  font-size: 2.4rem;
  font-weight: 700;
  color: #3fc7bd;
}
@media screen and (max-width: 750px) {
  .c-txtheading {
    padding-bottom: 10px;
    font-size: 2.2rem;
  }
}

.c-txt {
  font-size: 2rem;
}

.c-fig-02 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 5%;
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 100px;
}

.c-fig-03 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px 3.3333333333%;
  margin-bottom: 100px;
}

.c-txtfig {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 40px 9.5833333333%;
}
@media screen and (max-width: 750px) {
  .c-txtfig {
    flex-direction: column;
  }
}
.c-txtfig .c-txtfig-fig {
  width: 45%;
}
@media screen and (max-width: 750px) {
  .c-txtfig .c-txtfig-fig {
    width: 100%;
  }
}
.c-txtfig .c-txtfig-txt {
  flex: 1;
}

.pager {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
.pager .pager-btn {
  width: 40px;
}
.pager ol {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.pager ol li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 40px;
  height: 40px;
  background-color: #FAC2CF;
  font-weight: 700;
  border-radius: 50%;
  line-height: 1;
}
.pager ol li a:hover, .pager ol li a.active {
  background-color: #F9709A;
  color: #fff;
}

.clearfix {
  zoom: 1;
}
.clearfix::before {
  content: "";
  display: table;
}
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.w100 {
  width: 100%;
}

.mat0 {
  margin-top: 0 !important;
}

.mab20 {
  margin-bottom: 20px !important;
}

.js-anime-fadein {
  opacity: 0;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.js-anime-fadein.js-anime-on {
  animation-name: fadeIn;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.js-anime-slide {
  opacity: 0;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.js-anime-slide.js-anime-on {
  animation-name: slide;
}

@keyframes slide {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.js-anime-slideleft {
  opacity: 0;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.js-anime-slideleft.js-anime-on {
  animation-name: slideLeft;
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.js-anime-slideright {
  opacity: 0;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.js-anime-slideright.js-anime-on {
  animation-name: slideRight;
}

@keyframes slideRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@media print {
  .js-anime-fadein, .js-anime-slide, .js-anime-slideleft, .js-anime-slideright {
    opacity: initial;
  }
}/*# sourceMappingURL=style.css.map */