@charset "utf-8";


/*---------------------------------------------
	body
---------------------------------------------*/
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}


/* 10px */
body {
  width: 100%;
  font-size: 1.7rem;
  line-height: 1.8;
  text-align: center;
  -webkit-text-size-adjust: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  position: relative;
  color: #2a1512;
}

p {
  text-align: left;
}

img {
  width: 100%;
  height: auto;
}

.mincho {
  font-family: 'Noto Serif JP', serif;
}


/*---------------------------------------------
	Anchor
---------------------------------------------*/
a {
  outline: none;
}

a:link {
  color: #2a1512;
  text-decoration: none;
}

a:visited {
  color: #2a1512;
  text-decoration: none;
}

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

a:active {
  color: #af4f8d;
  text-decoration: none;
}

a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

/*---------------------------------------------
	p
---------------------------------------------*/
p {
  margin-bottom: 1.5em;
}

.only_pc_none {
  display: none;
}

.only_sp_none {
  display: block;
}

.sp_br {
  display: none;
}


/*---------------------------------------------
 ** ON OFF hover
---------------------------------------------*/
.hover {
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.hover:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha( opacity=60 )";
}

/*=================================================================================================================================*/
/**  共通部分	*/
/*=================================================================================================================================*/

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.scroll-up.done,
.scroll-fade.done {
  opacity: 1;
  transform: translate(0, 0);
}

.load-fade {
  opacity: 0;
  transition: all 4s
    /*処理にかかる時間*/
  ;
}

.load-up {
  opacity: 0;
  transform: translateY(30px)
    /*スクロールアップする距離*/
  ;
  transition: all 4s
    /*処理にかかる時間*/
  ;
}

.load-up.done,
.load-fade.done {
  opacity: 1;
  transform: translate(0, 0);
}

.btn {
  display: flex;
  justify-content: flex-end;
}

.btn a {
  display: inline-block;
  padding: 8px 15px 8px 15px;
  position: relative;
  border: 1px solid #999;
  letter-spacing: -0.01em;
  color: #666;
  border-radius: 30px;
  font-size: 80%;
  overflow: hidden;
}

.btn a span {
  font-size: 70%;
  vertical-align: 2px;
  display: inline-block;
  margin-left: 5px;
}

.btn a:hover {
  color: #fff;
}


.btn a:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  transition: 0.5s;
  background: linear-gradient(#fff, #fff);
}

.btn a:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  background: linear-gradient(-135deg, #00cbff, #ed19a3);
  background: #999eb1;
}


.btn a:hover:before {
  opacity: 0;
}

.btn02 a {
  display: inline-block;
  padding: 35px 15px 35px 15px;
  position: relative;
  letter-spacing: 0.1em;
  background: #ffb25f;
  border-radius: 50px;
  font-size: 110%;
  text-align: center;
  width: 80%;
  max-width: 500px;
  font-weight: bold;
  font-size: 110%;
  transition: all 0.5s;
}

.btn02 a::before {
  content: '';
  width: 33px;
  height: 35px;
  background: url(../img/arrow.png) no-repeat center center;
  background-size: 100% auto;
  position: absolute;
  top: 32%;
  right: 12%;
}

.btn02 a:hover {
  transform: scale(1.1);
  color: #2a1512;
}

.btn03 a {
  display: inline-block;
  padding: 30px 20px 30px 15px;
  position: relative;
  letter-spacing: 0.1em;
  background: #fff;
  border-radius: 50px;
  font-size: 110%;
  text-align: center;
  width: 80%;
  max-width: 600px;
  font-weight: bold;
  font-size: 110%;
  transition: all 0.5s;
  margin-bottom: 5%;
}

.btn03 a::before {
  content: '';
  width: 33px;
  height: 35px;
  background: url(../img/arrow.png) no-repeat center center;
  background-size: 100% auto;
  position: absolute;
  top: 32%;
  right: 8%;
}

.btn03 a:hover {
  transform: scale(1.1);
  color: #2a1512;
}


/*---------------------------------------------
 ** フェードイン
---------------------------------------------*/
.scrollanime {
  opacity: 0;
}

/*一瞬表示されるのを防ぐ*/
.fadeInDown {
  animation-name: fadeInDown;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

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

  100% {
    opacity: 1;
    transform: translate(0);
  }
}

/*2.上下の動きを指定*/
.updown {
  transform: translateY(-50px);
}

.downup {
  transform: translateY(50px);
}

/*3.左右の動きを指定*/
.sect02 {
  overflow: hidden;
}

/*横スクロールバーを隠す*/
.slide-right {
  transform: translateX(100px);
}

.slide-left {
  transform: translateX(-100px);
}


/*---------------------------------------------
 ** ローディング
---------------------------------------------*/

.start {
  background: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9000;
}

.start p {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 9999;
  width: 70%;
  max-width: 350px;
}


/* fadeUpをするアイコンの動き */

.fadeIn {
  animation-name: fadeUpAnime;
  animation-duration: 2.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  display: block !important;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/*---------------------------------------------
 ** ナビ
---------------------------------------------*/
header {
  width: 100%;
}

#header_in {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

h1 {
  width: 120px;
  padding-top: 25px;
}

h1+img {
  width: 90%;
  max-width: 200px;
  position: absolute;
  top: 35px;
  right: 0;
  left: 0;
  margin: 0 auto;

}



/*---------------------------------------------
 ** メイン
---------------------------------------------*/

#main {
  width: 100%;
  height: 320px;
  margin: 0 auto;
  position: relative;
  background: url(../img/main_bg.png) bottom center no-repeat;
  background-size: 100% auto;
  padding-bottom: 40%;
  z-index: -2;
}

