@charset "UTF-8";

/* ---------- 共通項目 ---------- */

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
  letter-spacing: normal;
}

p,
li,
address,
table,
dt,
dd {
  line-height: 1.75;
  font-size: 1.6rem;
}

body {
    font-size: 1.6rem;
    font-family: "Noto Sans JP", sans-serif, "Hiragino Kaku Gothic ProN", Meiryo;
    color: #554236;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

#container {
    overflow: hidden;
}

ul {
    list-style: none;
}

a:link {
    color: #554236;
    text-decoration: underline;
}

a:hover, a:focus {
    text-decoration: none;
}

a:visited {
    color: #554236;
}

a[href^="tel:"] {
    color: inherit !important;
    text-decoration: none !important;
}

.w_1100 {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.d_flex {
    display: flex;
}

.free_box p {
    margin: 0;
}

.tpl_site_index #mymainback {
    padding: 0;
    width: 100%;
    display: block;
}

.tpl_site_index #main_a {
    padding: 0;
}

.sec_title {
    margin-bottom: 40px;
}

.sec_title h2 {
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* ---------- ヘッダ ---------- */

#header {
    padding: 20px;
    justify-content: space-between;
}

#site_logo {
    max-width: 80%;
}

#site_logo img {
    width: 100%;
    display: block;
}

nav.site_nav {
    align-items: center;
}

nav.site_nav ul {
    align-items: center;
}

nav.site_nav ul li a {
    padding: 0 35px;
    position: relative;
    font-size: 1.8rem;
    text-decoration: none;
}

nav.site_nav ul li a::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background: url(/img/iju/bg_nav.svg) center / contain no-repeat;
    opacity: 1;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    transition: 0.3s;
    z-index: -1;
}

.site_nav ul li a:hover::before {
    opacity: 0;
    transition: 0.3s;
}

/* ハンバーガー */

.hamburger {
    position: fixed;
    padding: 0 10px;
    width: 46px;
    height: 46px;
    border-radius: 5px;
    border: solid 1px #554236;
    background: #fff;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    z-index: 9999;
    right: 20px;
    display: none;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background: #554236;
    transition: all 0.4s ease;
}

.hamburger span:nth-child(2) {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* --- 開いた状態（×になる） --- */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media screen and (max-width: 1366px) {

    nav.site_nav ul li a {
        padding: 0 24px;
    }

}

@media screen and (max-width: 910px) {

    .hamburger {
        display: flex;
    }

    #header nav {
        position: fixed;
        padding: 100px 60px 60px;
        height: 100%;
        top: 0;
        right: 0;
        border-radius: 5px 0 0 5px;
        justify-content: flex-end;
        align-items: flex-start;
        gap: 4rem;
        background: #fff;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        opacity: 0;
        pointer-events: none;
        transform: translateX(100%);
        transition: all 0.8s ease;
        visibility: hidden;
        z-index: 999;
    }

    #header nav ul {
        flex-direction: column;
        gap: 4rem;
    }

    #header nav ul li {
        width: 100%;
    }

    #header nav ul li a {
        padding: 0;
    }

    nav.site_nav ul li a::before {
        left: -20px;
        transform: translateY(-50%) translateX(0);
    }

    /* 表示切り替え */
    #header nav.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
        visibility: visible;
        overflow-y: scroll;
    }

}

/* ---------- swiper ---------- */

/* 親要素の制限解除 */
.iju_topVisual,
.swiper-pattern-section,
.swiper-multi,
.swiper-container-wrapper,
.swiper-container-swiper-instance-1 {
    overflow: visible !important;
}

.swiper-container-swiper-instance-1 {
    width: 100%;
}

