@charset "utf-8";

/*〇変更--変更〇*/
/*フォントはヘッダーに収納*/
/*〇変更--変更〇*/
/* /_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_

パソコン向けスタイルおよび共通スタイルの指定

/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/

/*==========================================
 body
===========================================*/
/*〇変更--変更〇*/
/*フォントはWEBフォントをやめてローカルフォント対応*/
/*〇変更--変更〇*/
body {
    min-width: 100%;
    text-align: center;
    width: 100%;
    font-family: 
        "Hiragino Sans",
        "Noto Sans JP",
        sans-serif;
}

.zen-kaku-gothic-antique-regular {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zen-kaku-gothic-antique-bold {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.spbr {
    display: none;
}

.spImg {
    display: none;
}

.Toggle{display:none;}

/* 例：PC時はスマホ用を消す */
@media (min-width: 768px) {
  #fixdBtn img[src*="_sp"] { display: none; }
}
/* 例：スマホ時はPC用を消す */
@media (max-width: 767px) {
  #fixdBtn img:not([src*="_sp"]) { display: none; }
}
	
/*==========================================
 ヘッダーのスタイル
===========================================*/
header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    max-width: 1455px;
    width: calc(100% - 80px);
    margin-top: 37px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
    background-color: #FFFFFF;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-right: 13px;
    padding-left: 13px;
    z-index: 1000000!important;
}
    
header #logo {
    max-width: 260px;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 23px;
	}
    
header #logo img {
  width: 100%;
  height: auto;
  display: block;
}

header .NavMenu {
display: flex;
align-items: center;
}

header .NavMenu ul {
display: flex;
align-items: center;
}

header .NavMenu ul li {
    margin-right: 32px;
    position: relative;
    /*〇変更--変更〇*/
    /*〇追加〇*/
    display: flex;
    justify-content: center;
    align-items: center;
}

header .NavMenu ul li a {
    display: flex;
    align-items: center;
    text-align: left;
}

/*〇変更--変更〇*/
/*〇a削除〇*/
header .NavMenu ul li img {
    margin-left: 6px;
    width: 14px;
    height: auto;
}

/*〇変更--変更〇*/
/*〇追加〇*/
header .NavMenu ul li button {
    font: revert;
    margin: 2px 0 0;   
}

header .NavMenu ul li ul {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    background-color: #333333;
    border-radius: 10px;
    margin-top: 90px;
    padding-top: 24px;
    padding-right: 40px;
    padding-left: 40px;
    padding-bottom: 8px;
    white-space: nowrap;
}

header .NavMenu ul li ul li {
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    margin-bottom: 16px;
    margin-right: 0px;
}

header .NavMenu ul li ul li a {
    color: #FFFFFF;
    background-image: url(../images/w_yajirushi.svg);
    background-repeat: no-repeat;
    background-position: left 6px;
    background-size: 9px auto;
    padding-left: 17px;
}

header .NavMenu ul li ul li a:hover {
    color: #FFE500;
    background-image: url(../images/y_yajirusi.svg);
}

/*〇↓変更--変更〇*/
/*〇追加〇*/
/* ボタンの基本スタイルリセット */
.accordion-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease; /* アイコン回転アニメーション */
}

/* 初期状態：下層メニューを非表示 */
header .NavMenu ul li ul.accordion-menu {
  display: none;
}

/* 開いた状態：下層メニューを表示 */
header .NavMenu ul li ul.accordion-menu.is-open {
  display: block;
}

/* 開いたときにプラスアイコンを少し回転させたい場合（任意） */
.accordion-toggle.is-open {
  transform: rotate(45deg); /* プラスを×に見せる場合など */
}
/*〇↑変更--変更〇*/
/*〇追加〇*/
    	
#spMenu {
    display: none;
}

.lineBtn_sp {
    display: none;
}

.lineBtn a {
    background-color: #06C755;
    display: flex;
    align-items: center;
    color: #FFFFFF;
    border-radius: 50px;
    font-size: 1.5em;
    font-weight: bold;
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 32px;
    padding-right: 32px;
    line-height: 1;
    border: 3px solid transparent;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.lineBtn a img {
  width: 40px;
  height: auto;
}

.lineBtn a:hover {
  border: 3px solid #FFCC00;
}

/*==========================================
 フッターのスタイル
===========================================*/
footer {
    width: 100%;
	}

#page-top {
    position: fixed;
    right: 16px;
    bottom:16px;
}

/*==========================================
Other
===========================================*/
#mainTop {
    text-align: right;
    position: relative;
    width: 100%;
    height: auto;
}

#mainImg {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
    height: auto; 
    padding: 16px;
    box-sizing: border-box; 
    z-index: 1; 
}

#mainImg h1 {
    width: 100%;
    height: auto; 
    margin: 0;
}

#mainImg h1 picture {
    display: block;
    width: 100%;
    height: auto; 
}

#mainImg h1 img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    vertical-align: bottom;
}

#mainImg_inner {
    position: absolute;
    top: 0;
    left: 50%; 
    transform: translateX(-50%);
    max-width: 1100px;
    width: calc(100% - 2em);
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    margin-top: 430px;
    z-index: 5;
}

#mainImg_inner p {
    color: #FFFFFF;
    font-size: 1.75em;
    font-weight: bold;
    line-height: 140%;
}

#mainImg_inner div {
    display: inline-block;
    background-color: hsla(0,0%,100%,0.74);
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 18px;
}

#mainImg_inner div img {
    width: 644px;
    height: auto;
}

#fixdBtn {
    position: absolute;
    display: inline-block;
    right: 0px;
    bottom: 0px;
}

#fixdBtn a {
    background-color: #06C755;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    display: inline-block;
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 29px;
    padding-right: 20px;
    -webkit-box-shadow: 0px 0px 10px hsla(145,94%,40%,0.60);
    box-shadow: 0px 0px 10px hsla(145,94%,40%,0.60);
}

#fixdBtn a figure {
    position: absolute;
    top: -45px;
    left: 17px;
}

#logo2 {
    display: none;
}

.fixdBtn_sp {
    display: none;
}

#problem {
    max-width: 1100px;
    width: calc(100% - 2em);
    margin-left: auto;
    margin-right: auto;
    margin-top: 80px;
}

/*〇変更--変更〇*/
.title h2 {
    color: #333333;
    font-weight: bold;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-size: 2em;
    margin-top: 5px;
}

