@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  /*font-size: 100%;*/
  vertical-align: baseline; }

html {
  line-height: 1; }

ol, ul {
  list-style: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle; }

q, blockquote {
  quotes: none; }
  q:before, q:after, blockquote:before, blockquote:after {
    content: "";
    content: none; }

a img {
  border: none; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block; }

img {
  vertical-align: middle;
  image-rendering: -webkit-optimize-contrast;}

/**
 * 共通
 */
html {
  font-family: "Hiragino Sans", "Helvetica Neue", "Helvetica", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}
* {
  box-sizing: border-box;
}
body{
  background: #FFF;
  color: #003C87;
	font-size: 16px;
	line-height: 1.7em;
}
@media screen and (max-width: 400px){
  body{
    font-size: 14px;
  }
}

/**********
Common
**********/
.wrapper{
  width: 100%;
  overflow: hidden;
  position: relative;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
@media screen and (min-width:768px) {
  .sp{display: none !important;}
}
@media screen and (max-width:767px) {
  .pc{display: none !important;}
}
.wht-box{
  background: #FFF;
  border-radius: 6px;
  box-shadow: 1px 2px 1px rgba(0,0,0,.16);
}

/* title */
.ttl{
  font-weight: 700;
}
h2.ttl, .ttl.h2{
  font-size: 19px;
  letter-spacing: .1em;
  text-align: center;
}
h3.ttl, .ttl.h3{
  font-size: 18px;
  letter-spacing: .1em;
  text-align: center;
}
.ttl.band{
  border-radius: 100vw;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 15px;
  text-align: center;
  width: 100%;
}
.ttl.band.orange{
  background-color: #FFC069;
  color: #FFF;
}
.ttl.slash{
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.ttl.slash::before, .ttl.slash::after{
  content: "";
  display: block;
  height: 1.5em;
  width: 0.8em;
  flex: 0 0 .8em;
}
.ttl.slash::before{
  background: url("../img/icon_slashL.svg") center center / contain no-repeat;
}
.ttl.slash::after{
  background: url("../img/icon_slashR.svg") center center / contain no-repeat;
}
.ttl.slash .ttl_inner{
  line-height: 1.4;
  padding: 0 1.1em;
  text-align: center;
}
@media screen and (max-width:767px) {
  h2.ttl, .h2.ttl{
    font-size: 19px;
  }
  h3.ttl, .h3.ttl{
    font-size: 18px;
  }
  .ttl.glitter::before,
  .ttl.glitter::after{
    height: 24px;
    width: 23px;
    flex: 0 0 23px;
  }
  .ttl.glitter .glitter_inner{
    padding: 0 5px;
  }
  .ttl.band{
    padding: 0 12px;
  }
  .ttl.slash::before{
    background: url("../img/icon_slashL_sp.svg") center center / contain no-repeat;
  }
  .ttl.slash::after{
    background: url("../img/icon_slashR_sp.svg") center center / contain no-repeat;
  }
  .ttl.slash .ttl_inner{
    padding: 0 .6em;
  }
}
/* text */
.color-black{
  color: #000;
}
.color-red{
  color: #FF6252;
}
.color-wht{
  color: #FFF;
}
.color-navy{
  color: #003C87;
}
.lineH-s{
  line-height: 1.6em;
}
.lineH-m{
  line-height: 1.8em;
}
.lineH-l{
  line-height: 2.5em;
}
.text-center{
  text-align: center;
}
.text-left{
  text-align: left;
}
.fontW-b{
  font-weight: 600;
}
.text-line{
  text-decoration: underline;
}
.note{
  font-size: 14px;
}
.note-mark{
  display: flex;
}
.note-mark .mark_text{
  flex: 1;
}
sup{
  font-size: smaller;
  line-height: 1;
  vertical-align: super;
}
@media screen and (min-width:768px) {
  .text-center_pc{
    text-align: center;
  }
}
@media screen and (max-width:400px) {
  .note{
    font-size: 12px;
  }
}
/* margin */
.margin-center{
  margin-left: auto;
  margin-right: auto;
}
.mb10 { margin-bottom: 10px; }
.mb15 { margin-bottom: 15px; }
.mb30 { margin-bottom: 30px; }
.mb45 { margin-bottom: 45px; }
.mb60 { margin-bottom: 60px !important; }
.mt60 { margin-top: 60px !important; }
.mt55 { margin-top: 55px !important; }
.mt50 { margin-top: 50px !important; }
.mt45 { margin-top: 45px !important; }
.mt40 { margin-top: 40px !important; }
.mt35 { margin-top: 35px !important; }
.mt30 { margin-top: 30px !important; }
.mt25 { margin-top: 25px !important; }
.mt20 { margin-top: 20px !important; }
.mt15 { margin-top: 15px !important; }
.mt10 { margin-top: 10px !important; }
.mt5 { margin-top: 5px !important; }
.mt0 { margin-top: 0px !important; }
.pt45 { padding-top: 45px; }
.pt40 { padding-top: 40px; }
.pt30 { padding-top: 30px; }
.pt15 { padding-top: 15px; }
.pt10 { padding-top: 10px; }
.pt0 { padding-top: 0px !important; }
@media screen and (min-width:768px) {
  .mt60_pc { margin-top: 60px !important; }
  .mt50_pc { margin-top: 50px !important; }
  .mt45_pc { margin-top: 45px !important; }
  .mt40_pc { margin-top: 40px !important; }
  .mt30_pc { margin-top: 30px !important; }
  .mt20_pc { margin-top: 20px !important; }
  .mt15_pc { margin-top: 15px !important; }
  .mt10_pc { margin-top: 10px !important; }
  .mt0_pc { margin-top: 0px !important; }
}
@media screen and (max-width:767px) {
  .lineH-l{
    line-height: 1.7em;
  }
  .mb0_sp {margin-bottom: 0 !important;}
  .mb40_sp { margin-bottom: 40px !important; }
  .mt60_sp { margin-top: 60px !important; }
  .mt50_sp { margin-top: 50px !important; }
  .mt45_sp { margin-top: 45px !important; }
  .mt40_sp { margin-top: 40px !important; }
  .mt30_sp { margin-top: 30px !important; }
  .mt25_sp { margin-top: 25px !important; }
  .mt20_sp { margin-top: 20px !important; }
  .mt15_sp { margin-top: 15px !important; }
  .mt10_sp { margin-top: 10px !important; }
  .mt5_sp { margin-top: 5px !important; }
  .mt0_sp { margin-top: 0px !important; }
}

/* link */
a{text-decoration: underline;color: inherit;}
a:hover{text-decoration: none;}
.link-blank{
  display: flex;
  line-height: 1.8;
}
.link-blank::before{
  content: "";
  display: block;
  background: url(../img/icon_blank.png) center center / contain no-repeat;
  margin-right: .6em;
  margin-top: .3em;
  height: 1.35em;
  width: 1.15em;
}
.link-border{
  border-bottom: 1px solid #003C87;
  padding: 0 4px;
  text-decoration: none;
  max-width: fit-content;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.link-border.-solid-arrow::after{
  border-bottom-width: 1px;
  content: "";
  display: block;
  background: url("../img/icon_arrow-solid.svg") center center / contain no-repeat;
  filter: brightness(0) saturate(100%) invert(15%) sepia(76%) saturate(2715%) hue-rotate(204deg) brightness(95%) contrast(101%);
  margin-left: 10px;
  height: 11px;
  width: 9px;
  transition: .2s;
}
.link-border.-orange{
  color: #E15527;
  border-bottom-color: #E15527;
}
.link-border.-solid-arrow.-orange::after{
  filter: brightness(0) saturate(100%) invert(41%) sepia(79%) saturate(2108%) hue-rotate(346deg) brightness(92%) contrast(92%);
}
.link-border.-white{
  color: #FFF;
  border-bottom-color: #FFF;
}
.link-border.-solid-arrow.-white::after{
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(309deg) brightness(102%) contrast(101%);
}
.link-border.-solid-arrow:hover::after{
  transform: translateX(3px);
}
.link-border.-green{
  color: #42945C;
  border-bottom-color: #42945C;
}
.link-border.-solid-arrow.-green::after{
  filter: brightness(0) saturate(100%) invert(50%) sepia(24%) saturate(849%) hue-rotate(86deg) brightness(95%) contrast(91%);
}
.link-border .link_inner:hover{
  opacity: .8;
}
.link-border.-down{
  border-bottom-width: 1px;
}
.link-border.-down::after{
  content: "";
  display: block;
  background: url("../img/icon_down.svg") center center / contain no-repeat;
  margin-left: 8px;
  height: 16px;
  width: 17px;
  transition: .2s;
}
.link-border.-down:not(.collapsed)::after{
  transform: rotate(180deg);
}
.link-arrow{
  display: inline-block;
  text-decoration: none;
}
.link-arrow .link_inner{
  font-weight: bold;
  display: flex;
  align-items: center;
}
.link-arrow .link_inner::after{
  content: "";
  display: block;
  background: url("../img/icon_arrow-solid.svg") center center / contain no-repeat;
  margin-left: 0.4em;
  height: 0.7em;
  width: 0.7em;
  transition: .2s;
}
.link-arrow:hover .link_inner::after{
  transform: translateX(3px);
}
.link-acc{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.link-acc::after{
  content: "";
  background: url(../img/select_arrow-navy.svg) center center / contain no-repeat;
  display: block;
  transform: rotate(180deg);
  transition: .4s;
  height: .7em;
  width: .7em;
}
.link-acc.collapsed::after{
  transform: rotate(0);
}
.c-icon{
  display: inline-block;
  line-height: 1;
  margin-right: .35em;
  text-align: center;
  vertical-align: sub;
  width: 1.25em;
}

.btn-wrap{
	margin: 60px auto 0;
}
.btn-group-3col .btn:first-child{
	float: left;
	width: 32%;
}
.btn-group-3col .btn:nth-child(even){
	float: left;
	width: 32%;
	margin-left: 2%;
}
.btn-group-3col .btn:last-child{
	float: right;
	width: 32%;
  color: #b3b3b3;
  border: 2px solid #b3b3b3;
}
.btn-group-3col .active.btn:last-child {
	background-color: #b3b3b3;
	color: #fff;
	box-shadow: none;
}
button{
  outline: none !important;
}
.btn {
	border-radius: 100px;
  border: none;
  background-color: #003C87;
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .05em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 11px;
  text-align: center;
  text-decoration: none;
  min-height: 44px;
  max-width: fit-content;
  margin-inline: auto;
}
.btn:focus,
.btn:active,
.btn:hover {
  background-color: #003C87;
  border-color: #FFF;
  color: #FFF;
  outline: none;
  opacity: .7;
}
.btn:disabled {
  background-color: #003C87;
  color: rgba(39,91,130,.5);
  border-color: #FFF;
}
.btn.-noborder{
  border: none;
}
.btn.-gray{
  background-color: #A8A8A8;
  color: #FFF;
}
.btn.-red{
  background-color: #EF4C4C;
  color: #FFF;
}
.btn.-yellow{
  background-color: #FEF186;
  color: #003C87;
}
.btn.-blue{
  background-color: #005DBA;
  color: #FFF;
}
.btn.-black{
  background-color: #000;
  color: #FFF;
}
.btn-l {
  font-size: 20px;
  font-weight: 700;
  padding: 13px 25px;
  max-width: 307px;
  width: 100%;
}
.btn-m {
  font-size: 18px;
  font-weight: 700;
  padding: 13px 25px;
  min-height: initial;
  max-width: 307px;
  width: 100%;
}
.btn-s {
  font-size: 16px;
  padding: 11px 25px 10px;
  min-height: initial;
  width: 100%;
}
.btn-full {
  max-width: inherit;
  width: 100%;
}
.btn-wrap-2col{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px 30px;
  padding: 0;
}
.btn-wrap-2col .btn{
  margin: 0;
  width: 100%;
}
.btn-toTop{
  display: block;
  width: 80%;
  max-width: 320px;
  margin: 60px auto 0;
}

.btn_round-border{
  border: 2px solid #FFF;
  border-radius: 100vh;
  color: #FFF;
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 8px 18px;
  margin-inline: auto;
  text-align: center;
  text-decoration: none;
  transition: .2s;
  width: fit-content;
}
.btn_round-border:hover{
  background-color: #FFF;
  color: #003C87;
  opacity: 1;
}

/* ページトップへ戻るリンク */
.jump-to-page-top {
	display: none;
	position: fixed;
	bottom: 10px;
	right: 10px;
	font-size: smaller;
}
.jump-to-page-top img {
	max-width: 90px;
}
/* image */
.img-stretch {
	width: 100%;
}
.img-responsive{
  display: block;
  max-width: 100%;
  height: auto;
}
.img-responsive-overwrite {
	margin: 0 auto;
	width: 100%;
}
/* flex */
.flex{
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-r{
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.flex2, .flex3, .flex4{
  margin-left: -15px;
  margin-right: -15px;
}
.flex2_item{
  margin: 0 15px 30px;
  width: calc(50% - 30px);
}
.flex2_item_last{
	margin-bottom: 0;
}
.flex3_item{
  margin: 0 15px 30px;
  width: calc(33.33% - 30px);
}
.flex4_item{
  margin: 0 15px 30px;
  width: calc(25% - 30px);
}
@media screen and (min-width:768px) {
  .img-opacity{
    transition: .15s ease-in-out;
  }
  .img-opacity:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width:767px) {
  .flex2, .flex3 {
    margin-left: 0;
    margin-right: 0;
  }
  .flex2_item{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .flex3_item{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .flex4_item{
    width: calc(50% - 30px);
  }
}

/* Container */
.wrap-stiky{
  height: 100svh;
  position: sticky;
  top: 0;
  right: 0;
}
.layout-main{
  background: #FFE5E7;
  display: grid;
  grid-template-columns: 1fr 500px 1fr;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.aside-left .wrap-stiky{
  padding: 21px 50px 0 25px;
}
.aside-left .logo-wrap{
  display: flex;
  justify-content: flex-end;
  gap: 25px;
}
.aside-left .logo{
  height: 32px;
  width: auto;
}
.aside-left .logo img{
  height: 100%;
  max-width: initial;
  width: auto;
}
.aside-left .prize{
  height: calc(100vh - 20px - 32px - 21px);
  padding: 40px 0 0 0;
  /* margin-left: auto;
  max-width: 500px; */
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  /* justify-content: center; */
  /* width: 80%; */

}
.aside-left .prize img{
  height: 100%;
  max-height: 1209px;
  max-width: initial;
  width: auto;
}
.aside-right .wrap-stiky{
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  /* gap: 30px 0; */
  padding: 0 0 0 55px;
}
.aside-right .logo{
  background: #FFF;
  border-radius: 0 0 3px 3px;
  padding: 15px 22px;
  width: fit-content;
}
.aside-right .logo img{
  max-width: 165px;
  width: 100%;
}
.aside-right .right-main-block{
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  gap: 40px;
  margin-block: 40px 30px;
}
.aside-right .menu{
  margin-left: 33px;
}
.aside-right .menu .menu_ttl{
  position: relative;
  margin-bottom: 20px;
  padding-top: 8px;
  height: 38px;
  width: 144px;
}
.aside-right .menu .menu_ttl::before{
  background: url(../img/menu_title_navy.png) center center / contain no-repeat;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.aside-right .menu .menu_ttl img{
  position: relative;
  margin-inline: auto;
  width: 51%;
}
.aside-right .menu ul li{
  width: 150px;
}
.aside-right .menu ul li:not(:first-child){
  margin-top: 17px;
}
.aside-right .menu ul li a{
  display: block;
  transition: .15s;
}
.aside-right .menu ul li a:hover{
  opacity: .8;
}
.aside-right .menu .menu_btn{
  display: block;
  margin: 42px 0 0 -13px;
  width: 174px;
}
.aside-right .prize{
  margin-left: 5px;
  max-width: 200px;
  width: 90%;
}
.aside-center{
  position: relative;
}
.aside-center .scroll-arrow{
  position: absolute;
  left: calc(50% + 225px);
  bottom: 20px;
  width: 12px;
}
.aside-center .scroll-arrow::after{
  content: "";
  display: block;
  background: url(../img/scroll_arrow_navy.png) top center / contain no-repeat;
  margin: 7px 0 0 5px;
  transform: translateY(0);
  height: 32px;
  width: 5px;
  animation: arrowmove 1.5s ease-in-out infinite;
}
@keyframes arrowmove {
  0% { transform: translateY(0); }
  50% { transform: translateY(6px); }
  100% { transform: translateY(0); }
}
.aside-main{
  background-color: #003C87;
  max-width: 430px;
  margin-inline: auto;
  min-height: 100svh;
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1101px){
  .aside-main header .logo,
  .aside-main header .sns-link{
    display: none;
  }
}
@media screen and (max-width: 1100px){
  .layout-main{
    grid-template-columns: 500px 1fr;
  }
  .aside-left{
    display: none;
  }
  .aside-main{
    margin-left: 35px;
  }
  .aside-main header .logo-ipet{
    display: block;
  }
}
@media screen and (max-width: 767px){
  .layout-main{
    grid-template-columns: 1fr;
  }
  .aside-left,.aside-right{
    display: none;
  }
  .aside-main{
    margin: auto;
  }
}
@media screen and (max-width: 499px){
  .aside-center .scroll-arrow{
    display: none;
  }
}
@media screen and (max-width: 430px){
  .layout-main{
    background-color: #FFF;
  }
}
/**
 * Header
 */
header {
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 7px 5px 10px 8px;
  gap: 0 15px;
  position: relative;
}
header::before {
  content: "";
  display: block;
  background: url(../img/header_wave.svg?2507) left top / 30px auto repeat-x;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.site-wrap:not(.topPage) header::before {
  -webkit-filter: brightness(0) saturate(100%) invert(84%) sepia(7%) saturate(600%) hue-rotate(308deg) brightness(108%) contrast(102%);
  filter: brightness(0) saturate(100%) invert(84%) sepia(7%) saturate(600%) hue-rotate(308deg) brightness(108%) contrast(102%);
}
header .hd_bg path{
  fill: #FFF !important;
}
header .logo{
  line-height: 1;
  flex: 1;
  max-width: 250px;
  position: relative;
  z-index: 2;
}
.sns-link{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}
header .sns-link a{
  padding: 0 3px;
  width: 36px;
}
.sns-link a{
  display: block;
  padding: 0 5px;
  width: 40px;
}
@media screen and (max-width: 767px){
  .site-wrap:not(.topPage) header::before {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }
}
/*固定ボタン*/
.fix-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.fix-btn ul{
  display: flex;
  justify-content: center;
  height: 60px;
  margin-inline: auto;
  max-width: 430px;
  width: 100%;
  background: #FFF;
  z-index: 100;
}
.fix-btn li a{
  color: #003C87;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  gap: 2px;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  height: 100%;
  max-width: 70px;
  width: calc((100vw - 81px - 10px) / 4);
}
.fix-btn li a img{
  height: auto;
  width: 25px;
}
.fix-btn li.btn_entry a{
  background-color: #003C87;
  border: 5px solid #FFF;
  border-radius: 100%;
  color: #FFF;
  font-size: 13px;
  gap: 5px;
  margin: -28px 10px 7px 10px;
  max-width: initial;
  height: 81px;
  width: 81px;
}
.fix-btn li a:not(.btn_entry){
  padding-bottom: 7px;
}
.fix-btn li.btn_entry a img{
  width: 27px;
}
@media screen and (min-width: 768px){
  .fix-btn:not(.footer-btn){display: none !important;}
}

.container{
  max-width: 980px;
  width: calc(100% - (15px * 2));
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 400px){
  .container{
    width: calc(100% - (10px * 2));
  }
}
/* Box */
.box_white{
  background: #FFF;
  padding: 5px;
}
.bg-color-white{
	background-color: #ffffff;
}
.bg-pink{
  background: #FFE5E7;
}
.bg-blue{
  background: #4795CC;
}
.bg-green{
  background: #219A74;
}
.bg-navy{
  background: #003C87;
}

.box-shadow{
  padding: 0;
  position: relative;
}
.box-shadow::before{
  content: "";
  background-color: #FFC069;
  border-radius: 18px;
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 3px;
  left: 3px;
}
.box-shadow_inner{
  background: #FFF;
  border-radius: 15px;
  padding: 30px;
  position: relative;
}
.box-shadow.red::before{
  background-color: #FF6252;
}
.box-shadow.blue::before{
  background-color: #0F46FF;
}
.box-shadow.green::before{
  background-color: #10D100;
}
.box-shadow.purple::before{
  background-color: #B99BFF;
}
@media screen and (max-width:767px) {
  .box-shadow_inner{
    border-radius: 10px;
  }
  .box-shadow::before{
    border-radius: 11px;
    top: 2px;
    left: 2px;
  }
}

/*モーダル*/
.modal-dialog{
  margin-inline: auto;
  max-width: 370px;
  width: 88%;
}
.modal-content{
  background: #FFF;
  border: none;
  border-radius: 6px;
  padding: 25px 25px 30px;
}
.modal-header{
  border: none;
  color: #003C87;
  display: block;
  padding: 0;
  text-align: center;
  position: relative;
}
.modal .btn-close{
  background: none;
  opacity: 1;
  padding: 0;
  margin: 0;
  position: absolute;
  top: -16px;
  right: -16px;
  height: auto;
  width: 33px;
  z-index: 100;
}
.modal .btn-close:hover{
  opacity: .8;
}
.modal .btn-foot-close{
  background-color: #FFF;
  border: none;
  border-radius: 100vh;
  color: #003C87;
  font-size: 14px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 9px 30px;
  margin-inline: auto;
  width: fit-content;
}
.modal .btn-foot-close img{
  margin-right: 12px;
  width: 16px;
}
.modal-body{
  padding: 0;
}
.modal-body .note{
  color: #003C87;
}

.modal.exAnimal .modal-content{
  background: #FFFFC9;
  border-radius: 0;
  border-top-left-radius: 100% 316px;
  border-top-right-radius: 100% 316px;
  padding: 39px 25px 30px;
}
.modal.exAnimal .btn-close{
  top: 30px;
  right: 0;
}
.exAnimal .modal-title{
  margin-inline: auto;
  width: 186px;
}
.exAnimal .exAnimal_ttl{
  background: #003C87;
  border-radius: 100vh;
  color: #FFF;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  height: 22px;
  padding: 1px 27px;
  max-width: fit-content;
  margin: 20px auto -11px;
  position: relative;
  z-index: 1;
}
.exAnimal .note{
  font-size: 12px;
  line-height: 1.6;
}
.animal_ex{
  background: #FFF;
  border: 2px solid #003C87;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  padding: 17px 5px 14px;
  text-align: center;
}
.exAnimal-block .item:first-child{
  margin-top: 0;
}
.exAnimal-block .name{
  background: #003C87;
  border-radius: 100vh;
  color: #FFF;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 4px 2px 1px;
  text-align: center;
}
.exAnimal-block .thum{
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.exAnimal-block .thum img{
  background: #DFF2FC;
  border: 2px solid #FFF;
  border-radius: 100vh;
  width: 60px;
}
.exAnimal-block .ex{
  font-size: 14px;
  line-height: 1.4;
  padding-left: 12px;
}
.modal.ngPhoto .modal-content{
  background: #FFF;
  border-radius: 0;
  border-top-left-radius: 100% 316px;
  border-top-right-radius: 100% 316px;
  padding: 50px 0 50px;
}
.modal.ngPhoto .btn-close{
  top: 30px;
  right: 0;
}
.modal.ngPhoto .modal-title{
  border-bottom: 2px solid #003C87;
  font-size: 16px;
  max-width: fit-content;
  margin-inline: auto;
  padding-bottom: 5px;
}
.modal.ngPhoto .modal-content .inner{
  max-width: 300px;
  margin-inline: auto;
  width: 90%;
}
@media screen and (max-width:1100px) and (min-width:768px) {
  .modal{
    max-width: 430px;
    margin-left: 35px;
  }
}
@media screen and (max-width:400px) {
  .modal.exAnimal .modal-content{
    padding-inline: 20px;
  }
}

/**
 * Footer
 */
footer{
  background-color: #FFFFFF;
  padding: 30px 0 15px;
}
footer .footer_logo_img{
  max-width: 270px;
  width: 73%;
  margin-inline: auto; 
}
footer .footer_logo .small{
  font-size: 10px;
  color: #707070;
  margin-top: 10px;
}
@media screen and (max-width:767px) {
  footer{
    padding: 30px 0 100px;
  }
}

/* ギャラリー */
.gallery li {
	margin-bottom: 15px;
}
.gallery a {
	color: #333;
	text-decoration: none;
}
.gallery a img {
  background: #FFF;
}

/**
 * 投稿一覧ページ
 */
.gallery_ttl{
  max-width: 328px;
  margin-inline: auto;
  width: 90%;
}
.content-gallery .container{
  padding-block: 46px 80px;
}
.content-gallery .btn-wrap .btn_round-border{
  letter-spacing: .1em;
}
.content-gallery .gallery{
  margin-top: 50px;
}
.content-gallery .gallery ul{
  padding: 0;
}
.content-gallery .gallery li{
  margin-bottom: 20px;
  padding-inline: 12px;
  width: calc(50%);
}
.calendar_deformed_date{
  color: #FFF;
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4em;
  margin-top: 10px;
}
.content-gallery .alert-danger{
  color: #FFF;
  margin: 50px 0 0;
}

/**
 * 投稿写真ページ
 */
.ttl.form-ttl{
  line-height: 1.3;
  margin-top: 30px;
  margin-bottom: 34px;
}
.artifact{
  overflow: hidden;
}
.artifact .container{
  padding-block: 40px 100px;
}
.artifact .artifact-box{
  border-radius: 5px;
  background-color: #FFF;
  padding: 5px 25px 60px;
  margin-top: 10px;
}
.artifact .name{
  color: #005DBA;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
}
.artifact .name span{
  font-size: 22px;
  font-weight: 600;
}
.artifact .photo-box{
  background: #FFFFC9;
  margin-inline: -20px;
  position: relative;
  padding-top: 25px;
}
.artifact .photo-box::after{
  content: "";
  display: block;
  position: absolute;
}
.artifact .photo-box::after{
  background: url("../img/artifact_bottom.png") bottom center / contain no-repeat;
  height: 87px;
  width: 100%;
  bottom: 0;
  left: 0;
}
.artifact .photo-box_inner{
  position: relative;
  padding: 0 20px 130px;
}
.artifact .artifact-photo{
  box-shadow: 3px 3px 3px rgba(0, 0, 0, .16);
  max-width: 220px;
	margin: 25px auto 0;
  position: relative;
  width: 80%;
}
.artifact .artifact-photo::before,
.artifact .artifact-photo::after{
  content: "";
  background: url(../img/artifact_frame_deco.png) top center / contain no-repeat;
  display: block;
  height: 236px;
  width: 47px;
  position: absolute;
  top: -30px;
}
.artifact .artifact-photo::before{
  right: calc(100% + 10px);
}
.artifact .artifact-photo::after{
  left: calc(100% + 10px);
  transform: scale(-1,1);
}
.artifact .photo-box_inner p{
  font-size: .9em;
  line-height: 1.5;
}
.artifact .save-btn{
  max-width: 200px;
  width: 80%;
}
.artifact .artifact-tag{
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .05em;
}
.artifact-sns-link{
  justify-content: center;
}
.artifact-sns-link a{
  width: 56px;
  padding: 0 6px;
}
.banner-wrap{
  margin: 70px auto 0;
  padding: 0;
  gap: 15px 44px;
  max-width: 370px;
  width: 90%;
}
.banner-wrap .item{
  margin-top: 40px;
}
.banner-wrap .item p{
  line-height: 1.4;
  margin-top: 15px;
}
@media screen and (max-width:400px) {
  .artifact .artifact-box{
    padding-inline: 15px;
  }
  .artifact .photo-box{
    margin-inline: -10px;
  }
  .artifact .artifact-photo::before{
    right: calc(100% + 3px);
  }
  .artifact .artifact-photo::after {
    left: calc(100% + 3px);
  }
}

dd + dt {
	padding-top: 40px;
}
.form-control{
  border: 2px solid #EAEAEA;
  border-radius: 5px;
  color: #003C87;
  font-size: 16px;
  font-weight: 400;
  padding: .5rem .75rem;
}
.form-control::placeholder{
  color: #A8A8A8;
}
select.form-control{
  background: #FFF url("../img/select_arrow-navy.svg") right 9px center / 11px auto no-repeat;
  padding-right: 21px;
  position: relative;
}
.btn-select-group{
	overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}
.btn-select-group .btn{
  background-color: #FFF;
  border: 2px solid #EAEAEA;
  border-radius: 5px;
  color: #003C87;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  padding: 10px 10px;
  margin: 0;
  max-width: inherit;
  min-height: initial;
}
.btn-select-group .btn.active{
  background: #FFFBD9;
  border-color: #EAEAEA;
}
.alert-validation{
  background: #f6341e;
  color: #FFF;
  display: block;
  font-weight: 400;
  padding: 0 5px;
  line-height: 1.3;
}
/*規約*/
.outline-wrap{
  background-color: #fff;
  border-radius: 6px;
  padding: 10px 5px 10px 15px;
  margin-inline: auto;
}
.outline-inner{
	height: 300px;
  padding-right: 10px;
	overflow-y: scroll;
}
.rules{
  font-size: 14px;
	height: 330px;
  padding-right: 5px;
  line-height: 1.5;
	overflow-y: scroll;
  overflow-x: hidden;
}
.rules::-webkit-scrollbar {
  width: 5px;
}
.rules::-webkit-scrollbar-track {
  background-color: #FFF;
}
.rules::-webkit-scrollbar-thumb {
  background-color: #003C87;
  border-radius: 100vh;
}
.rules .font-a1b{
  font-size: 1.1em;
}
.rules_ttl{
  font-weight: bold;
  padding: 20px 0 0;
}
.rules_ttl:first-child{
  padding-top: 10px;
}
.rules dd{
  line-height: 150%;
}
.rules ul{
  padding-left: 2em;
  list-style: disc;
}
.rules sup{
  font-size: 10px;
}
.rules .note{
  font-size: .9em;
}
@media screen and (max-width:767px) {
  .outline-wrap{
    padding: 10px 10px 10px 12px;
  }
  .rules{
    height: 240px;
    padding-right: 0;
    overflow-x: hidden;
  }
  .rules .font-a1b{
    font-size: 15px;
  }
  .rules *{
    font-size: 13px;
  }
  .rules_ttl{
    padding-top: 15px;
  }
  .rules_ttl:first-child{
    margin-top: 2px;
  }
  .rules::-webkit-scrollbar {
    width: 7px;
  }
}

/* ローディング */
#loading{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.7);
    z-index: 10;
}
.loading_inner{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.loading_circle{
    display: inline-block;
    color: #ffffff;
    font-size: 10px;
    margin: 100px auto;
    width: .8em;
    height: .8em;
    border-radius: 50%;
    position: relative;
    text-indent: -9999em;
    -webkit-animation: load4 1.3s infinite linear;
    animation: load4 1.3s infinite linear;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}
.loading_txt{
    color: #FFF;
    margin-left: 3em;
    display: inline-block;
}
@-webkit-keyframes load4 {
  0%, 100% {
    box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
  }
  12.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  25% {
    box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  37.5% {
      box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  50% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  62.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
  }
  75% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
  }
  87.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
  }
}
@keyframes load4 {
  0%, 100% {
    box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
  }
  12.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  25% {
    box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  37.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  50% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  62.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
  }
  75% {
      box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
  }
  87.5% {
      box-shadow: 0 -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
  }
}

/* ページネーション */
.calendar .pagination{
  justify-content: center;
}
.calendar .pagination>li:first-child>a, .calendar .pagination>li:first-child>span,
.calendar .pagination>li:last-child>a, .calendar .pagination>li:last-child>span{
  border-radius: 0;
}
.calendar .pagination a,
.calendar .pagination span{
	color: #FFF !important;
	border-color: #cccccc;
  background: none;
  border: none;
  font-size: 14px;
  padding: 6px;
}
.calendar .pagination a:hover,
.calendar .pagination a:focus,
.calendar .pagination span:hover,
.calendar .pagination span:focus{
  opacity: .7;
}
.calendar .pagination .active a,
.calendar .pagination .active span,
.pagination>.active>a:focus, .pagination>.active>a:hover,
.pagination>.active>span:focus, .pagination>.active>span:hover{
	color: #EF4C4C !important;
  border: none;
  background: none;
}
.pagination>.disabled>a, .pagination>.disabled>a:focus, .pagination>.disabled>a:hover, .pagination>.disabled>span, .pagination>.disabled>span:focus, .pagination>.disabled>span:hover{
  color: #FFF !important;
  background: none;
  opacity: .5;
}
fieldset + fieldset {
	margin-top: 20px;
}
.alert-danger {
	background-color: transparent;
	border: none;
  color: #FF6252;
  font-weight: 600;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0;
}
.alert-danger .fa {
  font-size: 1.2em;
  margin-right: .2em;
  vertical-align: text-bottom;
}
#ConditionForm {
	display: none;
	background-color: #FFF;
  border-radius: 6px;
  width: 100%;
	padding: 18px 0 40px;
	margin: 30px auto 0;
}
#ConditionForm form {
  margin-inline: auto;
  width: calc(100% - (15px * 2));
}
#ConditionForm dt{
  font-weight: 600;
  margin-bottom: 6px;
}
#ConditionForm dd + dt{
  padding-top: 20px;
}
#ConditionForm .btn-select-group{
  justify-content: space-between;
  gap: 10px;
}
#ConditionForm .btn-select-group label{
  width: calc((100% - 10px) / 2);
}
#ConditionForm .btn-select-group label[for="kind_cd--3"]{
  padding-inline: 20px;
  width: fit-content;
}
#ConditionForm .btn-select-group label[for="kind_cd--none"]{
  flex: 1;
}
@media screen and (max-width:400px) {
  #ConditionForm .btn-select-group{
    gap: 6px;
  }
  #ConditionForm .btn-select-group label{
    width: calc((100% - 6px) / 2);
  }
  #ConditionForm .btn-select-group label[for="kind_cd--3"]{
    padding-inline: 8px;
  } 
}