/* スライド設定 */
.swiper-container-swiper-instance-1 .swiper-slide {
    width: 1100px !important;
    max-width: 100%;
    /* チラつき防止 */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.swiper-container-swiper-instance-1 .swiper-slide-active {
    opacity: 1 !important;
}

.swiper-slide p img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

/* 操作パーツ */
.swiper-controls-wrapper {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 100;
}

.swiper-button-prev,
.swiper-button-next {
    position: static;
    margin-top: 0;
    width: 24px;
    height: 24px;
    cursor: pointer;
    order: 1;
}

.swiper-button-next {
    order: 4;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    content: "";
    width: 8px;
    height: 14px;
    background: url(/img/iju/arrow_l.svg) no-repeat center / contain;
    display: block;
}

.swiper-button-next:after {
    background: url(/img/iju/arrow_r.svg);
}

.autoplay-controls {
    display: flex;
    align-items: center;
    order: 3;
}

.autoplay-controls button {
    width: 24px;
    height: 24px;
    border: none;
}

.stop-button {
    background: url(/img/iju/stop.svg) center / 12px 16px no-repeat;
}

.play-button {
    background: url(/img/iju/play.svg) center / 14px 16px no-repeat;
}

.swiper-pagination {
    margin: 0 12px;
    position: static;
    width: auto !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    order: 2;
}

.swiper-pagination-bullet {
    position: relative;
    width: 8px;
    height: 8px;
    background: #DDD9D6;
    opacity: 1;
    margin: 0 !important;
}

.swiper-pagination-bullet::before {
    position: absolute;
    content: "";
    width: 24px;
    height: 24px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.swiper-pagination-bullet-active {
    background: #554236;
}

/* ---------- もっと見るボタン ---------- */

.more_btn {
    margin-top: 40px;
    text-align: center;
}

.more_btn a {
    position: relative;
    padding: 10px 60px;
    background: #554236;
    border-radius: 400px;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.more_btn a:hover {
    opacity: 0.75;
    transition: 0.3s;
}

.more_btn a::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 6px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: url(/img/iju/more_arrow.svg) right / contain no-repeat;
}

/* ---------- フッタ ---------- */

#footer {
    position: relative;
    margin-top: 100px;
    padding-top: 100px;
    background: url(/img/iju/footer_bg.webp) center bottom / cover no-repeat;
}

#footer::before {
    position: absolute;
    content: "";
    width: 101%;
    aspect-ratio: 95 / 4;
    top: -1px;
    left: -1px;
    background: url(/img/iju/footer_mask.svg) center top / cover no-repeat;
}

#footer p,
#footer span {
    color: #fff;
}

#footer #footer_inner {
    justify-content: space-between;
    align-items: center;
}

#footer #footer_inner .footer_flex_left img {
    margin-bottom: 24px;
}

#footer #footer_inner .footer_flex_left .linkBtn.toiawase {
    margin-top: 20px;
}

#footer #footer_inner .footer_flex_left .linkBtn.toiawase a {
    position: relative;
    padding: 14px 40px 14px 66px;
    background: #fff;
    border-radius: 20px;
    text-decoration: none;
    transition: 0.3s;
    border-radius: 400px;
    display: inline-block;
}

#footer #footer_inner .footer_flex_left .linkBtn.toiawase a:hover {
    opacity: 0.75;
    transition: 0.3s;
}

#footer #footer_inner .footer_flex_left .linkBtn.toiawase a::before {
    position: absolute;
    content: "";
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    top: 2px;
    left: 2px;
    border: solid 1px #554236;
    border-radius: 400px;
    box-sizing: border-box;
}

#footer #footer_inner .footer_flex_left .linkBtn.toiawase a::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 18px;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    background: url(/img/iju/icon_toiawase.svg) center / contain no-repeat;
}

#footer #footer_inner .footer_flex_right {
    gap: 40px;
}

#footer #footer_inner .footer_flex_right .footerLink {
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
}

#footer #footer_inner .footer_flex_right .footerLink > span {
    justify-content: center;
    gap: 6px;
}

#footer #footer_inner .footer_flex_right .footerLink.soudan > span {
    padding: 12px 0;
}

#footer #footer_inner .footer_flex_right .footerLink span.f_deco {
    width: 20px;
    height: 20px;
    background: url(/img/iju/footer_accent.svg) center / contain no-repeat;
}

