:root {
--base: #D23372;
--base-sub:#FDE4EE;
--headline: #FFFC9E;
--content_bg:#FFEEF5;
--fw-black: 900;
--fw-bold: 700;
--fc-gray:#505050;
}

.pc-only{
  display: block;
}

.sp-only{
  display: none !important;
}

.tab-only{
  display: none !important; 
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    padding: 0;
}

h1,h2,h3{
    font-weight: var(--fw-bold);    
}

b{
    font-weight: var(--fw-bold);
}

.container {
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.header {
    background:var(--base) ;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 200;
}

.header-inner {
    height: 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    width: calc(1360px + 10%);
    max-width: 100%;
    margin: 0 auto;
}

h1.logo {
    height: 55px;
}

.logo img {width: 165px;}

#nav-toggle{
    display: none;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap:24px;
}

nav li {
  position: relative;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    height: 100%;
    display: block;
    padding: 7px 0;
}

nav ul li ul {
  position: absolute;
  top: 100%;
  left: -7px;
  background: #fff;
  min-width: 240px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.07);
  z-index: 10;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
  flex-direction: column;
  text-align: center;
  gap: 0;
}

nav ul li ul li{
    border-bottom: 1px solid #ececec;
}

nav ul li ul li:last-child{
    border-bottom: none;
}

nav ul li ul li a {
  color: var(--base);
  font-weight: var(--fw-bold);
  font-size: 0.85rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav ul li .d-arrow{
    margin-left: 4px;
    transition: transform 0.3s ease;
}

nav ul li.dropdown a:hover{
    opacity: 1;
}

nav ul li.dropdown ul li a:hover{
    opacity: 0.8;
}

.nav ul li.dropdown:hover .d-arrow{
  transform: rotate(180deg);
}

.dropdown > a {
  pointer-events: none;
}

.headline{
    background: var(--headline);
    height: 40px;
    text-align: center;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--fw-bold);
    font-size: 1.25rem;
}

.headline i{
    width: 20px;
    height: 20px;
    display: block;
    margin-left: 0.25rem;
}

.headline i img{
    width: 100%;
    object-fit: contain;
}

.headline a{
    color: var(--base);
}

h1.section-title{
    font-family: "Shippori Mincho", serif;
    text-align: center;
    font-size: 2.25rem;
}

main{
    margin-top: 115px;
}

.main-title{
    font-family: "Shippori Mincho", serif;
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3.75rem;      
    font-weight: var(--fw-bold);
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.06em;
}

h2.section-title{
    font-family: "Shippori Mincho", serif;
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3.75rem;
}

.main-visual{
    height: calc(100vh - 110px);
}

.main-visual-content{
    background: url(../images/FV_bg.png) left top / auto 220px repeat-x;
    height: 100%;
}


.main-visual-content img{
    width: auto;
    height: calc(100% - 1em);
    max-width: 96%;
    margin: 0 auto 1em;
    display: block;
    object-fit: contain;
    padding-top: 13vh;
}

.main-visual-slider{
    position: relative;
    margin-bottom: 4rem;
}

.main-visual-slider img.bg {
  position: absolute;
  top: 0;
  height: 100%;
  object-fit: cover;
  z-index: 10;
}

.main-visual-slider img.bg.left { left: 0; }
.main-visual-slider img.bg.right { right: 0; }

.swiper {
    width: 100%;
    max-width: 100%;
}

.main-visual-slider .swiper-slide {
    width: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    }

.swiper-slide {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    }