/*〇変更--変更〇*/
.title p {
    color: #0075C2;
    font-weight: bold;
    background-image: url(../images/bg10.svg);
    background-repeat: no-repeat;
    background-position: center bottom;
    padding-bottom: 12px;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
}

#problem_fukidashi {
    max-width: 1100px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 30px;
    position: relative;
}

#problem_fukidashi figure {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 0;
    width: 241px;
    z-index: 1;
}

#problem_fukidashi figure img {
    width: 100%;
    height: auto;
    display: block;
}

.fuki-item {
    background-color: #EDEDED;
    padding: 25px 25px;
    border-radius: 12px;
    line-height: 1.6;
    color: #333;
    box-sizing: border-box;
    font-weight: bold;
    white-space: nowrap;
    z-index: 2;
    align-items: flex-start;
        width: max-content;
}

#fukidashiBlock {
    max-width: 960px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 130px;
}

.fuki1 {
    margin-left: 70px;
    margin-bottom: 30px;
}

.fuki1 span {
    background-image: url(../images/ya01.svg);
    background-repeat: no-repeat;
    background-position: right bottom;
    padding-bottom: 60px;
}

.fuki2 span {
    background-image: url(../images/ya01.svg);
    background-repeat: no-repeat;
    background-position: right bottom;
    padding-bottom: 60px;
}

.fuki3 span {
    background-image: url("../images/ya02.svg");
    background-repeat: no-repeat;
    background-position: left bottom;
    padding-bottom: 85px;
}

.fuki4 span {
    background-image: url("../images/ya02.svg");
    background-repeat: no-repeat;
    background-position: left bottom;
    padding-bottom: 85px;
}

.fuki4 {
    margin-left: 70px;
    margin-top: 30px;
}

#reason {
    background-color: #ECF5FF;
    padding-top: 60px;
    position: relative;
    z-index: 2;
    padding-bottom: 120px;
    background-image: url(../images/bg9.svg), url(../images/bg8.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: left top, right bottom;
    background-size: 423px auto, 423px auto;
}

#reason_yajirushi {
position: absolute;
  top: -21px; 
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

#reason ul {
    max-width: 818px;
    width: calc(100% - 2em);
    margin-left: auto;
    margin-right: auto;
    display: flex;
    gap: 19px;
    align-items: center;
    margin-top: 40px;
}

#reason ul li {
    flex: 1;
    background-color: #FFFFFF;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 10px hsla(204,100%,53%,0.30);
    box-shadow: 0px 0px 10px hsla(204,100%,53%,0.30);
    height: 259px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding-top: 33px;
    padding-bottom: 39px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#reason ul li p {
    height: 3em;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1.5;
    margin-top: 20px;
    color: #0075C2;
    font-weight: bold;
    font-size: 1.125em;
}

.contact {
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: url(../images/bg_img.webp);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}
/*〇変更--変更〇*/
.w_tit p {
    color: #FFFFFF;
    background-image: url(../images/star_w.svg);
}
/*〇変更--変更〇*/
.w_tit2 p {
    color: #FFFFFF;
    background-image: url(../images/star_w.svg);
}

.contact ul {
    max-width: 1100px;
    width: calc(100% - 2em);
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.contact ul li {
    max-width: 49%;
}

#search {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #0075C2;
    margin-top: 16px;
    margin-right: 16px;
    margin-bottom: 16px;
    margin-left: 16px;
    border-radius: 20px;
    background-image: url(../images/pc_bg.svg);
    background-repeat: no-repeat;
    background-position: center 60px;
}

.w_tit2 h2 {
    color: #FFFFFF;
}

#search_tab {
    max-width: 1100px;
    width: calc(100% - 2em);
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 48px;
}

#search_tab dl {
width: 49%;
cursor: pointer;
}

#search_tab dl:nth-child(1) {
    background-color: #FFFFFF;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding-top: 14px;
    padding-bottom: 14px;
    background-image: url(../images/u_line.svg);
    background-repeat: no-repeat;
    background-position: center bottom;
}

#search_tab dl:nth-child(2) {
    background-color: #E3E3E3;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
        padding-top: 14px;
        padding-bottom: 14px;
}

#search_tab dl:nth-child(1) dt {
    color: #0075C2;
    font-size: 1.25em;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: bold;
}

#search_tab dl:nth-child(1) dd {
    color: #0075C2;
    font-size: 0.875em;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: bold;
}

#search_tab dl:nth-child(2) dt {
    color: #8A8686;
    font-size: 1.25em;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: bold;
}

#search_tab dl:nth-child(2) dd {
    color: #8A8686;
    font-size: 0.875em;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: bold;
}

.searchBlock {
    max-width: 1100px;
    width: calc(100% - 2em);
    margin-left: auto;
    margin-right: auto;
    background-color: #FFFFFF;
    padding-left: 68px;
    padding-right: 68px;
    padding-top: 37px;
    padding-bottom: 37px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: left;
}

