/* CSS Document */
/*共通
=================================================================== */
html {scroll-behavior: smooth;}
body , section{position: relative;}
.container { width:100%; max-width: 90%;margin: 30px auto 50px;position: relative;}
img {max-width: 100%;height: auto;}
.container img {display: block;}
body { width: 100%;}
.main { overflow: hidden; position: relative;}
.indent {
  text-indent: -1em;
  padding-left: 1em;
}
/*
======================================================= */
.container {font-size: 1.4rem;}
section h2 {
  color: #fff;
  padding: 0.5em;
  background: transparent linear-gradient(149deg, #211e55 0%, #790f0f 100%) 0% 0% no-repeat;
  font-weight: bold;
  font-size: 1.8rem;
  margin: 2.0em 0 1.5em;
}
/*  header
============================================================================================================================== */
.header {
  margin: 0;
  width: 100%;
  height: 60px;
  padding: 0 5%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.6s;
}
h1#logo img {
  max-height: 40px;
  display: block;
}
.hd-menu-box {
  display: flex;
  gap: 25px;
}
.sp_cont {
  position: fixed;
  top: 0;
  right: 0;
}
.sp_cont *, .sp_cont *:before, .sp_cont *:after {
  padding: 0;
  margin: 0;
}
.sp_li.sp_li_margin_b {
  margin-bottom: 50px;
}
.sp_hum {
  position: relative;
  display: block;
  width: 26px;
  height: 30px;
  margin: 0 0 0 auto;
}
b.toggle_text {
  font-weight: normal;
  line-height: 1;
  margin-bottom: -3px;
}
/* menu */
.sp_offcm01 .sp_menu {
  position: fixed;
  top: 0;
  right: -100vw;
  width: 100vw;
  height: 100%;
  cursor: pointer;
  -webkit-transition: 0.4s transform;
  transition: 0.4s transform;
  background: transparent linear-gradient(149deg, #790f0f 0%, #211e55 100%) 0% 0% no-repeat padding-box;
  opacity: 1;
  z-index: 0;
}
  .sp_offcm01 ul.ff_ul {
    margin-top: 65px;
    padding: 0;
    padding-bottom: 100px;
  }
  .sp_li_single a , .sp_menu label{
    border-bottom: 1px solid #fff;
    color: #fff;
    cursor: pointer;
    display: block;
    font-weight: bold;
    font-size: 1.5rem;
    position: relative;
    margin: 0;
    padding: 10px 10px 10px 10px;
    text-decoration: none;
}
.sp_li_single.sp_blank {
    margin: 40px 0 0 0;
}
  .sp_ul a {
    width: 100%;
    display: block;
    color: #fff;
}
  a.hd_li_indent {
    margin-left: 2em;
    width: auto;
}
  li.sp_li_flex {
    display: flex;
    text-align: center;
}
  li.sp_li_flex a {
    border-right: solid 1px;
    padding: 10px;
}
li.sp_li_flex a:last-child{border-right: none;}
/*バー部分*/
.sp_offcm01 .ac_radio {
    display: none;
}
/*開いたときに表示される部分*/
ul.sp_ul {
  list-style: none;
  margin: 60px auto 0;
  padding-bottom: 50px;
  position: relative;
  max-width: 326px;
}
.sp_menu  .sp_li_sub  li{
  height: 0;
  overflow-y: hidden;
  transition: padding-bottom 0.5s, padding-top 0.5s; /*閉じるときのアニメーション*/
  -webkit-transition: padding-bottom 0.5s, padding-top 0.5s;
  -moz-transition: padding-bottom 0.5s, padding-top 0.5s;
  -ms-transition: padding-bottom 0.5s, padding-top 0.5s;
  -o-transition: padding-bottom 0.5s, padding-top 0.5s;
}
#spm01:checked ~ #spm01-li li, #spm02:checked ~ #spm02-li li, #spm03:checked ~ #spm03-li li {
    height: auto;
    opacity: 1;
    background: rgb(33 30 85 / 30%);
    padding: 8px 15px 8px 25px;
    border-bottom: 1px dashed #ffffff;
    color: #ffffff;
    font-size: 1.5rem;
}
#spm01:checked ~ #spm01-li li:last-child,
#spm02:checked ~ #spm02-li li:last-child,
#spm03:checked ~ #spm03-li li:last-child{
  border-bottom: none;
}
  /*閉じた状態の矢印描画*/