#main_logo {
  width: 45%;
  max-width: 760px;
  margin: 0 auto 0;
  text-align: left;
  z-index: 1;
  display: none;

}

#main_logo img:nth-child(1) {
  width: 60%;
  max-width: 300%;
  margin-bottom: 40px;
}


#main_history {
  width: 75%;
  position: absolute;
  top: 28%;
  z-index: -1;
  display: none;
}

#main_history:before {
  content: '';
  width: 250px;
  height: 120px;
  display: block;
  background: url(../img/main_year01.png) no-repeat left top;
  background-size: 100%;
  position: absolute;
  right: -40px;
  top: 180px;
}

#main_history:after {
  content: '';
  width: 230px;
  height: 120px;
  display: block;
  background: url(../img/main_year02.png) no-repeat left top;
  background-size: 100%;
  position: absolute;
  right: -235px;
  top: 225px;
}



@media screen and (max-width: 1700px) {
  #main {
    height: 270px;
  }

  #main_history:before {
    width: 200px;
    height: 100px;
    right: -35px;
    top: 140px;
  }

  #main_history:after {
    width: 180px;
    height: 100px;
    right: -180px;
    top: 185px;
  }
}

@media screen and (max-width: 1400px) {
  #main {
    height: 250px;
    background-size: 102% auto;
  }

  #main_history:before {
    width: 160px;
    height: 100px;
    right: -25px;
    top: 120px;
  }

  #main_history:after {
    width: 140px;
    height: 100px;
    right: -140px;
    top: 150px;
  }
}

@media screen and (max-width: 1100px) {
  #main {
    height: 240px;
    background-size: 110% auto;
  }

  #main_history {
    width: 80%;
  }

  #main_history:before {
    width: 140px;
    height: 100px;
    right: -25px;
    top: 100px;
  }

  #main_history:after {
    width: 120px;
    height: 100px;
    right: -120px;
    top: 130px;
  }
}

@media screen and (min-width: 1900px) {
  #main_history {
    top: 300px;
  }
}


/*---------------------------------------------
 **  コンテンツ
---------------------------------------------*/
#content {
  width: 100%;
  margin: 0 auto;
}

#top_topics {
  width: 80%;
  max-width: 800px;
  margin: -10px auto 4%;
}

#top_topics h2 {
  width: 90%;
  max-width: 300px;
}

#top_topics dl {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 5% auto;
  border-bottom: 1px solid #2a1512;
  letter-spacing: 0.1em;
  font-weight: 500;
}



#top_topics dl dt {
  width: 90%;
  text-align: left;
}

#top_topics dl dt a {
  font-size: 90%;
  display: block;
  padding: 3% 0 2%;
  transition: all 0.5s;
  position: relative;
}

#top_topics dl dt span {
  display: block;
  font-size: 90%;
}

#top_topics dl dd {
  width: 10%;
}

#top_topics dl dd a {
  display: inline-block;
  border: #999 1px solid;
  border-radius: 50px;
  font-size: 60%;
  padding: 6px 9px 6px 11px;
  margin-top: 35px;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
  color: #666;
}

#top_topics dl dd a:hover {
  color: #fff;
  background: #999;
}


#top_topics dl a:hover dd span:before {
  opacity: 0;
}

#top_ban {
  background: url(../img/top_bg.jpg) no-repeat bottom center;
  background-size: 100% auto;
  padding-top: 5%;
}

#top_ban>div {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto 7%;
}

#top_ban>div a {
  transition: 0.6s all !important;
  display: inline-block;
}

#top_ban>div a:hover {
  transform: scale(1.05) !important;
  transition: 0.6s all !important;
}


#top_soon>div {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto 8%;
}

#top_soon>div a {
  transition: 0.6s all !important;
  display: inline-block;
}

#top_soon>div a:hover {
  transform: scale(1.05) !important;
  transition: 0.6s all !important;
}

#top_logo {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 2.5% 0 1.8%;
}

#top_logo>div {
  width: 90%;
  max-width: 900px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
}

#top_logo>div img {
  width: 25%;
}

#top_logo>div>div {
  width: 70%;
  font-size: 80%;
}

#top_logo>div>div p {
  margin-bottom: 5px;
}

footer {
  padding: 6% 0 1%;
}

#home footer {
  padding: 10% 0 1%;
}

footer>div {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

footer>div img {
  width: 250px;
  margin-right: 5%;
  mix-blend-mode: multiply;
}

footer>div p {
  width: (100% - 270px);
  font-size: 80%;
  letter-spacing: 0.15em;
  margin-top: 12px;
}


#pageTop {
  position: fixed;
  bottom: 60px;
  right: 20px;
  z-index: 999;
}

#pageTop a {
  display: block;
  width: 80px;
  height: 80px;
  background: url(../img/pagetop.png) no-repeat;
  background-size: 100%;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
}

#pageTop a:hover {
  text-decoration: none;
  opacity: 0.7;
}


/*---------------------------------------------
 **  下層ページ
---------------------------------------------*/
#canvas-container {
  padding-top: 20px;
  background: #fff;
  background-size: cover;
}

canvas {
  width: 100%;
  height: 400px;
  vertical-align: top;
  margin-top: -120px;
}

#greeting #content {
  background: #f1f1f1;
  padding-bottom: 10%;
}

body:not(#home) h2 {
  text-align: center;
}

body:not(#home) h2 img {
  width: 80%;
  max-width: 500px;
  margin: 3% auto 0;
}


#greeting h3 {
  max-width: 1000px;
  text-align: center;
  border-bottom: 1px solid #2a1512;
  margin: 0 auto;
}


#greeting h3 img {
  width: 90%;
  max-width: 250px;
  margin: 0 auto;
}