.searchBlock h3 {
    font-size: 1.125em;
    font-weight: bold;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.searchBlock h3 img {
    width: 39px;
    height: auto;
    margin-right: 6px;
}

.searchBlock_inner {
  display: flex;
  justify-content: space-between;
  gap: 15px; 
}

.searchBlock_1 .photo {
    position: relative;
}

.searchBlock_1 .photo aside {
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: #DAA300;
    color: #FFFFFF;
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 1.125em;
    font-weight: bold;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.searchBlock_1 .photo figure {
    width: 200px;
    height: 180px;
    margin-right: 16px;
}

.searchBlock_1 .photo figure img {
	width: 100%;
	max-width: 100%;
	height: 100%;
	width /***/: auto;
 	text-align: center;
    object-fit: cover;
}

.searchBlock_1 {
  display: flex;
}

.searchBlock_1_inner section h4 {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 16px;
}

.searchBlock_1_inner section h4 a {
    text-decoration: underline;
    color: #333333;
}

.searchBlock_1_inner section h4 a:hover {
    text-decoration: none;
}

.searchBlock_1_inner section aside {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.searchBlock_1_inner section aside span {
    margin-left: 6px;
}

.searchBlock_1_inner section aside img {
    margin-left: 3px;
}

.searchBlock_1_inner section p {
    margin-bottom: 16px;
}

.searchBlock_1_inner section p a {
    color: #0F9FFF;
    text-decoration: underline;
}

.searchBlock_1_inner section p a:hover {
    text-decoration: none;
}

a.btn {
    align-self: flex-end;
}

a.btn {
    text-decoration: none;
    background-color: #FFFFFF;
    border: 1px solid #0075C2;
    border-radius: 50px;
    width: 176px;
    height: 49px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333333;
    transition: background-color 0.3s, color 0.3s; 
}

a.btn:hover {
    background-color: #0075C2;
    color: #FFFFFF;
}

a.btn img {
    margin-left: 6px;
 margin-top: 2px;
}

.searchBlock_1_inner {
    display: flex;
    flex-direction: column;
    width: 100%;
}

a.btn:hover img {
    content: url("../images/b_yajirushi_on.svg");
}

.searchBlock_right {
  display: flex;
  flex-direction: column;
}

.searchBlock_2 .photo,
.searchBlock_3 .photo {
    position: relative;
}

.searchBlock_2 .photo aside {
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: #AD9E9E;
    color: #FFFFFF;
    padding-left: 6px;
    padding-right: 6px;
    padding-top: 3px;
    padding-bottom: 3px;
    font-size: 0.875em;
    font-weight: bold;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.searchBlock_3 .photo aside {
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: #BF6300;
    color: #FFFFFF;
    padding-left: 6px;
    padding-right: 6px;
    padding-top: 3px;
    padding-bottom: 3px;
    font-size: 0.875em;
    font-weight: bold;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.searchBlock_2 .photo figure,
.searchBlock_3 .photo figure {
    width: 89px;
    height: 80px;
    margin-right: 16px;
}

.searchBlock_2 .photo figure img,
.searchBlock_3 .photo figure img {
	width: 100%;
	max-width: 100%;
	height: 100%;
	width /***/: auto;
 	text-align: center;
    object-fit: cover;
}

.searchBlock_2,
.searchBlock_3 {
display: flex;
}

.searchBlock_2 section h4,
.searchBlock_3 section h4 {
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 14px;
}


.searchBlock_2 section h4 a,
.searchBlock_3 section h4 a {
    text-decoration: underline;
    color: #333333;
}

.searchBlock_2 section h4 a:hover,
.searchBlock_3 section h4 a:hover {
    text-decoration: none;
}

.searchBlock_2 section aside,
.searchBlock_3 section aside {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.searchBlock_2 section aside span,
.searchBlock_3 section aside span {
    margin-left: 6px;
}

.searchBlock_2 section aside img,
.searchBlock_3 section aside img {
    margin-left: 3px;
}

.searchBlock_2 section p,
.searchBlock_3 section p {
    margin-bottom: 12px;
}

.searchBlock_2 section p a,
.searchBlock_3 section p a {
    color: #0F9FFF;
    text-decoration: underline;
}

.searchBlock_2 section p a:hover,
.searchBlock_3 section p a:hover {
    text-decoration: none;
}

.lo01 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.lo01_inner {
    max-width: 170px;
width: 100%;
}

.lo01 a.btn {
    margin-bottom: 30px;
}

.navi_btn {
    display: none;
}

.b_btn {
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
}

.b_btn a {
    text-align: center;
    background-color: #0075C2;
    border-radius: 50px;
    color: #FFFFFF;
    padding-left: 93px;
    padding-right: 93px;
    padding-top: 25px;
    padding-bottom: 25px;
    
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease; 
}

.b_btn a img {
    width: 10px;
    height: auto;
    transition: transform 0.3s ease;
}

.b_btn a:hover {
    background-color: #002741;
}

.b_btn a:hover img {
    transform: translateX(5px);
}

#pickup {
    max-width: 1100px;
    width: calc(100% - 2em);
    margin-left: auto;
    margin-right: auto;
    padding-top: 60px;
    padding-bottom: 80px;
}

.left_tit {
    text-align: left;
}

/*〇変更--変更〇*/
.left_tit p {
    background-position: left bottom;
}


#pickup_top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

#pickup_tit {
  display: flex;
  align-items: flex-end;
}

.navi_btn2,
.navi_btn {
    cursor: pointer;
}

.navi_btn2 img {
    margin-left: 18px;
}

.b_btn2 {
    margin-left: 42px;
}

.b_btn2 a {
    text-align: center;
    background-color: #0075C2;
    border-radius: 50px;
    color: #FFFFFF;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease; 
}

.b_btn2 a img {
    width: 10px;
    height: auto;
    transition: transform 0.3s ease;
}

.b_btn2 a:hover {
    background-color: #002741;
}

.b_btn2 a:hover img {
    transform: translateX(5px);
}

/*〇変更--変更〇*/
.listBlock {
  max-width: 1100px;
  width: 100%;
  margin-left: auto;
  margin-right: auto; /* ★基本は中央配置 */
  overflow: hidden; /* はみ出しを非表示 */
  padding: 1em 0.4em;
  box-sizing: border-box;
}
/*〇変更--変更〇*/
/* アニメーション用トラック */
.listBlock_track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease-in-out;
  will-change: transform;
}
/*〇変更--変更〇*/
.listBlock a {
/* gap 16px * 2 = 32px を引いた幅を3等分 */
  flex: 0 0 calc((100% - 32px) / 3);
  max-width: none;
  width: auto;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 12px hsla(204,100%,53%,0.30);
  box-shadow: 0px 0px 12px hsla(204,100%,53%,0.30);
  padding: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/*〇変更--変更〇*/
.listBlock a img {
  width: 100%;
  height: auto;
  display: block;
}

.listBlock_inner_photo {
display: flex;
}

.listBlock_inner_photo figure {
    max-width: 89px;
    width: 100%;
    margin-right: 16px;
}

.listBlock_inner_photo figure img {
    object-fit: cover;
    width: 100%;
    max-width: 100%;
    height: 80px;
    width /***/: auto;
    text-align: center;
}

.listBlock_inner_photo section h3 {
    text-align: left;
    color: #333333;
    font-weight: bold;
    margin-bottom: 14px;
    text-decoration: underline;
}

.listBlock a:hover .listBlock_inner_photo section h3 {
    text-decoration: none;
}

.listBlock a:hover {
    background-color: hsla(204,91%,78%,0.11);
}

.listBlock_inner_photo section aside {
    text-align: left;
    color: #333333;
      display: flex;
  align-items: center;
}

.listBlock_inner_photo section aside img {
    width: 16px;
    height: auto;
    margin-right: 2px;
}

.listBlock_inner_photo section aside span {
    margin-left: 8px;
}

.listBlock_inner dl {
    text-align: left;
    margin-top: 14px;
}

.listBlock_inner dl dt {
    color: #333333;
    font-weight: bold;
    line-height: 140%;
    margin-bottom: 12px;
}

.listBlock_inner dl dd {
    color: #333333;
    line-height: 140%;
    font-size: 0.875em;
}

.bottom_btn {
    display: none;
}

.contact2 {
    background-image: url(../images/bg_img.webp);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    padding-top: 60px;
    padding-bottom: 60px;
}

.lineBtn2 {
    text-align: center;
}

.lineBtn2 a {
    width: 548px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #06C755;
    color: #fff;
    border-radius: 50px;
    font-size: 3.5em;
    font-weight: bold;
    padding-top: 14px;
    padding-bottom: 14px;
    line-height: 1;
    border: 3px solid transparent;
    box-sizing: border-box;
}

.lineBtn2 a img:first-child {
    width: 79px;
    height: auto;
    margin-right: 2px;
}

.lineBtn2 a img:last-child {
    width: 48px;
    height: auto;
    margin-left: 18px;
}

.lineBtn2 a:hover img {
	opacity: 100;
	filter: alpha(opacity=100);
}


.lineBtn2 a:hover {
  border: 3px solid #FFCC00;
}

.contact2_inner p {
    margin-bottom: 24px;
    margin-top: 18px;
}

.contact2_inner p img {
    width: 440px;
    height: auto;
}

#voice {
    max-width: 1100px;
    width: calc(100% - 2em);
    margin-left: auto;
    margin-right: auto;
    padding-top: 60px;
    padding-bottom: 80px;
}


#voice_top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

#voice_tit {
  display: flex;
  align-items: flex-end;
}

#voice .listBlock a .listBlock_inner {
    text-align: center;
}

#voice .listBlock .listBlock_inner p {
    font-size: 1.25em;
    font-weight: bold;
    color: #333333;
    margin-bottom: 10px;
    text-align: center;
}