.thumb {
    width: 100%;
    aspect-ratio: 240/160;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.section-title {
    text-align: center;
    font-size: 2.25em;
}

.best-action-section{

    margin-bottom: 7.5rem;
}

.best-action-section .container {
    background: var(--content_bg);
    padding: 7.5rem;
    position: relative;
}

.best-action-section .text-content {
    flex: 1;
    font-size: 1.25rem;
    line-height: 1.8;
    letter-spacing: 0.06em;
}

.best-action-section .image-content {
    flex: 1;
    text-align: center;
}

.best-action-section .image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.best-action-section figure {
  text-align: center;
  margin: 0.625rem 0 2.5rem;
}

.best-action-section figcaption {
  font-size: 0.75rem;
  color: var(--fc-gray);
  margin-top: 0.5em;
}

.best-action-section .flower{
    position: absolute;
    right: -90px;
    bottom: -80px;
}

@media screen and (max-width:1185px) {
    .best-action-section .flower{
        width: 200px;
        right: 0;
        bottom: -50px;
    }
}

.best-action-about{
background: url(../images/best-action-about_bg.jpg) center bottom repeat-x;
}

.best-action-about h1{
    letter-spacing: 0.06em;
    margin-bottom: 3.75rem;
}

.best-action-about h2{
    letter-spacing: 0.06em;
    margin-bottom: 3.75rem;
}

.best-action-about h1 span{
    color:var(--base);
}

.best-action-about h2 span{
    color:var(--base);
}

.about-bestaction-img{
    margin-bottom: 1.875rem;
}

.best-action-about .container {
    padding: 7.5rem;
}

.best-action-about .about {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 3.75rem;
}

.best-action-about .pillar-item {
    text-align: center;
}

.best-action-about .plus-icon {
    font-size: 2em;
    color: #aaa;
}

.best-action-about .action-item {
    text-align: center;
}

.partners-section {
    background: #FBFBFB;
    padding: 100px 0;
    border-top: 1px solid #E2E2E2;
    border-bottom: 1px solid #E2E2E2;
}

#item {
  width: calc(1000px + 20%);
  padding: 0 10%;
  background: 
    linear-gradient(
      to right,
      transparent 0%,
      transparent 10%, /* 左10%透明 */
      #fff 10%,        /* 中央白開始 */
      #fff 90%,        /* 中央白終わり */
      transparent 90%, /* 右10%透明 */
      transparent 100%
    );
}

#item .swiper-slide{
  opacity: 0.5;
  transition: opacity 0.3s;
}

#item .swiper-slide-active {
  opacity: 1;
}

#item .swiper-slide-next {
  opacity: 1;
}


#item .swiper-button-prev,
#item .swiper-button-next {
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  color: transparent;
}

#item .swiper-button-next {
  background-image: url('../images/item-arrow-next.png');
}

#item .swiper-button-prev {
  background-image: url('../images/item-arrow-prev.png');
}

.partners-section .container {
    width: 1000px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.partners-section .container:after{
    display: block;
}

.partners-section h2{
  
}
.partners-section .partner-item {
    background: #fff;
    width: calc(50% - 20px);
    padding: 2.5rem;
    color: var(--fc-gray);
    display: flex;
    align-items: center;
    flex-direction: column;
    border-radius: 14px;
    border: 1px solid #e9e9e9;
}
@media screen and (max-width:1185px) {
.partners-section .partner-item{
    flex-direction: column;
    justify-content: flex-start;
}
}
.partners-section .pr_img{
    width: 110px;
}

.partners-section .pr_text{
    width: 100%;
    line-height: 1.6;
    margin-bottom: auto;
}
.partners-section .pr_text h3{
    font-size: 1.625rem;
    margin-bottom: 0.875rem;
    line-height: 1.4;
    text-align: center;
}

#item .swiper-wrapper {
  align-items: stretch;
}

#item .swiper-slide {
  height: auto;
  display: flex;
}

#item .partner-item {
  display: flex;
}

.offer-group{
    border-top: #E2E2E2;
    border-bottom: #E2E2E2;
    padding: 100px 0;
}

.offer-group .container{
    padding: 0;
}

.offer-group .group-inner{
    margin: 0 auto;
    width: 100%;
    padding-bottom: 6.25rem;
}

.offer-group h2.section-title{
}

.offer-group h2.section-title span{
    font-size: 1rem;
}

.offer-group .logo-section {
    text-align: center;
    margin: 0 auto 3.75rem;
    width: 750px;
}

.offer-group .main-logo {
    width: 190px;
    height: auto;
}

.offer-group h2.group-title{
    margin-bottom: 3.75rem;
    font-size: 1.5rem;
    text-align: center;
    font-family: "Shippori Mincho", serif;
}

.offer-group .group-section {
    margin: 40px auto;
    color: var(--fc-gray);
    width: 750px;
}

.offer-group .group-text{
    font-size: 1.25rem;
    margin-bottom: 3.75rem;
    line-height: 1.8;
    letter-spacing: 0.06em;
}