#footer #footer_inner .footer_flex_right .linkBtn {
    position: relative;
    background: #fff;
    border-radius: 20px;
    transition: 0.3s;
}

#footer #footer_inner .footer_flex_right .linkBtn:hover {
    opacity: 0.75;
    transition: 0.3s;
}

#footer #footer_inner .footer_flex_right .linkBtn::before {
    position: absolute;
    content: "";
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    top: 2px;
    left: 2px;
    border: solid 1px #554236;
    border-radius: 20px;
    box-sizing: border-box;
}

#footer #footer_inner .footer_flex_right .linkBtn a {
    position: relative;
    padding: 28px 91px;
    text-align: center;
    text-decoration: none;
    display: block;
}

#footer #footer_inner .footer_flex_right .linkBtn a::before {
    position: absolute;
    content: "";
    width: 42px;
    height: 36px;
    top: 50%;
    left: 32px;
    transform: translateY(-50%);
    background: url(/img/iju/icon_soudan.svg) center / contain no-repeat;
}

#footer #footer_inner .footer_flex_right .linkBtn a::after {
    position: absolute;
    content: "";
    width: 30px;
    height: 6px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: url(/img/iju/footer_btn_arrow.svg) center / contain no-repeat;
}

#footer #footer_inner .footer_flex_right .pamphlet .linkBtn a {
    padding: 16px 75px;
}

#footer #footer_inner .footer_flex_right .pamphlet .linkBtn a::before {
    width: 27px;
    height: 40px;
    background: url(/img/iju/icon_pamphlet.svg) center / contain no-repeat;
}

#copyright {
    padding: 10px 0;
}

#copyright p {
    text-align: center;
    font-size: 1.4rem;
}

#toTopBtn {
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: none;
    border: none;
    z-index: 9999;
}

/* ボタンを表示するクラス */

#toTopBtn.is-visible {
    opacity: 1;
    visibility: visible;
}

#toTopBtn:hover,
#toTopBtn:focus {
    opacity: 0.6;
}

/* ---------- トップページ ---------- */

.tpl_site_index #footstep_wrap {
    display: none;
}

/* about */

#about {
    margin-top: 160px;
}

#about .sec_title h2 img {
    width: 380px;
}

#about .sec_title h2 p {
    font-size: 2rem;
}

#about .about_inner {
    padding: 80px 0 10px;
    background: url(/img/iju/bg_circle.svg) right / contain no-repeat;
}

#about .aboutText .text_inner {
    position: relative;
    padding: 40px 0;
    flex-direction: column;
    gap: 28px;
}

#about .aboutText .text_inner::before,
#about .aboutText .text_inner::after {
    position: absolute;
    content: "";
    display: block;
    width: 66%;
    height: 4px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, #333 2px, transparent 2px) 0 center / 10px 10px repeat;
}

#about .aboutText .text_inner::after {
    top: inherit;
    bottom: 0;
}

#about .aboutImage {
    padding: 0 60px 0 120px;
    align-items: center;
}

#about .aboutImage img {
    width: 320px;
    display: block;
}

/* 支援内容 */

#shien {
    padding-top: 130px;
}

#shien .shienList {
    justify-content: space-between;
}

#shien .shienList li {
    position: relative;
    padding: 10px;
    width: calc((100% - 120px) / 4);
    border: solid 1px #554236;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}

#shien .shienList li:nth-child(odd) {
    margin-bottom: 60px;
}

#shien .shienList li:nth-child(even) {
    margin-top: 60px;
}

#shien .shienList li::before {
    position: absolute;
    content: "";
    width: 133px;
    height: 78px;
    top: 0;
    left: 0;
    background: url(/img/iju/shien_menu_bg.svg) right bottom / cover no-repeat;
    border-radius: 19px 0 0 0;
    opacity: 0.9;
}

#shien .shienList li:hover {
    opacity: 0.75;
    transition: 0.3s;
}

#shien .shienList .shienTitle {
    position: absolute;
    z-index: 2;
}