#greeting h3+ul {
  width: 85%;
  max-width: 900px;
  margin: 5% auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#greeting h3+ul li {
  width: 31%;
}

#greeting h3+ul li a {
  display: block;
  padding: 7px 10px;
  border: 1px solid #2a1512;
  border-radius: 18px;
  font-weight: bold;
  transition: all 0.5s;
  letter-spacing: 0.1em;
}

#greeting h3+ul li a:hover {
  color: #fff;
  background: #2a1512;
}

.greet01 {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 8%;
  position: relative;
}

.greet01 h4 {
  width: 70%;
  font-size: 180%;
  font-weight: bold;
  letter-spacing: 0.15em;
  background: #e1d0ef;
  position: relative;
  padding: 8% 0 8% 15%;
  box-sizing: border-box;
}

.greet01 h4::before {
  content: '';
  width: 55%;
  height: 60px;
  background: url(../img/greeting/greet_ttl03_01.png) no-repeat top left;
  background-size: 100% auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.greet01 p {
  width: 47%;
  margin: 3% auto 3% 7%;
}

.greet01>img {
  width: 38%;
  max-width: 440px;
  display: block;
  position: absolute;
  right: 4%;
  top: 8%;
}

.greet02 {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 10%;
  position: relative;
  padding-top: 12%;
}

.greet02 h4 {
  width: 70%;
  font-size: 180%;
  font-weight: bold;
  letter-spacing: 0.15em;
  background: #afe4e9;
  position: relative;
  padding: 8% 0 8% 20%;
  box-sizing: border-box;
  margin-left: 30%;
  text-align: left;
}

.greet02 h4::before {
  content: '';
  width: 55%;
  height: 60px;
  background: url(../img/greeting/greet_ttl03_02.png) no-repeat top left;
  background-size: 100% auto;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}

.greet02 p {
  width: 75%;
  margin: 3% auto 3% 10%;
}

.greet02>img {
  width: 38%;
  max-width: 440px;
  display: block;
  position: absolute;
  left: 4%;
  top: 0;
}

.greet03 {
  overflow: hidden;
}

.greet03>div {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 0;
  padding-top: 10%;
}

.greet03 h4 {
  width: 70%;
  font-size: 180%;
  font-weight: bold;
  letter-spacing: 0.15em;
  background: #ffdbb5;
  position: relative;
  padding: 8% 0 8% 20%;
  box-sizing: border-box;
  margin-left: 0;
  text-align: left;
  position: relative;
}


.greet03 h4::before {
  content: '';
  width: 55%;
  height: 60px;
  background: url(../img/greeting/greet_ttl03_03.png) no-repeat top left;
  background-size: 100% auto;
  display: block;
  position: absolute;
  top: 0;
  left: 7%;
}

.greet03 h4::after {
  content: '';
  width: 70px;
  height: 100%;
  background: #ffdbb5;
  display: block;
  position: absolute;
  left: -70px;
  top: 0;
}

.greet03 p {
  width: 75%;
  margin: 3% auto 3% 10%;
}

.greet03 div>img {
  width: 38%;
  max-width: 440px;
  display: block;
  position: absolute;
  right: 0%;
  top: 0;
}

@media screen and (max-width: 1650px) {
  .greet03 h4 {
    margin-top: 50px;
  }
}

@media screen and (max-width: 1050px) {

  .greet01 h4,
  .greet03 h4 {
    padding: 8% 0 8% 5%;
    text-align: left;
  }
}


#about_main {
  width: 100%;
  position: relative;
  padding-bottom: 150px;
  z-index: -1;
}

#about h2 {
  z-index: 1;
}

#about h2+p {
  width: 80%;
  max-width: 800px;
  margin: 5% auto 7%;
  text-align: center;
  font-size: 130%;
  line-height: 2.8;
  font-weight: 500;
  letter-spacing: 0.05em;
  z-index: 1;
}

#about_main>img {
  z-index: -1;
  width: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  animation: move-y 2s infinite alternate ease-in-out;
  display: inline-block;
}

@keyframes move-y {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(30px);
  }
}

#about #content {
  z-index: 1;
  text-align: center;
}

#about #content p {
  text-align: center;
  font-size: 110%;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2.2;
}


.about_gray {
  background: #f1f1f1;
  margin: -120px auto 0;
  position: relative;
  padding: 80px 0;
}

.about_gray h3 {
  font-size: 200%;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: url(../img/about/about_ttl_bg.png) no-repeat center center;
  background-size: 440px auto;
  display: inline-block;
  padding: 2% 6% 2% 7%;
  position: absolute;
  top: -60px;
  right: 0;
  left: 0;
  margin: 0 auto;
}

.about_gray>img {
  width: 90%;
  max-width: 1000px;
  display: block;
  margin: 0 auto;
}

.about_gray>img+p {
  margin: 5% auto;
  font-weight: 700 !important;
}

.about_white {
  position: relative;
  padding-bottom: 150px;
}

/* .about_white::before {
  content: '';
  width: calc(50% - 270px);
  height: 400px;
  background: url(../img/about/about_img01.jpg) no-repeat left top;
  background-size: 100% auto;
  position: absolute;
  top: 0;
  left: 0;
  } */

.about_white h3 {
  font-size: 200%;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: url(../img/about/about_ttl_bg.png) no-repeat center center;
  background-size: 440px auto;
  display: inline-block;
  padding: 3% 12% 3% 13%;
  margin: 5% auto 3.5%;
}

.about_white h4 {
  background: #49cad4;
  padding: 2% 3%;
  width: 70%;
  max-width: 380px;
  box-sizing: border-box;
  font-weight: bold;
  margin: 0 auto 2.5%;
  font-family: 'Rubik', sans-serif;
  font-size: 125%;
  letter-spacing: 0.2em;
}