#voice .listBlock .listBlock_inner p strong {
    font-size: 1.2em;
    color: #0075C2;
}

#voice .listBlock .listBlock_inner a {
    text-align: center;
}

#voice .listBlock .listBlock_inner aside {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

#voice .listBlock .listBlock_inner aside.btn {
    align-self: center;
}

#voice .listBlock .listBlock_inner aside.btn {
    text-decoration: none;
    background-color: #FFFFFF;
    border: 1px solid #0075C2;
    border-radius: 50px;
    width: 176px;
    height: 49px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333333;
    transition: background-color 0.3s, color 0.3s; 
}

#voice .listBlock a:hover .listBlock_inner aside.btn {
    background-color: #0075C2;
    color: #FFFFFF;
}

#voice .listBlock .listBlock_inner aside.btn img {
    margin-left: 6px;
 margin-top: 2px;
}

#voice .listBlock a .listBlock_inner figure {
    text-align: center;
}

#voice .listBlock .listBlock_inner aside.btn:hover img {
  content: url("../images/b_yajirushi_on.svg");
}

#area {
    background-color: #ECF5FF;
    border-radius: 20px;
    margin-top: 16px;
    margin-right: 16px;
    margin-bottom: 16px;
    margin-left: 16px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 64px;
    padding-bottom: 52px;
    background-image: url(../images/map.svg);
    background-repeat: no-repeat;
    background-position: right 156px;
}

.arealist {
    max-width: 1100px;
    width: calc(100% - 2em);
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    margin-top: 40px;
}

.arealist ul {
  color: #0075C2;
  margin-bottom: 12px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 11px; 
}

.arealist ul li {
  width: calc((100% - (11px * 6)) / 7);
  box-sizing: border-box;
  list-style: none;
}

.arealist ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #333333;
    width: 100%;
    background-color: #FFFFFF;
    border-radius: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 18px;
    padding-right: 18px;
    box-sizing: border-box;
    transition: background-color 0.2s ease, color 0.2s ease; 
}

.arealist ul li a:hover {
    background-color: #0075C2;
    color: #FFFFFF;
}

.arealist ul li a:hover .arrow {
    content: url("../images/w_yajirushi.svg"); 
}

.arealist h3 {
    display: none;
}



#column {
    max-width: 1100px;
    width: calc(100% - 2em);
    margin-left: auto;
    margin-right: auto;
    padding-top: 60px;
    padding-bottom: 80px;
    /*〇変更--変更〇*/
    position: relative;
}


#column_top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

#column_tit {
  display: flex;
  align-items: flex-end;
}

#column .listBlock a .listBlock_inner {
    text-align: center;
}

#column .listBlock .listBlock_inner p {
    font-size: 1.125em;
    font-weight: bold;
    color: #333333;
    margin-top: 12px;
    text-align: left;
}

#column .listBlock .listBlock_inner a {
    text-align: center;
}

#column .listBlock .listBlock_inner aside {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

#column .listBlock .listBlock_inner aside.btn {
    align-self: center;
}

#column .listBlock .listBlock_inner aside.btn {
    text-decoration: none;
    background-color: #FFFFFF;
    border: 1px solid #0075C2;
    border-radius: 50px;
    width: 176px;
    height: 49px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333333;
    transition: background-color 0.3s, color 0.3s; 
}

#column .listBlock a:hover .listBlock_inner aside.btn {
    background-color: #0075C2;
    color: #FFFFFF;
}

#column .listBlock .listBlock_inner aside.btn img {
    margin-left: 6px;
 margin-top: 2px;
}

#column .listBlock a .listBlock_inner figure {
    text-align: center;
    max-width: 100%;
width: 100%;
}

#column .listBlock a .listBlock_inner figure img {
    width: 100%;
    max-width: 100%;
    height: 180px;
    width /***/: auto;
    text-align: center;
    object-fit: cover;
    /*〇変更--変更〇*/
    margin: 0 auto;
}

#column .listBlock .listBlock_inner aside.btn:hover img {
	width: 100%;
	max-width: 100%;
	height: auto;
	width /***/: auto;
 	text-align: center;
}