#shien .shienList .shienTitle a {
    padding: 4px;
    gap: 6px;
    color: #fff;
    text-decoration: none;
}

#shien .shienList .shienTitle a:hover img {
    opacity: unset;
}

#shien .shienList .shienDetail img {
    border-radius: 20px;
    max-width: 100%;
}

#shien .shienList .shienDetail p {
    padding: 10px;
}

#akiyaBank {
    margin-top: 60px;
}

#akiyaBank a img {
    width: 100%;
}

#akiyaBank a img.sp {
    display: none;
}

/* 新着情報 */

#news {
    position: relative;
    margin-top: 160px;
    background: url(/img/iju/news_bg.svg) 0px -100px / cover no-repeat;
}

#news::before,
#news::after {
    position: absolute;
    content: "";
    width: 101%;
    height: 13px;
    top: -1px;
    left: -1px;
    background: url(/img/iju/news_deco.svg) repeat center / cover;
}

#news::after {
    top: inherit;
    bottom: -1px;
    transform: scaleY(-1);
}

#news .newsDeco {
    position: relative;
    padding: 74px 0;
}

#news .newsDeco::before {
    position: absolute;
    content: "";
    width: 24%;
    aspect-ratio: 229 / 200;
    top: -174px;
    right: -58px;
    background: url(/img/iju/news_photo01.webp) 0 -76px / cover no-repeat;
    mask: url(/img/iju/photo_mask01.svg);
    mask-size: cover;
    z-index: 1;
}

#news .newsDeco::after {
    position: absolute;
    content: "";
    width: 24.5%;
    aspect-ratio: 233 / 180;
    bottom: -164px;
    left: -66px;
    background: url(/img/iju/news_photo02.webp) center bottom / cover no-repeat;
    mask: url(/img/iju/photo_mask02.svg);
    mask-size: cover;
    z-index: 1;
}

#news .newsWrap {
    width: 900px;
    margin: 0 auto;
}

#news .newsWrap .section_information_list ul li {
    margin: 0;
    padding: 20px 10px;
    background-image: radial-gradient(circle, #554236 0.5px, transparent 0.5px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 5px 1px;
}

#news .newsWrap .section_information_list ul li:first-child {
    background-image: radial-gradient(circle, #554236 0.5px, transparent 0.5px), radial-gradient(circle, #554236 0.5px, transparent 0.5px);
    background-position: left top, left bottom;
    background-repeat: repeat-x, repeat-x;
    background-size: 5px 1px, 5px 1px;
}

#news .newsWrap .section_information_list img.icon_new {
    display: none;
}

#news .newsWrap .no_data {
    margin-bottom: 60px;
    padding: 20px 10px;
    background-image: radial-gradient(circle, #554236 0.5px, transparent 0.5px), radial-gradient(circle, #554236 0.5px, transparent 0.5px);
    background-position: left top, left bottom;
    background-repeat: repeat-x, repeat-x;
    background-size: 5px 1px, 5px 1px;
}

#news .newsWrap .more_btn {
    text-align: right;
}

/* 先輩移住者紹介 */

#introduction {
    margin-top: 160px;
}

#introduction .introductionWrap {
    justify-content: space-between;
}

#introduction .free_box {
    display: block;
    padding: 0;
    background-color: inherit;
    box-shadow: none;
    width: calc((100% - 80px) / 3);
}

#introduction .free_box p:first-child {
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
}

#introduction .free_box p:nth-child(2) {
    margin-bottom: 30px;
    text-align: center;
}

#introduction .free_box p:nth-child(3) {
    margin-bottom: 20px;
    padding: 0 10px;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.4;
}

#introduction .free_box p:nth-child(4) {
    padding: 0 10px;
}

#introduction .free_box img {
    border-radius: 20px;
    max-width: 100%;
}

#introduction .more_btn {
    text-align: right;
}

/* ---------- 下層共通 ---------- */

#mymainback_bg {
    background: none;
}

#footstep_wrap {
    display: none;
}