.about_white>div {
  margin-bottom: 5%;
}

.about_white>div p span {
  font-weight: 700;
  display: block;
}

.about_white>div p {
  margin-bottom: 1.5em;
}



/* 202404追加 */
.about_plan_img{
margin-left:auto;
margin-right:auto;
max-width:500px;
margin-top:-10px !important;
}

.mb40{
margin-bottom:40px !important;
}
/* 202404追加 */



.list-b {
	display: inline-block;
	text-align: left!important;
	margin: auto;
        margin-bottom:20px;
}
.list-b ul {
	font-weight: 500;
}
.list-b ul li {
	line-height: 2.2;
	font-size: 110%;
}

.list-b .spcl_nbr{
        text-align:left !important;
        padding-left:50px;
}



@media screen and (max-width: 1200px) {
  #about h2+p {
    font-size: 110%;
  }
}

#donation_main {
  width: 100%;
  position: relative;
  padding-bottom: 50px;
  z-index: -1;
}

#donation h2 {
  z-index: 1;
}

#donation h2+p {
  width: 90%;
  max-width: 900px;
  margin: 5% auto 2%;
  text-align: center;
  font-size: 110%;
  line-height: 2.8;
  font-weight: 500;
  letter-spacing: 0.05em;
  z-index: 1;
}

#donation_main>div {
  width: 90%;
  max-width: 1000px;
  display: flex;
  justify-content: flex-end;
  margin: 0 auto 7%;

}

#donation_main>div>div {
  width: 300px;
}

#donation_main>div p {
  text-align: left;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-size: 95%;
}

.donation_orange {
  background: #ffb86f;
  position: relative;
  padding: 160px 0 1%;
}


.donation_orange>h3>img {
  width: 60%;
  max-width: 300px;
  position: absolute;
  top: -210px;
  right: 0;
  left: 0;
  margin: 0 auto;
  display: inline-block;
}

.donation_list {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  font-size: 110%;
}

.donation_list dl {
  margin: 0 auto 2em;
  display: flex;
  flex-wrap: wrap;
}

.donation_list dl dt {
  width: 140px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: left;
}

.donation_list dl dt span {
  color: #fff;
  display: inline-block;
  margin-right: 15px;
}

.donation_list dl dd {
  width: calc(100% - 140px);
  text-align: left;
  font-weight: 500;
  font-size: 90%;
}

.dl_03 {
  display: block !important;
}

.dl_03 dd {
  text-indent: -1.5em;
  margin-left: 4em;
}

.dl_03 dd ul li {
  margin: 1% 0;
}

.donation_p {
  width: 85%;
  max-width: 750px;
  margin: 5% auto;
}

.contact {
  width: 90%;
  max-width: 1000px;
  margin: 8% auto 0;
  padding: 5% 0;
  border-top: 1px solid #2a1512;
}

.contact>h3 {
  max-width: 350px;
  margin: 0 auto 7%;
}

.con_add {
  text-align: center;
  font-weight: 500;
}

.con_tel {
  font-size: 240%;
  text-align: center;
  letter-spacing: 0.05em;
}

.con_tel a {
  display: inline-block;
  background: url(../img/donation/tel.png) no-repeat center left;
  background-size: 45px auto;
  padding: 10px 10px 10px 60px;
  font-family: 'Nunito', sans-serif !important;
  font-weight: 200;
  color: #2a1512 !important;
}

@media screen and (min-width: 1050px) {
  .donation_orange>h3>img {
    top: -250px;
  }
}

@media screen and (max-width: 1050px) {
  #donation h2+p {
    font-size: 100%;
  }

  #donation_main>div {
    max-width: 700px;
  }

  #donation_main>div>div {
    font-size: 100%;
    width: 200px;
  }

}

@media screen and (max-width: 940px) {
  #donation h2+p {
    font-size: 85%;
  }

  #donation_main>div {
    font-size: 90%;
    max-width: 650px;
  }

  .donation_list,
  .donation_p {
    font-size: 90%;
  }
}


#topics_main {
  margin-bottom: 5%;
}

#topics_main h2 {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto 5%;
  text-align: left !important;
}

#topics_main h2 img {
  margin-left: 0 !important;
  margin-top: 5%;
  max-width: 350px;
}

#content.con_topics {
  border-top: 1px solid #ccc;
  padding-top: 5%;
}

#topics_list {
  width: 90%;
  max-width: 900px;
  margin: 0 auto 5%;
  text-align: left !important;
}

#topics_list h3 {
  font-size: 110%;
  font-weight: 500;
  letter-spacing: 0.2em;
  padding-bottom: 4%;
  border-bottom: 1px solid #ccc;
}

#topics_list h3 span {
  display: inline-block;
  position: relative;
  margin-left: 55px;
}

#topics_list h3 span::before {
  content: '';
  width: 40px;
  height: 2px;
  background: #2a1512;
  position: absolute;
  left: -55px;
  top: 0.9em;
}

#topics_list dl {
  padding: 3% 5%;
  border-bottom: 1px solid #ccc;
  box-sizing: border-box;
  letter-spacing: 0.1em;
  font-size: 85%;
}

#topics_list dl dt {
  font-size: 80%;
}

#topics_list dl dd {
  font-weight: 500;
}

#topics_kiji {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto 5%;
}

#topics_kiji h3 {
  border-bottom: 1px solid #ccc;
  padding: 0 0 2%;
  font-size: 85%;
  letter-spacing: 0.2em;
  text-align: left;
}

#topics_kiji>div {
  max-width: 900px;
  margin: 0 auto 5%;
  text-align: left !important;
  padding: 4% 0 2%;
  border-bottom: 1px solid #ccc;
  text-align: left !important;
}