/*インスタCP*/
.insta-wrap{
  padding-top: 50px;
}
.prs-box.insta{
  background: #FFF url(../img/index/insta_bg.png?2507) top right 40% / cover no-repeat;
  box-shadow: none;
  padding: 30px 10px 60px;
}
.insta .insta_ttl{
  margin-inline: auto;
  width: 248px;
}
.prs-box.insta > p{
  color: #FFF;
}
.prs-box.insta .prs_name{
  font-size: 22px;
  font-weight: 600;
}
.prs-box.insta .prs_num{
  font-size: 18px;
  font-weight: 600;
}
.prs-box.insta .prs_photo{
  text-align: center;
  max-width: 320px;
  margin-inline: auto;
  position: relative;
  width: 100%;
}
.prs-box.insta .prs_photo .prs_num{
  position: absolute;
  left: -14%;
  top: -34px;
  max-width: 97px;
  width: 32%;
}
.prs-box.insta .insta_prs{
  border-radius: 2px;
  background: #FFF;
  padding: 30px 15px;
}
.prs-box.insta .insta_how_ttl{
  color: #FFF;
  font-weight: 600;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
}
.prs-box.insta .insta_how_ttl::before,
.prs-box.insta .insta_how_ttl::after{
  content: "";
  display: block;
  background: #FFF;
  height: 2px;
  width: 16px;
}
.prs-box.insta .insta_how{
  width: 97%;
  margin-inline: auto;
}
.prs-box.insta .insta_how .item{
  background: #FFF;
  border-radius: 100vh;
  display: flex;
  align-items: center;
  padding: 15px 20px;
}
.prs-box.insta .insta_how .item.item:not(:first-child){
  margin-top: 10px;
}
.prs-box.insta .insta_how .item .num{
  margin-right: 10px;
  width: 24px;
}
.prs-box.insta .insta_how .item p{
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
.prs-box.insta .accordion > a{
  font-size: 14px;
  margin-inline: auto;
  width: 92%;
}
.prs-box.insta .accordion .outline-wrap{
  border-radius: 2px;
  padding: 10px 5px 10px 15px;
  margin-top: 10px;
}
.moreText{
  position: relative;
}
.moreText .moreText_inner {
  position: relative;
  display: -webkit-box;
  margin-bottom: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;/* 開く前に見せたい行数を指定 */
}
.moreText:not(:has(:checked)) .moreText_inner a{
  display: none;
}
.moreText:has(:checked) .moreText_inner {
  display: block;
}
.moreText .moreText_inner::after {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3.8em;
  background: linear-gradient(transparent, #fff 65%);
  content: '';
}
.moreText:has(:checked) .moreText_inner::after {
  content: none;
}
.prs_theme .item.theme1 .box .moreText .moreText_inner::after{
  background-image: linear-gradient(transparent, #FFEFEF 65%);
}
.prs_theme .item.theme2 .box .moreText .moreText_inner::after{
  background-image: linear-gradient(transparent, #DFF2FC 65%);
}
.prs_theme .item.theme3 .box .moreText .moreText_inner::after{
  background-image: linear-gradient(transparent, #FCEFE2 65%);
}
.prs_theme .item.theme4 .box .moreText .moreText_inner::after{
  background-image: linear-gradient(transparent, #DFF8E5 65%);
}
.moreText .read-more-button {
  text-decoration: underline;
  cursor: pointer;

  position: absolute;
  bottom: -.3em;
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: flex-end;
}
.moreText:has(:checked) .read-more-button {
  display: none;
}
.moreText .read-more-button:hover{
  text-decoration: none;
}
.moreText .read-more-button > input{
  display: none;
}