#main_header {
    position: relative;
    margin-bottom: 0;
    background: url(/img/iju/news_bg.svg) left 27% / cover no-repeat;
}

#main_header::before,
#main_header::after {
    position: absolute;
    content: "";
    width: 101%;
    height: 6px;
    background: url(/img/iju/title_deco.svg) repeat center / cover;
    top: -1px;
    left: -1px;
}

#main_header::after {
    top: inherit;
    bottom: -1px;
    transform: scaleY(-1);
}

#main_header h1 {
    padding: 80px 0;
    width: 950px;
    max-width: calc(100% - 20px);
    margin: 0 auto;
    font-family: "Noto Sans JP", sans-serif, "Hiragino Kaku Gothic ProN", Meiryo;
    color: #554236;
    font-size: 4.2rem;
    font-weight: 400;
}

#pankuzu_wrap {
    padding: 40px 0;
}

#pankuzu_wrap>div {
    width: 950px;
    max-width: calc(100% - 20px);
    margin: 0 auto;
    line-height: 1.8;
}

.pankuzu:first-child .icon_current,
#footstep_ttl {
    width: 52px;
    height: 27px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #554236;
    border-radius: 5px;
    font-size: 1.2rem;
}

.pankuzu_mark {
    padding: 0 4px;
}

:is(.tpl_site_list_2, .tpl_site_list1, .tpl_site_detail) #mymainback {
    margin: 0 auto;
    padding: 0;
    width: 950px;
    max-width: calc(100% - 20px);
    display: block;
}

:is(.tpl_site_list_2, .tpl_site_list1, .tpl_site_detail) #main_a {
    padding: 0;
}

/* ---------- 大・小メニューページ ---------- */

.info_list ul li,
.info_list.info_list_date ul li {
    margin: 0;
    padding: 24px 20px;
    background-image: radial-gradient(circle, #554236 0.5px, transparent 0.5px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 5px 1px;
}

.info_list ul li:first-child,
.info_list.info_list_date ul li:first-child {
    background-image: radial-gradient(circle, #554236 0.5px, transparent 0.5px), radial-gradient(circle, #554236 0.5px, transparent 0.5px);
    background-position: left top, left bottom;
    background-repeat: repeat-x, repeat-x;
    background-size: 5px 1px, 5px 1px;
}

.info_list.info_list_date ul li>span {
    display: inherit;
}

.info_list.info_list_date ul li>span.article_title {
    padding-top: 10px;
}

/* ---------- 最終ページ ---------- */

#main_body div.detail_free,
#main_body div.detail_map,
#main_body div.detail_movie {
    margin: 0;
}

#main_body :where(h2, h3, h4, h5, h6), .kakuka_info_ttl, .life_cat_list_ttl {
    margin: 30px 0;
}

#main_body h2 {
    padding: 24px 148px 24px 40px;
    background-color: #554236;
    font-size: 3.2rem;
    font-weight: 400;
    color: #fff;
    border-radius: 10px;
    box-shadow: none;
    outline: 1px solid #FFFFFF;
    outline-offset: -4px;
    background-image: url(/img/iju/h2_deco.svg);
    background-position: right 10px bottom 4px;
    background-size: 142px;
}

#main_body h3 {
    position: relative;
    padding: 16px 40px;
    font-size: 2.6rem;
    font-weight: 400;
    border: solid 1px #554236;
    border-radius: 10px;
    background-color: #EFEEED;
}

#main_body h3::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 38px;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    border-radius: 4px;
    background-color: #554236;
}

#main_body h4 {
    padding: 4px 22px 16px 40px;
    font-size: 2.2rem;
    font-weight: 400;
    background: url(/img/iju/bg_circle.svg) left top / 52px no-repeat, radial-gradient(circle, #333 2px, transparent 2px) 0 bottom / 10px 10px repeat no-repeat;
}

#main_body h5 {
    position: relative;
    padding: 0 20px 10px 40px;
    font-size: 2.0rem;
    font-weight: 400;
    background: radial-gradient(circle, #554236 0.5px, transparent 0.5px) repeat-x left bottom / 4px 1px;
}