#topics_kiji>div h4 {
  font-size: 140%;
  letter-spacing: 0.2em;
  font-weight: 600;
  margin-bottom: 4%;
}

#topics_kiji>div p {
  letter-spacing: 0.05em;
  margin: 6% auto;
  line-height: 2.4;
}

#topics_kiji>p {
  text-align: center;
  font-size: 80%;
}

/* スペシャルコンテンツ追加 */
#special_main {
  width: 100%;
  overflow: hidden;
  transition: 1000ms linear;
  position: relative;
  z-index: -1;
}

#special_main.is-show::before {
  animation: apper_right 4s forwards;
  width: 100%;
  height: 1800px;
  background: #fff;
  bottom: 0;
  content: '';
  pointer-events: none;
  position: absolute;
  left: 0px;
  top: 0;
  z-index: 1;
  animation-delay: 0;
  transform: translateX(0);
}

@keyframes apper_right {
  40% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}

#special_main.is-show img {
  opacity: 1 !important;
}

#special_main img {
  width: 100%;
}

#special_main img {
  width: 100%;
}

.spe_index {
  width: 90%;
  max-width: 1100px;
  margin: -3% auto 10%;
}

.spe_index h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 3%;
}

.spe_index h3 img:nth-of-type(1) {
  width: 220px;
  margin-right: 1%;
}

.spe_index h3 img:nth-of-type(2) {
  width: 240px;
  margin-right: 1%;
}

.spe_index h3 img:nth-of-type(3) {
  width: 340px;
}

.spe_index02 {
  margin: 5% auto 5%;
}

.spe_index02 h3 img:nth-of-type(2) {
  width: 460px;
  margin-right: 1%;
}

.spe_index02 h3 img:nth-of-type(3) {
  width: 300px;
}

@media screen and (max-width: 1120px) {
  .spe_index h3 {
    justify-content: center;
  }

  .spe_index h3 img:nth-of-type(3) {
    width: 250px;
    padding: 0 500px;
  }

  .spe_index02 h3 img:nth-of-type(3) {
    width: 220px;
  }
}

.spe_index>div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.spe_index>div dl {
  width: 31%;
  margin-bottom: 3%;
}

.spe_index>div dl a {
  display: block;
  transition: all 0.5s;
}

.spe_index>div dl a:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.spe_index>div dl dt {
  font-size: 120%;
  text-align: center;
  color: #98001e;
  font-weight: bold;
  border-top: 1px solid #2a1512;
  padding-top: 5px;
  padding-bottom: 5px;
  height: 4rem;
}

#spe_h2 {
  width: 80%;
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  z-index: 1;
}

#spe_h2 h2 {
  width: 100%;
  font-size: 140%;
  letter-spacing: 0.5rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 3%;
}

#special_interview #spe_h2 {
  margin-bottom: 3%;
}

#spe_h2>img:nth-of-type(1) {
  width: 53%;
  margin: 0 1%;
}

#spe_h2>img:nth-of-type(2) {
  width: 43%;
  margin: 0 1%;
}

#special_interview #spe_h2>img:nth-of-type(1) {
  width: 45%;
  margin: 0 1%;
}

#special_interview #spe_h2>img:nth-of-type(2) {
  width: 50%;
  margin: 4% 1% 0;
}

#special_page #content>div {
  width: 90%;
  max-width: 1100px;
  margin: 5% auto;
}

#special_page #content h3 {
  font-size: 140%;
  color: #98001e;
  font-weight: 600;
  text-align: left;
  margin-bottom: 2%;
  line-height: 1.6;
  letter-spacing: 0.1rem;
}

#special_page #content p {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 110%;
  margin-bottom: 5%;
}

#special_page #content p span {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  letter-spacing: 0.2rem;
}

#special_page #content .img_right {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

#special_page #content .img_right p {
  width: 50%;
}

#special_page #content .img_right img {
  width: 45%;
}

#special_page #content .img_left {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

#special_page #content .img_left p {
  width: 50%;
}

#special_page #content .img_left img {
  width: 45%;
}

#content div.spe_talk_profile {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

#content div.spe_talk_profile p {
  width: 53%;
  margin-top: 80px;
}

#content div.spe_talk_profile img {
  width: 42%;
}

#content div.spe_talk_profile02 {
  flex-direction: row-reverse;
}

#content div.spe_talk_profile02 img {
  margin-top: -80px;
}

#content div.spe_talk_profile02 p {
  margin-top: 20px;
}

#content div.spe_talk_profile p.gothic {
  font-family: 'Noto Sans JP', sans-serif !important;
  line-height: 1.6;
  font-weight: 400;
  font-size: 100% !important;
  letter-spacing: 0.1rem;
}

#content div.spe_talk_profile p strong {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 130%;
  color: #98001e;
  font-weight: 600;
  text-align: left;
  margin-bottom: 2%;
  letter-spacing: 0.1rem;
  line-height: 1.6;
  display: block;
}


#special_anc {
  width: 85%;
  max-width: 720px;
  margin: -5% auto 10%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#special_anc li {
  width: 48%;
}

#special_anc li a {
  display: block;
  padding: 7px 10px;
  border: 1px solid #2a1512;
  border-radius: 18px;
  font-weight: bold;
  transition: all 0.5s;
  letter-spacing: 0.1em;
}

#special_anc li a:hover {
  color: #fff;
  background: #2a1512;
}

#special #anc01,
#special #anc02 {
  padding-top: 30px;
  margin-top: -30px;
  display: block;
  pointer-events: none;
}

#special_page #content .img_right_block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

#special_page #content .img_right_block>div {
  width: 50%;
}

#special_page #content .img_right_block>img {
  width: 45%;
  margin: 0 0 5% 0;
}