.sp_menu label:after{
  content:"";
  display:block;
  width:10px;
  height:10px;
  border-top: #fff 2px solid;
  border-right: #fff 2px solid;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  position:absolute;
  right: 4%;
  top: 0;
  bottom: 15%;
  margin: auto;
}
/*開いた状態の矢印描画*/
.sp_menu input[type=checkbox]:checked + label:after{
  content:"";
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position:absolute;
  top: 4%;
  bottom: 0;
  margin: auto;
}
/*toggle*/
  .sp_offcm01 #sp_toggle01 {
    display: none;
    opacity: 0;
  }
  .sp_offcm01 #sp_toggle01:checked ~ .sp_menu {
    -webkit-transform: translateX(-100vw);
    transform: translateX(-100vw);
    overflow-y: auto;
  }
  /* menu toggle */
  .sp_offcm01 #sp_toggle01 ~ label {
    position: fixed;
    top: auto;
    bottom: 0;
    left: auto;
    right: 0;
    z-index: 1;
    cursor: pointer;
    -webkit-transition: 0.4s transform;
    transition: 0.4s transform;
    color: #fff;
    padding: 15px;
    width: 60px;
    height: 60px;
    background: transparent linear-gradient(300deg, #211e55 0%, #AB3B3A 100%) 0% 0% no-repeat padding-box;
    border-radius: 45px 0 0 0;
}
  .sp_offcm01, .sp_offcm01 span {
    transition: all 0.4s;
  }
  .sp_offcm01 span {
    position: absolute;
    right: 0px;
    width: 100%;
    border-radius: 1px;
    height: 2px;
    background-color: #fff;
  }
  .sp_offcm01 span:nth-of-type(1) {top: 6px;}
  .sp_offcm01 span:nth-of-type(2) {top: 14px;}
  .sp_offcm01 span:nth-of-type(3) {bottom: 5px;}
  .sp_offcm01 #sp_toggle01:checked ~ label span:nth-of-type(1) {
    -webkit-transform: translateY(20px) rotate(-45deg);
    transform: translateY(20px) rotate(-45deg);
    background-color: #fff;
    top: -5px;
}
  .sp_offcm01 #sp_toggle01:checked ~ label span:nth-of-type(2) {
    opacity: 0;
    background-color: #000;
  }
  .sp_offcm01 #sp_toggle01:checked ~ label span:nth-of-type(3) {
    -webkit-transform: translateY(-20px) rotate(45deg);
    transform: translateY(-20px) rotate(45deg);
    background-color: #fff;
    bottom: -7px;
  }
/* ====================================================
footer
======================================================= */
footer {
  position: relative;
  background: #211E55;
}
#copyright {
  color: #fff;
  text-align: center;
  padding: 20px 0;
  line-height: 1.2;
  font-size: 1.3rem;
}
/* front_buttom 固定ボタン
================================================================================= */
#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 1%;
  opacity: 0.9;
  border-radius: 50%;
  left: 2%;
  z-index: 4;
}
#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
  text-align: center;
  border-radius: 100vh;
  background: transparent linear-gradient(80deg, #211e55 0%, #AB3B3A 100%) 0% 0% no-repeat padding-box;
}
#page_top a::before {
  content: '';
  display: block;
  position: absolute;
  top: 52%;
  margin-top: -0.3em;
  right: 19px;
  width: 10px;
  height: 10px;
  border-top: #fff 3px solid;
  border-right: #fff 3px solid;
  transform: rotate(-45deg);
}
/* ====================================================
mainvisual
========================================================================= */
.pagevisual {
  position: relative;
  padding: 60px 0% 40px;
  color: #fff;
  background: url("../img/page-visual.webp")no-repeat center right;
  background-size: cover;
}
.page-title {
  position: relative;
  z-index: 1;
  font-size: 2.0rem;
  color: #fff;
  text-align: center;
  letter-spacing: 2.6px;
  width: 80%;
  margin: 0 auto;
}
.pagevisual::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: transparent linear-gradient(149deg, #790f0f 0%, #211e55 100%) 0% 0% no-repeat padding-box;
  display: block;
  opacity: 0.7;
}
.pagevisual.mv00other{
  background: url("../img/page-visual.webp")no-repeat center right; background-size: cover;
}
.pagevisual.mv01ibuki{
  background: url("../img/ibuki.webp")no-repeat center; background-size: cover;
}
.pagevisual.mv02azusa{
  background: url("../img/azusa.webp")no-repeat center right; background-size: cover;
}
.pagevisual.mv03kaede{
  background: url("../img/kaede.webp")no-repeat center left; background-size: cover;
}
.pagevisual.mv04kodachi{
  background: url("../img/kodachi.webp")no-repeat center right; background-size: cover;
}
/* 下層共通
================================================================================= */
/* btn_more=========================== */
a.btn_more {
	display: flex;
    justify-content: space-evenly;
    align-items: center;
	text-align: center;
	text-decoration: none;
	width: 220px;
	margin: auto;
	padding: 1rem 4rem 1rem 3rem;
	font-weight: bold;
	background: #790F0F;
	color: #fff;
	border-radius: 100vh;
	position: relative;
	transition: 0.5s;
}
a.btn_more::after {
	content: '';
	width: 7px;
	height: 7px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}