#lawn {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    height: auto;
    background-image: url(../images/hatena.svg);
    background-repeat: no-repeat;
    background-position: left top;
    padding-top: 72px;
    padding-bottom: 72px;
}

#lawn h2 {
    color: #333333;
    font-size: 1.75em;
    font-weight: bold;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    background-image: url(../images/b_line.svg);
    background-repeat: repeat-x;
    background-position: center bottom;
    padding-bottom: 24px;
    margin-bottom: 42px;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
}

#lawnBlock {
    max-width: 1100px;
    width: calc(100% - 2em);
    margin-left: auto;
    margin-right: auto;
    background-color: #ECF5FF;
    padding-top: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
      display: flex;
  justify-content: space-between;
  align-items: center;
}

#lawnBlock_merit1,
#lawnBlock_merit2 {
    width: calc(100%/2);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    text-align: left;
}

#lawnBlock_merit1 {
    border-right: 1px solid #D9D9D9;
}

#lawnBlock_merit1 {
    padding-right: 20px;
}

#lawnBlock_merit2 {
    padding-left: 24px;
}

#lawnBlock figure {
    text-align: center;
    margin-right: 24px;
}

#lawnBlock figure img {
    width: 160px;
    height: auto;
    text-align: center;
}

#lawnBlock figcaption {
    color: #0075C2;
    font-weight: 900;
    font-size: 1.5em;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    margin-top: 5px;
}

#lawnBlock .merit h3 {
    color: #0F9FFF;
    font-weight: bold;
    display: inline-block;
    border-radius: 50px;
    background-color: #FFFFFF;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 32px;
    padding-right: 32px;
    border: 1px solid #0F9FFF;
    -webkit-box-shadow: 0px 0px 12px hsla(204,100%,53%,0.31);
    box-shadow: 0px 0px 12px hsla(204,100%,53%,0.31);
    margin-bottom: 14px;
}

#lawnBlock .merit p {
    color: #333333;
    margin-bottom: 24px;
}

#lawnBlock .merit ul li {
    color: #333333;
    background-image: url(../images/dot.svg);
    background-repeat: no-repeat;
    background-position: left 9px;
    background-size: 6px 6px;
    padding-left: 15px;
    margin-bottom: 8px;
}

#lawnComm {
    max-width: 1000px;
    width: calc(100% - 2em);
    margin-left: auto;
    margin-right: auto;
    margin-top: 42px;
    text-align: left;
}

#lawnComm p {
    color: #333333;
    padding-bottom: 30px;
}
/*〇変更--変更〇*/
/*↓ここから*/
#FAQ {
    background-color: #ECF5FF;
    padding-top: 80px;
    padding-bottom: 120px;
    background-image: url(../images/bg3.svg), url(../images/bg11.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: right top, left bottom;
    background-size: 423px auto, 293px auto;
}

#FAQ dl {
    max-width: 1100px;
    width: calc(100% - 2em);
    margin-left: auto;
    margin-right: auto;
    background-color: #FFFFFF;
    border-radius: 20px;
    margin-top: 40px;
    padding-left: 75px;
    padding-right: 75px;
    padding-top: 38px;
    padding-bottom: 38px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: left;
}

/* --- [アコーディオン制御] dt (質問領域) --- */
#FAQ dl dt {
    color: #333333;
    margin-bottom: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    padding-top: 18px;
    padding-bottom: 18px;
    border-top: 1px solid #D9D9D9;
}

#FAQ dl dt:first-child {
    border-top: none;
}

#FAQ dl dt:first-of-type {
    padding-top: 0;
}

#FAQ dl dt span {
    display: flex;
    align-items: center;
    padding-right: 25px;
}

#FAQ dl dt span img {
    margin-right: 14px;
    width: 48px;
    height: auto;
}

/* --- [アコーディオン制御] dd (回答領域) --- */
#FAQ dl dd {
    color: #333333;
    margin-top: 0px;
    margin-bottom: 0px;
    
    /* 滑らかなスライド・フェードインのための設定 */
    display: flex;
    align-items: flex-start; /* アイコンと文字の長さに合わせて上揃え */
    overflow: hidden;
    max-height: 0px; /* 初期状態は高さを0に */
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                opacity 0.3s ease,
                padding 0.4s ease;
    padding-bottom: 0px;
}

    /*〇変更--変更〇*/
    #FAQ dl dd a {
        color: #121280;
        text-decoration: underline;
    }
    #FAQ dl dd a:hover {
        color: #666;
        text-decoration: none;
    }

/* 開いた状態 (.is-open) */
#FAQ dl dd.is-open {
    opacity: 1;
    padding-bottom: 24px; /* 開いたときだけ下余白を作る */
}

#FAQ dl dd img {
    margin-right: 14px;
    width: 48px;
    height: auto;
    flex-shrink: 0; /* 画像が潰れないように保護 */
}

/* プラス・マイナス切り替えアイコン領域 */
#FAQ dl dt .icon-toggle {
    display: inline-block;
    width: 20px;  /* アイコンの幅 */
    height: 20px; /* アイコンの高さ */
    background-image: url(../images/plus.svg); /* デフォルト：プラス */
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
}

/* 開いた状態：マイナスに切り替え */
#FAQ dl dt.is-open .icon-toggle {
    background-image: url(../images/minus.svg); /* 開いた時：マイナス */
}
/*↑ここまで*/
/*〇変更--変更〇*/


#news {
    max-width: 1100px;
    width: calc(100% - 2em);
    margin-left: auto;
    margin-right: auto;
    padding-top: 60px;
    padding-bottom: 80px;
}


#news_top {
    display: flex;
    align-items: flex-end;
    margin-bottom: 50px;
}

#news_tit {
  display: flex;
  align-items: flex-end;
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-item {
  border-bottom: 1px solid #E5E5E5;
}

.news-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    text-decoration: none;
    color: #333333;
    transition: opacity 0.3s;
    text-align: left;
    font-size: 0.875em;
}

.news-item a:hover {
  opacity: 0.7;
}

/* 日付のスタイル */
.news-date {
  font-family: sans-serif;
  color: #0066CC;
  font-weight: bold;
  flex-shrink: 0;
  width: 120px;
}

.news-title {
  flex-grow: 1;
  /* 💡 PC時は長くなったら「…」にする設定 */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 20px;
}

/* 矢印のスタイル */
.news-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.news-arrow img {
  display: block;
}