#special_page #content .img_left_block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row-reverse;
}

#special_page #content .img_left_block>div {
  width: 50%;
}

#special_page #content .img_left_block>img {
  width: 45%;
  margin: 0 0 5% 0;
}

#special_page #content .img_right_float>img {
  width: 45%;
  float: right;
  margin: 0 0 5% 5%;
}

#special_page #content .img_left_float>img {
  width: 45%;
  float: left;
  margin: 0 5% 5% 0;
}


.spe_talk_profile_block {
  max-width: 1000px !important;
  margin: 15% auto 5% !important;
}

.spe_talk_profile_block .gothic_margin {
  margin: 15% 0 0 10% !important;
  width: 48% !important;
}

@media screen and (max-width: 1010px) {
  #special_page #content h3 br {
    display: none;
  }
}

.youtube {
  width: 90%;
  max-width: 900px !important;
  aspect-ratio: 16 / 9;
  margin: 0 auto 3%;
  position: relative;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

.thumb {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
  transition: all 0.5s;
}

.thumb:hover {
  transform: scale(1.05);
}

.icon_play {
  width: 15%;
  position: absolute;
  bottom: 3%;
  right: 3%;
  z-index: 2;
  pointer-events: none;
}

#special_interview #content,
#special_interview footer {
  background: #f0f0f0;
}

#special_interview #content {
  padding-top: 5%;
}

.obog_profile {
  max-width: 900px !important;
  margin: 0 auto 2%;
  display: inline-block;
  box-sizing: border-box;
  position: relative;
}

.obog_profile::before {
  content: '';
  width: 50px;
  height: 90px;
  background: url(../img/special/icon_message.png) no-repeat top left;
  background-size: 100% auto;
  display: block;
  position: absolute;
  top: -10px;
  left: 0;
}

.obog_profile::after {
  content: '';
  width: 50px;
  height: 90px;
  background: url(../img/special/icon_message.png) no-repeat top left;
  background-size: 100% auto;
  transform: rotate(180deg);
  display: block;
  position: absolute;
  bottom: -10px;
  right: 0;
}

.obog_profile p {
  padding: 0 80px;
  box-sizing: border-box;
  font-weight: 400;
  margin-bottom: 0;
}

.obog_img_flex {
  width: 90%;
  max-width: 900px !important;
  margin: 5% auto 3%;
  padding-bottom: 2%;
  border-bottom: 1px solid #2a1512;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.obog_img_flex dl {
  width: 32%;
  margin-bottom: 3%;
}

.obog_img_flex dl dt {
  margin-bottom: 5px;
}

.obog_img_flex dl dd {
  font-size: 90%;
  font-weight: 400;
  text-align: left;
}

.obog_history {
  width: 90%;
  max-width: 860px !important;
  margin: 0 auto;
  text-align: left;
}

.obog_history ul {
  margin-bottom: 3%;
}

.obog_history li {
  line-height: 1.6;
  margin-bottom: 5px;
  font-weight: 400;
}

.obog_history li span {
  padding-left: 3rem;
  display: inline-block;
}

.obog_change {
  width: 85%;
  max-width: 900px;
  margin: 8% auto 0;
  padding-bottom: 5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.obog_change li {
  width: 31%;
}

.obog_change li a {
  display: block;
  padding: 7px 10px;
  border: 1px solid #2a1512;
  border-radius: 18px;
  font-weight: bold;
  transition: all 0.5s;
  letter-spacing: 0.1em;
}

.obog_change li a:hover {
  color: #fff;
  background: #2a1512;
}

.obog_change01 li:nth-child(1) a {
  color: #fff;
  background: #2a1512;
}

.obog_change02 li:nth-child(2) a {
  color: #fff;
  background: #2a1512;
}

.obog_change03 li:nth-child(3) a {
  color: #fff;
  background: #2a1512;
}

/* 特別対談第3回追加　20240207 */

#special_page .spe_third .img_right_float>img {
  margin: 0 0 3% 5%!important;
}

#special_page .spe_third .img_left_float>img {
  margin: 0 5% 3% 0!important;
}
#content div.spe_talk_profile p.gothic em{
  display: block;
  margin-bottom:5px;
  font-size:90%;
}
#content div.spe_talk_profile p.gothic b{
  display: block;
  margin-bottom:15px;
  font-size:130%;
  color: #98001e;
}
#content div.spe_talk_profile p.gothic b small{
  font-size:70%;
}
.spe_third div.spe_talk_profile p{
  margin-top:100px!important;
}
.spe_third div.spe_talk_profile p.gothic p{
  margin-top:80px!important;
}
.spe_third .spe_talk_profile_block .spe_talk_profile02 .gothic_margin {
  margin: 80px 0 0 15% !important;
  width: 40% !important;
}
#content div.spe_talk_profile03 img{
  margin-top:-40px;
}
#content div.spe_talk_profile03 p{
  margin-top:60px!important;
}

.spe_third  p{
  margin-bottom:2%!important;
}
#special_page #content>div.mb2{
  margin-bottom:2%;
}
#special_page #content>div.mt2{
  margin-top:2%;
}
#special_page #content>div.mt8{
  margin-top:8%;
}
.spe_third .spe_talk_profile_block{
  margin-top:5%!important;
}
.spe_third h3 {
  margin-bottom: 3%!important;
}
.float_btm{
  overflow: hidden;
}
.btm_bar01 {
  float: right;
  width: 1px;
  height: 50px;
  background-color:#fff;
}
.btm_bar02 {
  float: left;
  width: 1px;
  height: 80px;
  background-color:#fff;
}
.btm_bar03 {
  float: right;
  width: 1px;
  height: 190px;
  background-color:#fff;
}
.float_btm img{
  clear: both;
  margin-top:2%!important;
}