#main_body h5::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 8px;
    height: 29px;
    background-color: #554236;
    border-radius: 10px;
}

#main_body h6 {
    position: relative;
    padding: 0 20px 0 40px;
    font-size: 1.8rem;
    font-weight: 400;
    border-bottom: none;
}

#main_body h6::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 1px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: #554236;
}

#main_body .detail_free :where(p) {
    margin-bottom: 1rem;
}

#main_body .detail_free :where(ul,ol) {
    margin-left: 34px;
    margin-bottom: 1rem;
}

#main_body .detail_free :where(ul,ol) li {
    padding-left: 6px;
}

#main_body .detail_free ul li {
    position: relative;
}

#main_body .detail_free ul li::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    top: 10px;
    left: -16px;
    border-radius: 4px;
    background: #554236;
}

#main_body table caption {
    padding-bottom: 6px;
}

#main_body table {
    margin: 0 0 16px;
    border-color: #554236;
    border-width: 1px;
}

#main_body th {
    padding: 1em;
    background: #DDD9D6;
    color: #554236;
    border-color: #554236;
}

#main_body td {
    padding: 1em;
    color: #554236;
    border-color: #554236;
}

#section_footer {
    margin: 64px 0 0;
    border: solid 1px #554236;
    border-radius: 10px;
    background-color: #EFEEED;
}

#section_footer h2,
#main_body #section_footer h2 {
    margin: 0;
    padding: 20px;
    border-radius: 10px 10px 0 0;
    outline: none;
    background: radial-gradient(circle, #fff 2px, transparent 2px) left bottom / 10px 10px repeat-x, #554236;
}

#section_footer_detail {
    padding: 40px;
}

#section_footer_detail span[class*="sf_name"] {
    margin-bottom: 20px;
}

#section_footer_detail span:is(.sf_zip, .sf_address) {
    margin-bottom: 14px;
}

.tpl_site_detail .sf_email {
    margin-top: 20px;
}

.tpl_site_detail .sf_email a {
    padding: 10px 20px 10px 50px;
    background-color: #554236;
    line-height: inherit;
    transition: 0.3s;
}

.tpl_site_detail .sf_email a::after {
    width: 20px;
    height: 18px;
    left: 20px;
    background: url(/img/iju/icon_sf_email.svg) center / contain no-repeat;
}

.tpl_site_detail .sf_email a:hover {
    transform: none;
    box-shadow: none;
    opacity: 0.75;
    transition: 0.3s;
}

/* ---------- レスポンシブ ---------- */

@media screen and (max-width: 1320px) {

    /* トップページ */

    #news .newsDeco::before {
        top: -84px;
    }

    #news .newsDeco::after {
        bottom: -84px;
    }

}