.offer-group .member-section {
    max-width: 100%;
    margin: 3.75rem auto;
    padding: 2.5rem;
    background-color: #FBFBFB;
    border-radius: 20px;
    width: 750px;
}

.offer-group .member-card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.offer-group .member-image-container {
    flex-shrink: 0;
    width: 160px;
}

.offer-group .member-photo {
    width: 100%;
    height: auto;
}

.offer-group .member-info {
    color: var(--fc-gray);
}

.offer-group .member-role {
    display: flex;
    align-items: baseline;
    line-height: 1;
    font-weight: var(--fw-bold);
    margin-bottom: 1rem;
}

.offer-group .member-role .post{
    border-radius: 4px;
    background: #ecebeb;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 53px;
    padding: 6px 0;
    align-self: center;
    margin-right: 10px;
}

.offer-group .member-name {
    font-size: 1.625rem;
}

.offer-group .member-ruby {
    font-size: 0.75rem;
}

.offer-group .san{
    font-size: 1.25rem;
}

.offer-group .member-bio{
    font-size: 0.875rem;
    line-height: 1.8;
    letter-spacing: 0.06em;
    margin-bottom: 0.625rem;
}

.offer-group .member-link {
    font-size: 0.625rem;
    color: var(--base);
    font-weight: var(--fw-bold);
    display: flex;
    align-items: center;
}

.offer-group .member-link span {
}

.offer-group .member-link i{
    width: 12px;
    display: flex;
    align-items: center;
    margin-left: 0.25rem;
}

.offer-group .instagram-title-section {
    text-align: center;
    margin-bottom: 3.75rem;
}

.offer-group .instagram-title {
    text-align: center;
    font-size: 1.5rem;
    font-family: "Shippori Mincho", serif;
}

.sb_instagram_header{
    display: none;
}

#sb_instagram #sbi_load{
    display: none;   
}

.support-section{
    padding: 100px 0;
    background: #FBFBFB;
    border-top: 1px solid #E2E2E2;
    border-bottom: 1px solid #E2E2E2;
}

.support-section h2{
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3.75rem;
}

.support-buttons{
    width: 1000px;
    max-width: 100%;
    margin: auto;
    font-size: 1.5rem;
    font-weight: var(--fw-bold);
    padding: 0;
}

.support-buttons a{
    display: flex;
    align-items: center;
    background: #fff;
    padding: 1.25rem 2.5rem;
    border-top: 1px solid #E2E2E2;
    border-bottom: 1px solid #E2E2E2
}

.support-buttons .media{
    width: 200px;
    height: auto;
    margin-right: 1.25rem;
}
.support-buttons .arrow{
    width: 48px;
    height: 48px;
    margin-left: auto;
}

.news-media-section{
    padding: 100px 0;
    border-bottom: 1px solid #E2E2E2;
}

.news-list-container {padding: 0;}

.news-media-section ul.news-list{
    border-top: 1px solid #E2E2E2;
    border-bottom: 1px solid #E2E2E2;
}

.news-list {
    margin-bottom: 3.75rem;
}

.news-item {
    background-color: #fff;
    border-bottom: 1px solid #E2E2E2;
}

.news-item:last-child{
    border-bottom: none;
}

.news-item:first-child{
    border-bottom: 1px solid #E2E2E2;
}

.news-item a {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    text-decoration: none;
    flex-wrap: wrap;
}

.news-content-wrap{
    width: calc(100% - 50px - 24px);    
}


.news-info {
    width: 100%;
    margin-bottom: 0.625rem;
}

.news-date {
    font-size: 0.75rem;
    color: var(--fc-gray);
    margin-right: 0.5rem;
    font-weight: var(--fw-bold);
}

.news-tag {
    font-size: 0.75rem;
    color:var(--base);
    background: var(--base-sub);
    padding: 2px 10px;
    border-radius: 4px;
}

.news-text-title{
    width: 100%;
    display: flex;
    align-items: center;
}

.news-headline {
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: var(--fw-bold);
    letter-spacing: 0.06em;
    color: #000;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.news-icon{
    margin-left: auto;
}

.news-icon img {
    width: 24px;
    height: 24px;
    vertical-align: middle;
}

.img-list{
    display: flex;
    gap: 2rem;
    margin-bottom: 1.25rem;
}

