@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/* ----------------------------------------------------------------------
 その他
---------------------------------------------------------------------- */
.post_content p a,
.post_content li a,
.post_content table a {
    transition: opacity .25s;
}

.post_content p a:hover,
.post_content li a:hover,
.post_content table a:hover {
    opacity: .8;
    text-decoration: underline;
}

/* テキストをSCHUNK blue(HEX ＃003D6A)に */
#content h1,
.-type-card .p-postList__title {
    color: #003d6a !important;
}

/* ページタイトルをセンター揃えに */
.c-pageTitle {
    text-align: center;
}

/* ページタイトルのサブタイトル非表示 */
.c-pageTitle__subTitle {
    display: none;
}

/* YouTube・Googleマップレスポンシブ */
.container-youtube {
    position: relative;
    width: 100%;
    padding-top: calc(100% * calc(9 / 16));
}

.container-youtube.gmap {
    padding-top: calc(100% * calc(2 / 3));
}

.container-youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

/* span内で改行しない */
.span-nowrap span {
    display: inline-block;
    white-space: nowrap;
}

@media (max-width: 599px) {
    .span-nowrap br {
        display: none;
    }
}

/* カラム内のボタン幅を100%に */
.wp-block-column .swell-block-button a {
    width: 100%;
}

.swell-block-column .swell-block-button a {
    width: 100%;
}

/* サイトマップのリストをマーカー無しに */
.sitemap_container ul {
    padding: 0;
    list-style-type: none !important;
}

.sitemap_container ul ul {
    padding-left: 1.5em;
    font-size: .875em;
}

/* ----------------------------------------------------------------------
 ヘッダー／フッター
---------------------------------------------------------------------- */
/* ヘッダー */
#sp_head_bar {
    display: flex;
    justify-content: flex-end;
    background-color: #009ee0;
    color: #fff;
}

.l-header {
    position: sticky;
}

.l-header__inner {
    flex-wrap: wrap;
    max-width: 100%;
}

.l-header__logo,
.l-header__gnav {
    max-width: calc(var(--container_size, 0px) + var(--swl-pad_container, 0px)*2);
    padding-left: var(--swl-pad_container, 0) !important;
    padding-right: var(--swl-pad_container, 0) !important;
}

.l-header__logo {
    padding-bottom: 0 !important;
    text-align: left !important;
}

.c-headLogo__link {
    display: inline-block;
}

.c-gnav {
    padding-top: .5em;
    justify-content: flex-start !important;
    gap: 16px;
}

.l-header__gnav .c-gnav>li>a {
    padding-left: 0 !important;
}

.c-gnav > .menu-item > .sub-menu {
    left: 0;
    -webkit-transform: inherit;
    transform: inherit;
  }

/* フッター */
.c-widget + .c-widget {
    margin: 0;
}


.l-footer__foot .l-container {
    padding-top: 1em;
}

.l-footer__foot .l-container .copyright {
    text-align: left;
}

#footer-sitemap .swell-block-columns__inner {
    flex-wrap: wrap;
    gap: 0;
}

.footer-sitemap_container > .swell-block-columns__inner {
    row-gap: 1em !important;
}

#footer-sitemap a {
    color: #fff;
}

#footer-sitemap a:hover {
    text-decoration: none;
}

#footer-sitemap ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    list-style-type: none;
    white-space: nowrap;
    text-align: center;
}

#footer-sitemap ul li {
    flex-basis: 100%;
}

#footer-sitemap .icon-list {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    column-gap: .5em;
    font-size: 1.5em;
}

#footer-sitemap .icon-list li {
    flex-basis: 0;
}

@media (min-width: 960px) {
    #footer-sitemap .swell-block-columns__inner {
        flex-wrap: nowrap;
        column-gap: 1em;
    }
    .footer-sitemap_container > .swell-block-columns__inner {
        justify-content: space-between;
    }
    #footer-sitemap .swell-block-column {
        flex-basis: 0;
    }
    #footer-sitemap ul {
        text-align: left;
        font-size: .875em;
    }
    #footer-sitemap ul li ul {
        padding-left: 1.5em;
    }
}

/* ヘッダーライン／フッターライン */
.h_line {
    margin-bottom: 1.25em;
    order: 2;
    position: relative;
    overflow: hidden;
    width: 100%;
    background-color: #009ee0;
}

.h_line::before {
    content: "";
    position: absolute;
    width: 42px;
    height: 37px;
    background-color: #003d6a;
    top: 6px;
    right: 0;
}

.h_line::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 37px;
    background-color: #003d6a;
    top: 0;
    left: 0;
}

.h_line__wrapper {
    display: flex;
    transform: skewX(-61deg);
    /* margin: 0px -5px; ズーム時にヘッダーのラインに細い線が出る現象への対応で下記に変更 2023.12.19 */
    margin: -1px -5px;
    overflow: hidden;
}

.h_line__01 {
    width: 50%;
    /* margin-bottom: 6px !important; ズーム時にヘッダーのラインに細い線が出る現象への対応で下記に変更 2023.12.19 */
    margin-bottom: 7px !important;
}

.h_line__02 {
    width: 50%;
    /* margin-top: 6px !important; ズーム時にヘッダーのラインに細い線が出る現象への対応で下記に変更 2023.12.19 */
    margin-top: 7px !important;
}

.h_line__01,
.h_line__02 {
    margin: 0 6px;
    overflow: hidden;
    display: block;
    /* height: 37px; ズーム時にヘッダーのラインに細い線が出る現象への対応で下記に変更 2023.12.19 */
    height: 38px;
    background: #003d6a;
}

.f_line {
    margin-bottom: 0;
    background-color: #009ee0;
}

/* .f_line::before {
    background-color: #022f51;
}

.f_line::after {
    background-color: #022f51;
}

.f_line .h_line__01,
.f_line .h_line__02 {
    background: #022f51;
} */

@media (min-width: 960px) {
    .h_line {
        margin-bottom: 0;
    }
}

/* 本社サイトバナー */
#btn_head-office {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 99;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px); /* バナーの高さ88px + bottomの位置10px + 余裕2px */
}

#btn_head-office.UpMove{ /* 上に上がる動き */
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

#btn_head-office.DownMove{ /* 下に下がる動き */
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
    z-index: 99;
  }
  to {
  	opacity: 0;
	transform: translateY(100px);
  }
}

#btn_head-office a {
    width: 240px;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    color: #009de2 !important;
}

#btn_head-office a p {
    margin-top: 3px;
    font-weight: bold;
}

/* ----------------------------------------------------------------------
 ホーム
---------------------------------------------------------------------- */
/* メインビジュアル */
#main_visual .swl-bg-color {
    background-color: rgba(0, 61, 106, .75) !important;
}

/* TOPICS */
#topics {
    padding: .75em 0 !important;
}

/* ----------------------------------------------------------------------
 プライバシーポリシー
---------------------------------------------------------------------- */
.privacy-policy_container h2 {
    margin-top: 0;
}