@media screen and (max-width: 1080px) {

    /* 共通 */

    p,
    li,
    address,
    table,
    dt,
    dd {
    font-size: 1.4rem;
    }

    body {
        font-size: 1.4rem;
    }

    .w_1100 {
        width: calc(100% - 20px);
    }

    .swiper-container-swiper-instance-1 .swiper-slide {
        width: 100%;
    }

    .swiper-slide p img {
        border-radius: 0;
        width: 100%;
    }

    #footer #footer_inner {
        flex-direction: column;
        gap: 20px;
    }

    #footer #footer_inner .footer_flex_left {
        width: 100%;
    }

    #footer #footer_inner .footer_flex_left img {
        width: 280px;
    }

    .toc_link_wrap summary {
        font-size: 1.4rem;
    }

    .toc_link > li {
        font-size: 1.4rem;
    }

    #toTopBtn {
        bottom: 10px;
        right: 10px;
    }

    #toTopBtn img {
        width: 48px;
    }

    /* トップページ */

    .tpl_site_index #mymainback {
        margin: 0;
    }

    #about .aboutImage {
        padding: 0 40px 0 60px;
    }

    #shien .shienList li {
        width: calc((100% - 60px) / 4);
    }

    #news .newsDeco::before {
        top: -70px;
    }

    #news .newsDeco::after {
        bottom: -64px;
    }

    #news .newsWrap {
        width: calc(100% - 20px);
    }

    #news .newsWrap .section_information_list {
        padding: 0;
    }

    div[class*="tpl_"]:not(.tpl_top) [class*="_list"] ul li a::before, #important_noticest_area .second_important ul li a::before, div[class*="tpl_"]:not(.tpl_top) .navigation>ul li a::before {
        display: none;
    }

    #introduction .free_box p:first-child {
        font-size: 1.8rem;
    }

    #introduction .free_box p:nth-child(3) {
        font-size: 1.6rem;
    }

    /* 下層ページ共通 */

    #main_header h1 {
        margin: 0 auto;
        padding: 40px 0;
        font-size: 2.8rem;
    }

    #mymainback_bg>#pankuzu_wrap {
        order: 1;
    }

    #pankuzu_wrap {
        padding: 20px 0;
    }

    #pankuzu_wrap>div {
        margin: 0 auto;
        padding-left: 56px;
    }

    .pankuzu:first-child .icon_current,
    #footstep_ttl {
        width: 48px;
        height: 24px;
    }

    :is(.tpl_site_list_2, .tpl_site_list1, .tpl_site_detail) #mymainback {
        order: 3;
    }

    :is(.tpl_site_list_2, .tpl_site_list1, .tpl_site_detail) #main_body {
        padding: 0 !important;
    }

    /* 大・小メニューページ */

    .info_list ul li {
        padding: 20px 10px;
    }

    .info_list.info_list_date ul li {
        padding: 14px 10px;
    }

    .info_list.info_list_date ul li>span.article_title {
        padding-top: 4px;
    }

    /* 最終ページ */

    #main_body :where(h2, h3, h4, h5, h6), .kakuka_info_ttl, .life_cat_list_ttl {
        margin: 16px 0;
    }

    #main_body h2 {
        padding: 15px 20px;
        font-size: 2rem;
        background-size: 68px;
    }

    #main_body h3 {
        padding: 12px 20px;
        font-size: 1.8rem;
    }

    #main_body h3::before {
        width: 6px;
        height: 28px;
        left: 8px;
    }

    #main_body h4 {
        font-size: 1.6rem;
        padding: 15px 20px;
        background: url(/img/iju/bg_circle.svg) left center / 42px no-repeat, radial-gradient(circle, #333 2px, transparent 2px) 0 bottom / 10px 10px repeat no-repeat;
    }

    #main_body h5 {
        padding: 8px 20px;
        font-size: 1.5rem;
    }

    #main_body h5::before {
        top: 50%;
        width: 6px;
        height: 22px;
        transform: translateY(-50%);
    }

    #main_body h6 {
        padding: 5px 20px 5px 42px;
        font-size: 1.4rem;
    }

    #main_body h6::before {
        width: 32px;
    }

    #main_body .detail_free :where(p) {
        margin-bottom: 16px;
    }

    #main_body .detail_free :where(ul,ol) {
        margin-left: 28px;
        margin-bottom: 16px;
    }

    #main_body .detail_free ul li::before {
        top: 8px;
    }

    #section_footer {
        margin: 24px 0 0;
    }

    #section_footer h2, #main_body #section_footer h2 {
        padding: 16px;
        font-size: 1.6rem;
    }

    #section_footer_detail {
        padding: 20px 10px;
        font-size: 1.4rem;
    }

    #section_footer_detail span[class*="sf_name"] {
        margin-bottom: 10px;
    }

    #section_footer_detail span:is(.sf_zip, .sf_address) {
        margin-bottom: 4px;
    }

    .tpl_site_detail .sf_email {
        margin-top: 10px;
    }

}