.img-list .img-news{
    width: calc( (100% - (2rem * 3)) / 4);
    background: #f1f1f1;
    border-radius: 1.25rem;
    box-shadow: 0px 4px 0px 0px #CFCFCF;
}

.img-list .img-news a{
    padding: 1.25rem;
    display: block;
}

.img-list .img-news img{
    width: 100%;
    height: 100%;
    aspect-ratio: 13 / 16;
    object-fit: cover;
    border-radius: 8px;
}

.img-list .img-news figure{

}

.img-list .img-news figure figcaption{
    color: var(--fc-gray);
    text-align: center;
    letter-spacing: 0.06em;
    display: flex;
    justify-content: center;
}

.img-list .img-news figure figcaption span{
    max-width: calc(100% - 18px);
}

.img-list .img-news figure figcaption i{
    width: 16px;
    margin-left: 2px;
    display: block;
}

.img-list .img-news figure figcaption i img{
    object-fit: contain;
}

p.img-news-explanatory{
    text-align: center;
    margin-bottom: 3.75rem;
}

.news-list-container .news-btn{
    width: 265px;
    margin: auto;
}

.news-list-container .news-btn a{
}

.message-section{
    padding: 100px 0;
}

.message-section h2{
    font-size: 1.5rem;
    color: var(--base);
}

.message-section .message-container{
    text-align: center;
    padding: 0;
}

.sns{
    width: 87px;
    display: flex;
    position: fixed;
    top: 250px;
    right: 0;
    z-index: 11;
}

.sns .title{
    width: 27px;
}

.sns .title img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sns .share{
    width: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    background: #f4f4f4;
    padding: 20px 15px 20px 10px;
}

.sns .share a{
    width: 36px;
    height: 36px;
}

.sns.hide {
  opacity: 0;
  pointer-events: none;
}

/* フッター */
footer {
    background: #F2F2F2;
    color:var(--fc-gray);
    padding: 100px 0;
}

footer .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

.footer-logo img {
    width: 300px;
}

.footer-company-data{
    text-align: right;
    letter-spacing: 0.04em;
}

.footer-company-data .company{
    font-weight: var(--fw-bold);
    line-height: 1.2;
    margin-bottom: 1.25rem;
    letter-spacing: 0.04em;
}

.footer-company-data .company span{
    font-weight: 400;
    font-size: 0.625rem;
}

.footer-company-data .tel{
    font-size: 1.75rem;
    font-weight: var(--fw-bold);
    margin-bottom: 1.25rem;
}

.footer-company-data .tel span{
    font-size: 1.0rem;
    font-weight: 400;
}

.footer-company-data .copyright{
    font-size: 0.75rem;
}


.wp-pagenavi {
	clear: both;
	text-align:center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.0rem;
	margin-top: 60px;
	gap: 16px;
    flex-wrap: wrap;
}
.wp-pagenavi a, .wp-pagenavi span {
	color: #484848;
	background-color: transparent;
	padding: 0;
	white-space: nowrap;
	transition: 0.2s ease-in-out;
	text-align: center;
	text-decoration:none;
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.wp-pagenavi a{
    margin: 0;
    background: #dedede;
}

.wp-pagenavi a:hover{
  color: #fff;
  opacity: 0.8;
  background: var(--base);
}
.wp-pagenavi span.current{
	color: #FFF;
	background: var(--base);
	width: 36px;
	height: 36px;
	display: inline-flex;
}

span.next{
    position: relative;
}

a.previouspostslink, a.nextpostslink{
    background: transparent;
}

span.next:after{
    position: absolute;
    background: url(../images/news_next.svg) center center no-repeat;
    content: "";
    display: inline-block;
    width: 100%;
    height: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background-size: contain;
}

.info-list-nav span.next:after{
  background: url(../images/information-list-next.svg) center center no-repeat;
}

span.prev{
    position: relative;
}

span.prev a{
    background: transparent;
}

span.prev:after{
    position: absolute;
    background: url(../images/news_prev.svg) center center no-repeat;
    content: "";
    display: inline-block;
    width: 100%;
    height: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background-size: contain;
}

.info-list-nav span.prev:after{
  background: url(../images/information-list-prev.svg) center center no-repeat;
}


span.prev:hover, span.next:hover{
  opacity: 0.8;
  transition: 0.2s ease-in-out;
}