footer {
    background-color: #DEEFFF;
    padding-top: 40px;
    color: #333333;
    box-sizing: border-box;
}

footer #footerLogo {
    max-width: 381px;
    width: 100%;
    padding-right: 68px;
}

footer figure img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

footer .lineBtn2 {
    text-align: center;
}

footer .lineBtn2 a {
    width: 295px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #06C755;
    color: #fff;
    border-radius: 50px;
    font-size: 2em;
    font-weight: bold;
    padding-top: 15px;
    padding-bottom: 15px;
    line-height: 1;
    border: 3px solid transparent;
    box-sizing: border-box;
}

footer .lineBtn2 a img:first-child {
    width: 48px;
    height: auto;
    margin-right: 2px;
}

footer .lineBtn2 a:hover img {
	opacity: 100;
	filter: alpha(opacity=100);
}


footer .lineBtn2 a:hover {
  border: 3px solid #FFCC00;
}

#footerInner {
    max-width: 1100px;
    width: calc(100% - 2em);
    margin-left: auto;
    margin-right: auto;
    display: flex;
    position: relative;
}

footer .lineBtn2:first-of-type {
    display: none;
}

/*〇変更--変更〇*/
footer .nav-container {
    max-width: 100%;
    width: 100%;
}

footer .nav-container .nav-block {
    width: 49%;
    text-align: left;
}
footer .nav-container .nav-block p.nav-title {
    color: #333333;
    font-weight: bold;
    margin-bottom: 12px;
    white-space: nowrap;
}

footer .nav-container ul.nav-links li a {
    display: flex;
    align-items: center;
    white-space: nowrap;
    margin-left: 16px;
    margin-bottom: 12px;
}

footer .nav-container ul.nav-links {
    margin-bottom: 24px;
}

footer .nav-container ul.nav-links li a img {
    width: 10px;
    height: auto;
    margin-right: 6px;
}

footer .lineBtn2:last-of-type {
    position: absolute;
    right: 0px;
    top: 0px;
}

.nav-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 380px;
    width: 100%;
}

.nav-bottom-links {
    display: flex;
    /*〇変更--変更〇*/
    flex-wrap: wrap;
    margin-top: 20px;
}

.nav-bottom-links li {
    font-size: 0.813em;
    font-weight: bold;
    margin-right: 47px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#copy {
    background-color: #0075C2;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 0.813em;
    padding-top: 11px;
    padding-bottom: 15px;
    margin-top: 48px;
}

#mainImg2 {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 16px;
    box-sizing: border-box;
    z-index: 1;
    background-color: #ECF5FF;
    height: 202px;
}

#pNavi {
    max-width: 1100px;
    width: calc(100% - 2em);
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    background-color: #FFFFFF;
    color: #333333;
    font-size: 0.625em;
    padding-top: 16px;
    padding-bottom: 12px;
    line-height: 1.7;
}

#g_inner {
    background-color: #F7F7F7;
    padding-top: 50px;
    padding-bottom: 56px;
}

#g_layout {
    max-width: 1100px;
    width: calc(100% - 2em);
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    /*〇変更--変更〇*/
    flex-direction: row-reverse;
}

#leftBlock {
  max-width: 260px;
  width: 100%;
}

#rightBlock {
    background-color: #FFFFFF;
    margin-left: 33px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 35px;
    padding-right: 35px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: left;
}

#leftBlock ul li.lineBtn3 {
    position: relative;
}

#leftBlock ul li.lineBtn3 a {
    background-color: #06C755;
    display: block;
    padding-top: 9px;
    padding-bottom: 12px;
    padding-right: 18px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    -webkit-box-shadow: 0px 0px 10px hsla(145,94%,40%,0.60);
    box-shadow: 0px 0px 10px hsla(145,94%,40%,0.60);
    z-index: 0;
}

#leftBlock ul li {
    margin-bottom: 15px;
}

#leftBlock ul li.lineBtn3 a img:first-child {
    position: absolute;
    top: -46px;
    left: 17px;
    z-index: 1;
}

#leftBlock ul li.lineBtn3 a:hover img:first-child {
opacity: 1;
}

#leftBlock ul li.lineBtn3 a img:last-child {
    -webkit-box-shadow: 0px 0px hsla(145,94%,40%,0.60);
    box-shadow: 0px 0px hsla(145,94%,40%,0.60);
        z-index: 0;
}

#rightBlock h1 {
    font-size: 1.625em;
    font-weight: bold;
    color: #333333;
    margin-bottom: 15px;
}

#rightBlock_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 27px;
    margin-top: 15px;
}

.rightBlock_category {
    font-size: 0.813em;
    font-weight: bold;
}

.rightBlock_category a {
    color: #2075B8;
    border: 1px solid #2075B8;
    border-radius: 3px;
    padding: 5px 7px;
    transition: background-color 0.3s, color 0.3s;
}

.rightBlock_category a:hover {
    background-color: #2075B8;
    color: #fff;
    text-decoration: none;
}

#dataBlock {
    display: flex;
    align-items: center;
}

#dataBlock figure {
    max-width: 32px;
    width: 100%;
    margin-right: 6px;
}

#dataBlock figure img {
    width: 100%;
    max-width: 100%;
    width /***/: auto;
    text-align: center;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #CCCCCC;
}

#dataBlock a p {
    color: #333333;
    font-size: 0.813em;
    text-decoration: underline;
}

#dataBlock a:hover p {
    text-decoration: none;
}

#dataBlock a {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

#dataBlock deta {
    color: #333333;
    font-size: 0.813em;
}

#rightBlock .contact2_inner {
max-width: 328px;
width: calc(100% - 2em);
/*〇変更--変更〇*/
margin: 27px auto 36px;
}

#rightBlock .contact2_inner p {
    margin-bottom: 6px;
    margin-top: 27px;
    text-align: center;
}

#rightBlock .contact2_inner p img {
    width: 291px;
    height: auto;
}

#rightBlock .lineBtn2 {
    text-align: center;
}

#rightBlock .lineBtn2 a {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #06C755;
    color: #fff;
    border-radius: 50px;
    font-size: 1.875em;
    font-weight: bold;
    padding-top: 14px;
    padding-bottom: 14px;
    line-height: 1;
    border: 3px solid transparent;
    box-sizing: border-box;
}

#rightBlock .lineBtn2 a img:first-child {
    width: 50px;
    height: auto;
    margin-right: 2px;
}