@media screen and (max-width: 768px) {

    /* 共通 */

    #footer {
        margin-top: 80px;
    }

    #footer #footer_inner .footer_flex_right {
        gap: 20px;
    }

    /* トップページ */

    #about {
        margin-top: 80px;
    }

    .sec_title h2 {
        gap: 14px;
    }

    #about .sec_title h2 img {
        width: 312px;
    }

    #about .sec_title h2 p {
        font-size: 1.8rem;
    }

    #about .about_inner {
        padding: 0;
        background: url(/img/iju/bg_circle.svg) center top / contain no-repeat;
        flex-direction: column-reverse;
        align-items: center;
        gap: 40px;
    }

    #about .aboutText .text_inner {
        padding: 24px 0;
        gap: 16px;
    }

    .more_btn {
        margin-top: 20px;
    }

    #about .aboutImage {
        padding: 0;
    }

    #about .aboutImage img {
        max-width: 100%;
    }

    #shien {
        padding-top: 80px;
    }

    #shien .shienList {
        flex-wrap: wrap;
        gap: 20px;
    }

    #shien .shienList li {
        width: calc((100% - 20px) / 2);
    }

    #shien .shienList li:nth-child(odd) {
        margin-bottom: 0;
    }

    #shien .shienList li:nth-child(even) {
        margin-top: 0;
    }

    #akiyaBank {
        margin-top: 40px;
    }

    #akiyaBank a img.pc {
        display: none;
    }

    #akiyaBank a img.sp {
        display: block;
    }

    #news {
        margin-top: 80px;
        background: url(/img/iju/news_bg.svg) top / auto no-repeat;
    }

    #news .newsDeco {
        padding: 60px 0;
    }

    #news .newsDeco::before {
        content: none;
    }

    #news .newsDeco::after {
        content: none;
    }

    #news .sec_title h2 img {
        width: 212px;
    }

    #news .newsWrap .section_information_list ul {
        padding: 0;
    }

    #news .newsWrap .section_information_list ul li {
        padding: 10px;
    }

    #news .newsWrap .more_btn {
        text-align: center;
    }

    #introduction {
        margin-top: 80px;
    }

    #introduction .sec_title h2 img {
        width: 320px;
    }

    #introduction .introductionWrap {
        flex-wrap: wrap;
        gap: 20px;
    }

    #introduction .free_box {
        width: calc((100% - 20px) / 2);
        padding-bottom: 20px;
    }

    #introduction .free_box p:first-child {
        margin-bottom: 16px;
    }

    #introduction .free_box p:nth-child(2) {
        margin-bottom: 16px;
    }

    #introduction .free_box p:nth-child(3) {
        margin-bottom: 10px;
    }

    #introduction .more_btn {
        text-align: center;
    }

}

@media screen and (max-width: 479px) {

    /* 共通 */

    #header {
        padding: 14px;
    }

    #header .site_logo h1 img {
        width: 220px;
    }

    .hamburger {
        top: 10px;
        right: 10px;
    }

    #footer #footer_inner .footer_flex_left .linkBtn.toiawase {
        text-align: center;
    }

    #footer #footer_inner .footer_flex_right {
        flex-direction: column;
    }

    #footer #footer_inner .footer_flex_right .footerLink {
        gap: 4px;
    }

    #footer #footer_inner .footer_flex_right .linkBtn a {
        padding: 20px 91px;
    }

    #footer #footer_inner .footer_flex_right .footerLink.soudan > span {
        padding: 0;
    }

    #footer #footer_inner .footer_flex_right .pamphlet .linkBtn a {
        padding: 10px 75px;
    }

    /* トップ */

    #shien .shienList li {
        width: 100%;
    }

    #akiyaBank {
        margin-top: 20px;
    }

    #introduction .free_box {
        width: 100%;
        background-image: radial-gradient(circle, #554236 0.5px, transparent 0.5px);
        background-position: left bottom;
        background-repeat: repeat-x;
        background-size: 5px 1px;
    }

    #introduction .free_box p:nth-child(3) {
        padding: 0;
    }

    #introduction .free_box p:nth-child(4) {
        padding: 0;
    }

}