a.btn_more:hover {
	background: #cea8a8;
	color: #fff;
}
/* hr境界線=========================== */
main .wp-block-separator {
  border: 1px solid #e9e9e9;
  border-left: none;
  border-right: none;
  margin: 3.5em 0;
}
/* 吹き出し共通
================================================================================= */
.balloon-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin: 12px 0;
}
.speech-person {
  width: 60px;
  min-width: 60px;
}
figure.speech-icon {
  width: 60px;
  height: 60px;
  max-height: 75px;
  max-width: 75px;
  line-height: 1;
  margin: auto;
}
img.speech-icon-image {
  border-radius: 50%;
  border: 1px solid #eee;
  width: 100%;
}
.speech-name {
  font-size: 1.0rem;
  text-align: center;
}
.speech-balloon {
  font-size: 1.35rem;
  line-height: 1.7;
  height: 100%;
  position: relative;
  padding: 10px;
  background-color: #f7f7f7;
  border: 1px solid #ccc;
  border-radius: 6px;
  max-width: calc(100% - 14%);
}
.speech-balloon::before {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: -13px;
  top: 16px;
  border-right: 12px solid #ccc;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
.speech-balloon::after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: -11.5px;
  top: 16px;
  border-right: 12px solid #f7f7f7;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
.speech-balloon.thought-balloon {
  background-color: #f1f1f1;
  border-color: #f1f1f1;
}
.speech-balloon.thought-balloon::before{
  content: none;
}
.speech-balloon.thought-balloon::after {
  border-right: 13px solid #f1f1f1;
}
/* cocoon用
=======================================*/
.wp-block-cocoon-blocks-balloon-ex-box-1.speech-wrap {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin: 12px 0;
}

/* 色変更 地の文
=======================================*/
.sbs-flat .speech-balloon {
  background: #efefef;
  border: 1px solid #efefef;
  color: #555555;
}
.sbs-flat .speech-balloon::before , .sbs-flat .speech-balloon::after{
  border-right: 12px solid #efefef;
}
.sb-id-15.sbs-flat .speech-balloon {
  color: #999999;
  background: #f7f7f7;
  border: 1px solid #f7f7f7;
}
.sb-id-15.sbs-flat .speech-balloon::before , .sb-id-15.sbs-flat .speech-balloon::after {
  border-right: 12px solid #f7f7f7;
}

/* archive ================================================================================= 
================================================================================= */
.page-numbers {
  margin: 50px auto;
  display: flex;
  justify-content: center;
  gap: 10px;
}
a.prev.page-numbers, a.next.page-numbers {
  width: 50px;
  color: #fff;
}
a.prev.page-numbers { background: #761012;}
a.next.page-numbers { background: #211e55;}
a.page-numbers , span.page-numbers.current {
  width: 30px;
  display: inline-block;
  text-align: center;
  padding: 10px;
  margin: 0;
  line-height: 1;
  background: #f8f9fa;
  color: #211e55;
}
span.page-numbers.current {
  color: #fff;
  background: #5c2a49;
}

/* wordpressのボタン ============================================================ 
================================================================================= */
a.wp-block-button__link {
  background: transparent linear-gradient(149deg, #790f0f 0%, #211e55 100%) 0% 0% no-repeat padding-box;
  color: #fff;
  font-weight: bold;
  padding: calc(0.667em + 0px) calc(1.333em + 0px);
  font-size: 1.0em;
  margin: 0.25em 0;
}
/* 
==============================================================================================================================
==============================================================================================================================
以下レスポンシブ
==============================================================================================================================
============================================================================================================================== */

/* ここに768px以上の範囲のスタイルを記述 768~1024pxが適用範囲 */
@media screen and (min-width: 768px) {
  body {width: 1024px;}
}
/*  ここに1025px以上の範囲のスタイルを記述 1025以上適用範囲 */
@media screen and (min-width: 1025px) {
  .container {font-size: 1.5rem;}
  body {width: 100%;}
  .sp_offcm01 .sp_menu {
    right: -100vw;
    width: 444px;
    height: 100%;
    margin-right: 50px;
  }
  .sp_offcm01 #sp_toggle01 ~ label {
    height: 100vh;
    border-radius: 0;
    width: 50px;
    padding: 15px 12px;
    display: flex;
    align-items: center;
}
#page_top {
  right: 70px;
  left: auto;
  bottom: 3%;
}
.container {
  width: 90%;
  max-width: 1024px;
}
/* hr境界線=========================== */
main .wp-block-separator {
  margin: 4.5em 0;
}
}