#rightBlock .lineBtn2 a img:last-child {
    width: 30px;
    height: auto;
    margin-left: 18px;
}

#rightBlock .lineBtn2 a:hover img {
	opacity: 100;
	filter: alpha(opacity=100);
}


#rightBlock .lineBtn2 a:hover {
  border: 3px solid #FFCC00;
}

#toc {
    margin-top: 30px;
    background-color: #F7F7F7;
    border-radius: 10px;
    padding-top: 25px;
    padding-right: 25px;
    padding-bottom: 25px;
    padding-left: 25px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 50px;
}

#toc h2 {
    color: #333333;
    font-weight: bold;
    margin-bottom: 10px;
}

/*〇変更--変更〇*/
/* #cmsを追加 */
#cms #toc ul {
    background-color: inherit;
    border-radius: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 0;
}
/*〇変更--変更〇*/
#cms #toc ul li {
    color: #333333;
    background-image: url(../images/dot.svg);
    background-repeat: no-repeat;
    background-position: left 10px;
    padding-left: 15px;
    margin-bottom: 10px;
}
/*〇変更--変更〇*/
#cms #toc .toc-sub {
    margin-top: 10px;
}
/*〇変更--変更〇*/
#cms #toc .toc-sub li{
    font-size: 90%;
}

#cms #toc p {
    margin-top: 5px;
    text-align: center;
    font-weight: bold;
}

#cms #toc p a {
    color: #2075B8;
    text-decoration: underline;
    transition: color 0.2s;
}

#cms #toc p a:hover {
    text-decoration: none;
    opacity: 0.8;
}

/*〇変更--変更〇*/
/* --- アコーディオン・グラデーション追加分 --- */

/* アコーディオン全体（overflow透過防止のため） */
#cms #toc.toc-accordion {
    position: relative;
}

/* 折りたたみ対象領域 */
#cms #toc .toc-body {
    position: relative;
    max-height: 200px; /* 畳み込み時の高さ */
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

/* 下部のグラデーション（背景色 #F7F7F7 に合わせる） */
#cms #toc .toc-body::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px; /* グラデーションの高さ */
    background: linear-gradient(to bottom, rgba(247, 247, 247, 0) 0%, rgba(247, 247, 247, 1) 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* ボタンラッパー */
#cms #toc .toc-toggle-wrapper {
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
}

/* ボタン装飾（既存の a タグデザインにスタイルを統一） */
#cms #toc .toc-toggle-btn {
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    color: #2075B8;
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
    font-size: 1rem;
    transition: opacity 0.2s;
}

#cms #toc .toc-toggle-btn:hover {
    text-decoration: none;
    opacity: 0.8;
}

/* 矢印アイコンの付与 */
#cms #toc .toc-toggle-btn span::after {
    content: " ▼";
    font-size: 0.8em;
    display: inline-block;
}


/* --- 開いた状態 (.is-open) の挙動 --- */

#cms #toc.is-open .toc-body {
    max-height: 2500px; /* 目次が収まる十分な高さ */
}

/* 開いたらグラデーションを非表示 */
#cms #toc.is-open .toc-body::after {
    opacity: 0;
}

/* 矢印を上向きに変更 */
#cms #toc.is-open .toc-toggle-btn span::after {
    content: " ▲";
}

mark.highlight {
  background: linear-gradient(transparent 50%, #FFFF7F 50%);
  background-color: transparent; 
  font-weight: bold;
  color: #333;
}

#cms h2 {
    color: #2075B8;
    font-weight: bold;
    font-size: 1.625em;
    margin-bottom: 5px;
}

#cms h3 {
    color: #2075B8;
    font-weight: bold;
    font-size: 1.25em;
    margin-bottom: 5px;
    margin-top: 50px;
}

#cms h4 {
    color: #333;
    font-weight: bold;
    font-size: 1.125em;
    margin-bottom: 5px;
    margin-top: 20px;
}

#cms p {
    color: #333;
    line-height: 1.75;
}

#cms ul {
    background-color: #ECF5FF;
    border-radius: 10px;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 50px;
}

#cms ul li {
    color: #333333;
    background-image: url(../images/dot.svg);
    background-repeat: no-repeat;
    background-position: left 10px;
    padding-left: 15px;
    margin-bottom: 10px;
}

#cms blockquote {
    position: relative;
    background-color: #EDF5FF;
    padding: 40px 70px;        /* 引用符が大きくなったため、上下左右の余白を少し広げました */
    border-radius: 12px;
    margin-top: 50px;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 20px;
}

/* 引用符の共通デザイン */
#cms blockquote::before,
#cms blockquote::after {
  position: absolute;
  font-size: 120px;          /* 120pxにサイズアップ */
  font-family: serif;
  color: #CCCCCC;
  line-height: 1;
}

/* 左上の開始引用符 */
#cms blockquote::before {
  content: "“";
  top: 5px;                  /* 大きくなった分、上に少し引っ張り上げました */
  left: 15px;
}

/* 右下の閉じ引用符 */
#cms blockquote::after {
  content: "”";
  bottom: -35px;             /* はみ出し具合を調整 */
  right: 15px;
}

/* 中のテキスト用 */
#cms blockquote p {
  margin: 0;
  color: #333333;
  line-height: 1.8;
  font-size: 15px;
}

/* テーブル全体の基本スタイル */
#cms table {
    width: 100%;
    border-collapse: collapse; /* セル同士の隙間をなくして密着させる */
    margin-top: 50px;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 20px;
    font-size: 15px;
    color: #333333;
}

/* 1行ごとのスタイル */
#cms table tr {
  border: none;
}

/* 奇数行（1, 3, 5...行目）に薄い青の背景を敷く */
#cms table tr:nth-child(odd) {
  background-color: #EDF5FF; /* 画像同様の薄いブルー */
}

/* 共通のセル設定 */
#cms table th,
#cms table td {
  padding: 13px 15px;       /* 上下左右に適度な余白を確保 */
  text-align: left;         /* 左寄せ */
  vertical-align: middle;   /* 上下中央揃え */
}

/* 左側：項目名（見出し）のスタイル */
#cms table th {
  width: 100px;             /* 左側の幅を固定して縦のラインを綺麗に揃える */
  font-weight: bold;
  white-space: nowrap;      /* 項目名が途中で意図せず改行されるのを防ぐ */
}