#special_page #content h3 br.br_on{
  display: inline!important;

}

@media screen and (max-width: 1140px) {
  .btm_bar01{
    height:80px;
  }
  .btm_bar02{
    height:120px;
  }
  .btm_bar03{
    height:220px;
  }
}

@media screen and (max-width: 1040px) {
  .btm_bar01{
    height:110px;
  }
  .btm_bar02{
    height:150px;
  }
  .btm_bar03{
    height:270px;
  }
}
@media screen and (max-width: 1000px) {
  .spe_third div.spe_talk_profile p br{
    display: none;
  }
  .spe_third .spe_talk_profile_block .spe_talk_profile02 .gothic_margin br{
    display: none;
  }
  .spe_third .spe_talk_profile_block .spe_talk_profile02 .gothic_margin {
    margin: 70px 0 0 10% !important;
    width: 45% !important;
  }
  .spe_third div.spe_talk_profile02 img{
    margin-top:-30px!important;
  }
  .spe_third div.spe_talk_profile03 img {
    margin-top: -20px!important;
  }

}

@media screen and (max-width: 900px) {
  .br_no_900{
    display: none;
  }
}
@media screen and (max-width: 920px) {
  .btm_bar01{
    height:130px;
  }
  .btm_bar02{
    height:170px;
  }
  .btm_bar03{
    height:320px;
  }
}

@media screen and (max-width: 840px) {
  .btm_bar01{
    height:150px;
  }
  .btm_bar02{
    height:200px;
  }
  .btm_bar03{
    height:340px;
  }
  .spe_third div.spe_talk_profile02 img{
    margin-top:0px!important;
  }
  .spe_third div.spe_talk_profile03 img {
    margin-top: 0px!important;
  }
  
}
@media screen and (max-width: 740px) {
  .btm_bar01{
    height:180px;
  }
  .btm_bar02{
    height:230px;
  }
  .btm_bar03{
    height:390px;
  }
  .spe_third div.spe_talk_profile p{
    margin-top:50px!important;
  }
}
@media screen and (max-width: 670px) {
  .btm_bar01{
    height:230px;
  }
  .btm_bar02{
    height:260px;
  }
  .btm_bar03{
    height:430px;
  }
  .spe_third .spe_talk_profile_block .spe_talk_profile02 .gothic_margin{
    margin:25px 0 0 0% !important;
    width:55%!important;
  }
}

@media screen and (max-width: 600px) {
  .btm_bar01{
    height:240px;
  }
  .btm_bar02{
    height:310px;
  }
  .btm_bar03{
    height:480px;
  }

}
@media screen and (max-width: 580px) {
  .btm_bar01{
    height:250px;
  }
  .btm_bar02{
    height:340px;
  }
  .btm_bar03{
    height:530px;
  }
}
@media screen and (max-width: 540px) {
  .btm_bar01{
    height:270px;
  }
  .btm_bar02{
    height:370px;
  }
  .btm_bar03{
    height:550px;
  }
}
@media screen and (max-width: 530px) {
  .btm_bar01{
    height:290px;
  }
  .btm_bar02{
    height:390px;
  }
  .btm_bar03{
    height:590px;
  }
}
@media screen and (max-width: 546px) {
#SMP------------------------{}
	#rose_main h2 .rose_h2 {
		width: 100%;
		max-width: 90%!important;
		margin: 30px auto 20px;
	}
	#rose_main .rose_mv {
		width: 100%;
		background-image: url("../img/main_bg.png");
		background-repeat: no-repeat;
		background-position: center bottom;
		background-size: 100%;
		padding-bottom: 14%;
	}
	#rose_main .rose_mv img {
		width: 100%;
		max-width: 90%;
		margin: 0 auto;
	}
	#rose_main .rose_mv+p {
	  width: 100%;
	  max-width: 90%;
	  margin: 0% auto 30px;
	  text-align: left;
	  font-size: 1.6rem;
	  line-height: 1.8;
	  font-weight: 500;
	  letter-spacing: 0.05em;
	  z-index: 1;
	}
	#rose_main .rose_photo_box {
		width: 90%;
		margin: 0 auto 50px;
	}
	#rose_main .rose_photo_box li {
		width: 100%;
		margin-bottom: 20px
	}
	#rose_main .rose_photo_box li:nth-child(2) {
		margin-bottom: 0px;
	}
	#rose_main .rose_movie {
		width: 100%;
		max-width: 90%;
		margin: 0 auto 75px;
		text-align: center;
	}
	#rose_main .rose_movie h3 {
		font-size: 2rem;
		line-height: 1.8;
		color: #98001e;
		font-weight: bold;
		margin-bottom: 20px;
	}
	#rose_main .cloudfan {
		width: 100%;
		margin: 0 auto;
	}
	.cloudfan .cloud_title {
		width: 100%;
		max-width: 90%;
		margin: 0 auto;
		background-color: #f4b084;
	}
	.cloudfan .cloud_title h4 {
		font-size: 2rem;
		line-height: 1.6;
		padding: 10px 0px;
		color: #ff0000;
	}
	.cloudfan .cloud_title p {
		font-size: 1.8rem;
		line-height: 1.4;
		padding: 10px 0px;
		text-align: center;
		background-color: #fce4d6;
	}
	.cloudfan .btn03 a {
		background: #ffb25f;
	}
	.cloudfan .cloud_attention {
	  width: 100%;
		max-width: 90%;
		margin: 0 auto 50px;
	}
	.cloudfan .cloud_attention p {
	  font-size: 1.4rem;
	  line-height: 1.6;
		text-align: center!important;
	}
	.cloudfan .cloud_attention .attention_box {
		width: 100%;
		max-width: 96%;
		border: 2px solid #000000;
		margin: 0 auto;
	}
	.cloudfan .cloud_attention .attention_box p {
		padding: 2%;
		padding-top: 4%;
	}
	.color_red {
		color: #c00000;
	}
	.color_blue {
		color: #1f4e78;
	}
	#rose_main .pc {
		display: none;
	}
}
@media screen and (min-width: 547px) and (max-width: 960px) {
#TBRET------------------------{}
	#rose_main h2 .rose_h2 {
		width: 100%;
		max-width: 90%!important;
		margin: 30px auto 20px;
	}
	#rose_main .rose_mv {
		width: 100%;
		background-image: url("../img/main_bg.png");
		background-repeat: no-repeat;
		background-position: center bottom;
		background-size: 100%;
		padding-bottom: 14%;
	}
	#rose_main .rose_mv img {
		width: 100%;
		max-width: 90%;
		margin: 0 auto;
	}
	#rose_main .rose_mv+p {
	  width: 100%;
	  max-width: 90%;
	  margin: 0% auto 30px;
	  text-align: left;
	  font-size: 1.6rem;
	  line-height: 1.8;
	  font-weight: 500;
	  letter-spacing: 0.05em;
	  z-index: 1;
	}
	#rose_main .rose_photo_box {
		width: 90%;
		margin: 0 auto 50px;
	}
	#rose_main .rose_photo_box li {
		width: 100%;
		margin-bottom: 20px
	}
	#rose_main .rose_photo_box li:nth-child(2) {
		margin-bottom: 0px;
	}
	#rose_main .rose_movie {
		width: 100%;
		max-width: 90%;
		margin: 0 auto 75px;
		text-align: center;
	}
	#rose_main .rose_movie h3 {
		font-size: 2rem;
		line-height: 1.8;
		color: #98001e;
		font-weight: bold;
		margin-bottom: 20px;
	}
	#rose_main .cloudfan {
		width: 100%;
		margin: 0 auto;
	}
	.cloudfan .cloud_title {
		width: 100%;
		max-width: 90%;
		margin: 0 auto;
		background-color: #f4b084;
	}
	.cloudfan .cloud_title h4 {
		font-size: 2rem;
		line-height: 1.6;
		padding: 10px 0px;
		color: #ff0000;
	}
	.cloudfan .cloud_title p {
		font-size: 1.8rem;
		line-height: 1.4;
		padding: 10px 0px;
		text-align: center;
		background-color: #fce4d6;
	}
	.cloudfan .btn03 a {
		background: #ffb25f;
	}
	.cloudfan .cloud_attention {
	  width: 100%;
		max-width: 90%;
		margin: 0 auto;
	}
	.cloudfan .cloud_attention p {
	  font-size: 1.8rem;
	  line-height: 1.8;
		text-align: center!important;
	}
	.cloudfan .cloud_attention .attention_box {
		width: 100%;
		max-width: 96%;
		border: 2px solid #000000;
		margin: 0 auto;
	}
	.cloudfan .cloud_attention .attention_box p {
		padding: 2%;
		padding-top: 4%;
	}
	.color_red {
		color: #c00000;
	}
	.color_blue {
		color: #1f4e78;
	}
	#rose_main .sp {
		display: none;
	}
	.youtube001pc iframe {
		width: 80%!important;
	}
}