/* 右側：内容のスタイル */
#cms table td {
  line-height: 1.6;         /* 住所などが複数行になっても見やすい行間 */
}


.faq-card {
    border: 1px solid #2075B8;
    border-radius: 10px;
    padding-top: 30px;
    padding-right: 30px;
    padding-left: 30px;
    padding-bottom: 30px;
    background-color: #ffffff;
    max-width: 100%;
    margin: 40px auto;
    box-sizing: border-box;
}

.faq-card-title {
  color: #2075B8;
  font-size: 1.625em;
  text-align: center;
  margin-top: 0;
  margin-bottom: 23px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.faq-item {
  margin: 0;
  padding: 0;
}

.faq-question {
  position: relative;
  font-weight: bold;
  color: #333333;
  margin: 0 0 8px 0;
  padding-left: 30px;
  line-height: 1.5;
}

.faq-question::before {
  content: "Q.";
  position: absolute;
  left: 0;
  top: 0;
  color: #2075B8;
  font-weight: 800;
  font-size: 1.125em;
  line-height: 1.3;
}

.faq-answer {
  position: relative;
  color: #333333;
  margin: 0;
  padding-left: 30px;
  line-height: 1.6;
}

.faq-answer::before {
  content: "A.";
  position: absolute;
  left: 0;
  top: 0;
  color: #2075B8;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.3;
}

.matome h2 {
    margin-top: 30px;
    font-size: 1.625em;
    font-weight: bold;
    color: #2075B8;
    margin-bottom: 5px;
}

.matome p {
    color: #333;
    line-height: 1.75;
}

#linkBlock {
    border: 1px solid #CCCCCC;
    padding-top: 40px;
    padding-right: 60px;
    padding-bottom: 40px;
    padding-left: 60px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 50px;
}

#linkBlock h2 {
    text-align: center;
    color: #2075B8;
    font-weight: bold;
    font-size: 1.25em;
    margin-bottom: 13px;
}

#linkBlock ul {
    margin-top: 5px;
    margin-bottom: 5px;
}

.btn-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 730px;
    margin-top: 56px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
    padding: 20px;
    box-sizing: border-box;
}


.btn-item {
  flex: 1;
  margin: 0;
  width: 100%;
}

.btn-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 64px;
  border-radius: 32px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  box-sizing: border-box;
  text-align: center;
  width: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}


.btn-item a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(29, 112, 184, 0.15);
}


.btn-light {
  background-color: #f0f7ff;
  color: #1d70b8;
  border: 1px solid #1d70b8;
}

.btn-light:hover {
  background-color: #ffffff;
  color: #115087;
  border-color: #115087;
}


.btn-blue {
  background-color: #2777bd;
  color: #ffffff;
  border: 1px solid #2777bd;
}

.btn-blue:hover {
    background-color: #1a5c96;
    border-color: #1a5c96;
    box-shadow: 0 6px 15px rgba(26, 92, 150, 0.3);
    color: #FFFFFF;
}

#linkBlock ul li {
    font-size: 1.125em;
    font-weight: bold;
    background-image: url(../images/dot.svg);
    background-repeat: no-repeat;
    background-position: left 11px;
    padding-left: 15px;
    margin-bottom: 20px;
}

.author-card {
    width: 100%;
    max-width: 730px;
    margin-top: 56px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
    padding: 28px;
    background-color: #ffffff;
    border: 1px solid #CCCCCC;
    border-radius: 10px;
    box-sizing: border-box;
}

.author-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 11px;
}

.author-img {
  margin: 0;
  width: 98px;
  height: 98px;
  flex-shrink: 0;
}

.author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #f0f0f0;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.author-label {
  color: #2075B8;
  font-weight: bold;
}

.author-name-group {
  margin: 0;
}

.author-name-group dt {
  font-size: 15px;
  color: #333333;
  margin-bottom: 4px;
}

.author-name-group dd {
  margin: 0;
  font-weight: bold;
  color: #333333;
}

.author-description {
  margin: 0;
  line-height: 1.7;
  color: #333333;
  text-align: justify;
}

.recommend-section {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0px;
  box-sizing: border-box;
}

.recommend-title {
  font-size: 1.625em;
  font-weight: bold;
  color: #2075B8;
  margin: 0 0 10px 0;
  padding: 0;
}

.recommend-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 20px;
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.recommend-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.recommend-card:hover {
  opacity: 0.8;
}

.recommend-thumb {
  margin: 0 0 10px 0;
  width: 100%;
  aspect-ratio: 1160 / 720;
  background-color: #e0e0e0;
  overflow: hidden;
}

.recommend-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.recommend-text {
    margin: 0;
    font-size: 1.125em;
    line-height: 1.7;
    font-weight: bold;
    color: #333333;
    text-align: left;
}


.more-btn-wrap {
  display: flex;
  justify-content: center;
}

.more-btn {
  margin: 0;
  width: 100%;
  max-width: 200px;
}

.more-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  background-color: #2777bd;
  color: #ffffff;
  border: 1px solid #2777bd;
  border-radius: 24px;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  box-sizing: border-box;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.more-btn a img {
  width: 8px;
  height: auto;
}

.more-btn a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(26, 92, 150, 0.3);
  background-color: #1a5c96;
  border-color: #1a5c96;
}

#rightBlock2 {
    margin-left: 33px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 35px;
    padding-right: 35px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: left;
}

#rightBlock2 .recommend-grid {
  grid-template-columns: repeat(3, 1fr);
}

/*〇変更--変更〇*/
.pageNavi {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 100px;
   .wp-pagenavi {
        display: flex;
        justify-content: center;
    }

    .wp-pagenavi span.pages {
        display: none;
    }

    .wp-pagenavi span.current ,
    .wp-pagenavi a.page.smaller ,
    .wp-pagenavi a.page.larger ,
    .wp-pagenavi a.previouspostslink ,
    .wp-pagenavi a.nextpostslink {
        display: flex;
        border: 1px solid #0075c2;
        color: #0075c2;
        font-size: 24px;
        padding: 15px;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        aspect-ratio: 1;
        box-sizing:border-box;
        align-items: center;
        justify-content: center;
        line-height: 0;
    }

    .wp-pagenavi span.current {
        display: flex;
        border: 1px solid #0075c2;
        color: #fff;
        background-color: #0075c2;
        font-weight: 400;
    } 
}