@media screen and (min-width: 961px) {
#PC------------------------{}
	#rose_main h2 .rose_h2 {
		width: 100%;
		max-width: 875px;
		margin: 50px auto 30px;
	}
	#rose_main .rose_mv {
		width: 100%;
		background-image: url("../img/main_bg.png");
		background-repeat: no-repeat;
		background-position: center bottom;
		padding-bottom: 14%;
	}
	#rose_main .rose_mv img {
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
	}
	#rose_main .rose_mv+p {
	  width: 100%;
	  max-width: 1200px;
	  margin: 0% auto 30px;
	  text-align: left;
	  font-size: 110%;
	  line-height: 2.8;
	  font-weight: 500;
	  letter-spacing: 0.05em;
	  z-index: 1;
	}
	#rose_main .rose_photo_box {
		overflow: hidden;
		width: 100%;
		max-width: 1200px;
		margin: 0 auto 50px;
	}
	#rose_main .rose_photo_box li {
		float: left;
		width: 48%;
		margin-right: 4%;
	}
	#rose_main .rose_photo_box li:nth-child(2) {
		margin-right: 0px;
	}
	#rose_main .rose_movie {
		width: 860px;
		margin: 0 auto 150px;
		text-align: center;
	}
	#rose_main .rose_movie h3 {
		font-size: 24px;
		color: #98001e;
		font-weight: bold;
		margin-bottom: 30px;
	}
	#rose_main .cloudfan {
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
	}
	.cloudfan .cloud_title {
		width: 100%;
		background-color: #f4b084;
	}
	.cloudfan .cloud_title h4 {
		font-size: 34px;
		line-height: 80px;
		color: #ff0000;
		height: 80px;
	}
	.cloudfan .cloud_title p {
		font-size: 28px;
		line-height: 60px;
		text-align: center;
		height: 60px;
		background-color: #fce4d6;
	}
	.cloudfan .btn03 a {
		background: #ffb25f;
	}
	.cloudfan .cloud_attention p {
		font-size: 18px;
		text-align: center!important;
	}
	.cloudfan .cloud_attention .attention_box {
		width: 854px;
		border: 3px solid #000000;
		margin: 0 auto;
	}
	.cloudfan .cloud_attention .attention_box p {
		padding-top: 20px;
	}
	.color_red {
		color: #c00000;
	}
	.color_blue {
		color: #1f4e78;
	}
	#rose_main .sp {
		display: none;
	}
}