@charset "UTF-8";
/* *****************************
 *
 * Import file to Scss or Sass.
 *
 **************************** */
/*--------------------------------------
  flexbox
--------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Saira:ital,wght@1,400;1,600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");

/* ====================================================
layout style
==================================================== */
.inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.gray_bg {
    background-color: #eaeaea;
}

/* header
-------------------------- */
/* footer
-------------------------- */
/* typography
-------------------------- */
/*--------------------------------------
  コンテンツエリア
--------------------------------------*/
#contents {
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    #contents {
        margin: 0;
    }

    #contents #main {
        margin: 61px 0 0;
    }
}

.yonmaruyon_area {
    margin: 90px 0;
}

.yonmaruyon_area h3 {
    font-size: 27px;
    font-weight: bold;
    margin: 0 0 10px;
}

.yonmaruyon_area a {
    display: inline-block;
    margin: 20px 0 0;
    padding: 8px 40px;
    border: 2px solid #0b3d91;
    color: #0b3d91;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    border-radius: 50px;
    transition: all 0.5s ease;
}

.yonmaruyon_area a:hover {
    color: #fff;
    background-color: #0b3d91;
}

/* ====================================================
module style
==================================================== */
/* 背景モジュール
-------------------------- */
@media screen and (max-width: 768px) {
    .pc {
        display: none;
    }
}

.tb {
    display: none;
}

@media screen and (max-width: 768px) {
    .tb {
        display: block;
    }
}

.sp {
    display: none;
}

@media screen and (max-width: 480px) {
    .sp {
        display: block;
    }
}

.main_ttl {
    font-family: "Saira", sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 37px;
    color: #0b3d91;
    margin: 0 0 50px 0;
    text-align: center;
    line-height: 1.5;
}

.main_ttl span {
    display: block;
    color: #626262;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

.page_ttl_area {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 382px;
    margin: 0 0 60px;
}

.page_ttl_area .box {
    padding: 60px 0 0;
}

.page_ttl_area .box h2 {
    text-align: center;
    font-size: 44px;
    font-family: "Saira", sans-serif;
    font-weight: 700;
    font-style: italic;
    color: #fff;
    line-height: 40px;
    text-shadow: 0 0 7px rgba(0, 0, 0, 0.7);
    background-color: rgba(255, 255, 255, 0);
    /* 2024/11/12 N.Ogawa 背景を透明にする */
}

.page_ttl_area .box h2 span {
    display: block;
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    margin: 5px 0 0;
    text-align: center;
}

.line_area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
    background-image: url(../the-thor/images/line_bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 60px 0;
}

.line_area .wrap .box {
    max-width: 420px;
    margin: 0 0 20px;
}

.line_area .wrap .box img {
    display: block;
    margin: 0 auto 20px auto;
}

.line_area .wrap .box p {
    font-weight: bold;
    color: #fff;
}

.line_area .wrap .main_btn {
    color: #00b900;
    border: solid 2px #00b900;
}

.line_area .wrap .main_btn:before {
    background-color: #00b900;
}

.line_area .wrap .main_btn:hover {
    color: #fff;
    border: solid 2px #fff;
}

@media screen and (max-width: 768px) {
    .page_ttl_area {
        height: 230px;
    }

    .page_ttl_area .box {
        padding: 0;
    }

    .page_ttl_area .box h2 {
        line-height: 1.2;
    }
}

@media screen and (max-width: 480px) {
    .page_ttl_area {
        height: 200px;
    }

    .page_ttl_area .box h2 {
        font-size: 37px;
        line-height: 1.2;
    }

    .page_ttl_area .box h2 span {
        font-size: 14px;
    }
}

/* 見出しモジュール
-------------------------- */
/* テキストモジュール
-------------------------- */
/* リンクモジュール
-------------------------- */
/* ボタンモジュール
-------------------------- */
.main_btn,
.main_btn_en {
    display: block;
    margin: auto;
    overflow: hidden;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    width: 202px;
    padding: 17px 6px;
    color: #0b3d91;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.4s ease;
    border: solid 2px #0b3d91;
}

.main_btn::before,
.main_btn_en::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    content: "";
    background: #0b3d91;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform 0.5s;
}

.main_btn:hover,
.main_btn_en:hover {
    color: #fff;
}

.main_btn:hover::before,
.main_btn_en:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
}

.main_btn .fa-clone,
.main_btn_en .fa-clone {
    margin: 0 0 0 5px;
}

.main_btn_en {
    font-family: "Saira", sans-serif;
    font-weight: 700;
    font-style: italic;
}

/*--------------------------------------
  サイド
--------------------------------------*/
#sub {
    font-size: 100%;
    margin-bottom: 24px;
    overflow: hidden;
}

#sub h4 {
    font-size: 18px;
    border-bottom: 2px solid #888;
    color: #666;
    font-weight: bold;
}

#sub li>h4 {
    margin-top: 24px;
}

#sub .side_ad {
    margin-bottom: 36px;
}

#sub .side_contents {
    margin-bottom: 24px;
}

/* サイドバー見出し */
/* サイドバー広告エリア */
/* 新着記事 */
.side_new {
    margin: 0 0 15px 0;
    text-align: left;
    display: table;
    width: 100%;
}

.side_new:hover {
    text-decoration: none;
    background: #eee;
}

.side_thumb {
    display: table-cell;
    width: 105px;
    padding: 0 5px 0 0;
}

.side_title {
    font-size: 90%;
    display: table-cell;
    vertical-align: top;
}

.side_title span {
    color: #333;
}

select#cat {
    width: 100%;
    padding: 0.5em 0 0.5em 0.2em;
    font-size: 100%;
    color: #333;
}

/* 検索フォーム */
#searchform {
    margin-bottom: 24px;
    width: 298px;
    background: #fff;
    padding: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#searchform input[type=text] {
    height: 24px;
    float: left;
    margin: 0;
    width: 250px;
    border: 1px solid #fff;
    padding: 0 0 0 5px;
    font-size: 15px;
}

#searchform button {
    margin: 0;
    padding: 0;
    background: #fff;
    border: 0;
    color: #111;
    font-size: 18px;
}

#searchform button:hover {
    color: #ff7ddf;
}

/*-----------------------------------
  サイドバーSNSアイコン
------------------------------------*/
#sub .side-sns {
    margin-bottom: 12px;
    padding: 0.3em;
    font-size: 30px;
}

#sub .side-sns ul {
    display: table;
    table-layout: fixed;
    width: 100%;
}

#sub .side-sns ul li {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

#sub .side-sns ul li a {
    color: #666;
    text-shadow: -1px 1px 0 white;
}

#sub .side-sns ul li a:hover {
    color: #ff7ddf;
    text-shadow: -1px 1px 0 white;
}

#sub .side_widget li ul {
    text-align: left;
    margin: 0 0 0 5px;
}

#sub .side_widget li ul li {
    margin: 0;
    padding: 0.5em 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 0 white;
}

#sub .side_widget .children, #sub .side_widget .sub-menu {
    text-indent: 1em;
    margin-left: 0;
}

#sub .side_widget .children ul, #sub .side_widget .sub-menu ul {
    text-indent: 2em;
}

#sub .side_widget .children li, #sub .side_widget .sub-menu li {
    border-bottom: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 0 white inset;
}

#sub .side_widget .children li:first-child, #sub .side_widget .sub-menu li:first-child {
    margin-top: 8px;
}

#sub .side_widget .children li:last-child, #sub .side_widget .sub-menu li:last-child {
    padding-bottom: 0;
}

/*-----------------------------------
  サイドバーウィジェット
------------------------------------*/
/*-----------------------------------
  カレンダー
------------------------------------*/
#calendar_wrap {
    margin-bottom: 24px;
}

#wp-calendar {
    border: 1px solid #999;
    width: 100%;
    margin: 0;
}

#wp-calendar tr {
    border: 1px solid #999;
}

th, td {
    border: 1px solid #999;
}

#wp-calendar td, #wp-calendar th {
    text-align: center;
    padding: 3%;
}

#wp-calendar caption {
    font-weight: bold;
    text-align: left;
}

#wp-calendar tbody tr #today {
    background-color: #999;
    color: #ffd700;
}

@media screen and (min-width: 768px) {

    /*--------------------------------------
    768px コンテンツ
  --------------------------------------*/
    /*--------------------------------------
    768px サイド
  --------------------------------------*/
    .side_title {
        font-size: 90%;
    }

    #sub .side-sns ul {
        width: 50%;
    }

    #sub h4 {
        font-size: 20px;
        color: #333;
    }

    #sub .side_widget li ul {
        text-align: left;
        margin: 0 0 0 5px;
    }

    #sub .side_widget li ul li {
        width: 45%;
        display: inline-block;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    #sub .side_widget li ul li ul {
        display: none;
    }

    /* サイドバー見出し */
    /*-----------------------------------
    サイドバーウィジェット
  ------------------------------------*/
    /*-----------------------------------
    768px カレンダー
  ------------------------------------*/
    #wp-calendar {
        width: 50%;
    }
}

@media screen and (min-width: 1024px) {

    /*--------------------------------------
    1024px サイド
  --------------------------------------*/
    #contents #sub {
        float: left;
        margin: 0;
        width: 300px;
        text-align: center;
        padding: 0;
    }

    #contents #sub p {
        text-align: left;
    }

    #sub h4 {
        font-size: 20px;
        text-align: left;
        border: none;
        color: #333;
        text-shadow: -1px 1px 0 white;
        font-weight: bold;
        margin: 0 0 18px 0;
    }

    #sub .side-sns ul {
        width: 100%;
    }

    .side_new:hover {
        text-decoration: none;
        background: #fff;
    }

    /*-----------------------------------
    1024px サイドバーウィジェット
  ------------------------------------*/
    #sub .side_widget li ul li {
        width: 100%;
        display: block;
        padding: 0.5em 0;
        text-indent: 1em;
    }

    #sub .side_widget li ul li ul {
        display: inline;
    }

    #sub .side_widget li ul li ul li {
        text-indent: 2em;
    }

    #sub .side_widget li ul li ul li ul li {
        text-indent: 3em;
    }

    /*-----------------------------------
    カレンダー
  ------------------------------------*/
    #wp-calendar {
        width: 100%;
    }
}

#article_area {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
}

#article_area .article_body {
    width: 60%;
}

#article_area .article_body .wrap .head {
    margin: 0 0 30px;
}

#article_area .article_body .wrap .head .date {
    font-family: brandon-grotesque, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 14px;
    color: #a3a3a3;
    margin: 0 0 10px;
}

#article_area .article_body .wrap .head .news_single_title {
    font-size: 24px;
    font-weight: bold;
    border-bottom: 2px solid #0b0b0b;
    padding: 0 0 10px;
}

#article_area .article_body .wrap .head .shoplist_single_title {
    font-size: 24px;
    font-weight: bold;
    padding: 13px 20px;
    border-left: 8px solid #0b3d91;
}

#article_area .article_body .wrap .head .shoplist_single_title span {
    display: block;
    font-size: 14px;
    color: #a3a3a3;
}

#article_area .article_body .wrap .attachment-eyecatch {
    overflow: hidden;
    border-radius: 10px;
    margin: 0 0 30px;
}

#article_area .article_body .wrap .contents {
    margin: 0 0 50px;
}

#article_area .article_body .wrap .contents p {
    line-height: 1.84;
}

#article_area .sidebar {
    width: 300px;
}

#article_area .sidebar h4 {
    font-size: 21px;
    font-weight: bold;
    border-bottom: 2px solid #0b0b0b;
    padding: 0 0 10px;
    margin: 0 0 30px;
}

/*--------------------------------------
  記事内指定
--------------------------------------*/
#article_body ul {
    list-style: url(../the-thor/images/checkmark.png) inside;
    margin-bottom: 24px;
}

#article_body ol {
    list-style: decimal inside;
    margin-bottom: 24px;
}

#article_body ul li, #article_body ol li {
    margin: 0.8em 0;
    padding-left: 1em;
    text-indent: -1.5em;
    margin-left: 0.5em;
}

#article_body ul>ul, #article_body ol>ol {
    margin: 0.8em 0 0 1em;
}

#article_body div {
    max-width: 100%;
}

#entry_body a {
    text-decoration: underline;
}

#entry_body dl {
    border: 1px solid #ddd;
    margin: 0 auto 24px;
    width: 80%;
    padding: 5%;
    border-radius: 5px;
}

#entry_body dt {
    margin: 1em 0 1em 0;
    padding: 0;
    font-weight: bold;
}

#entry_body dt:first-child {
    margin: 0 0 1em 0;
}

#article_body table {
    max-width: 100%;
    width: 100%;
    margin: 24px 0;
}

#article_body td {
    padding: 3%;
}

#article_body th {
    padding: 3%;
    background: #eee;
    font-weight: bold;
    text-align: center;
}

#article_body img {
    margin-bottom: 24px;
}

/*--------------------------------------
  前の記事・次の記事
--------------------------------------*/
#page_pn {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 0 50px;
}

#page_pn dl {
    width: 40%;
}

#page_pn dl dt {
    font-size: 16px;
    font-weight: bold;
    color: #0b3d91;
    border-bottom: 1px solid #0b3d91;
    padding: 5px 0;
    margin: 0 0 10px;
}

#page_pn dl dd {
    font-size: 13px;
}

#page_pn dl dd a {
    color: #0b0b0b;
    text-decoration: underline;
}

/*
Theme Name: sagasumu
Theme URI: https://sagasumu.net/
Description: さがすむのテーマ
Version: 1.1.1
Author: KOZAKIKAKU
Author URI: http://kozakikaku.com/
*/
/*--------------------------------------
  クラス定義
--------------------------------------*/
.s {
    font-size: 70%;
}

.ss {
    font-size: 50%;
}

.l {
    font-size: 150%;
    line-height: 130%;
}

.ll {
    font-size: 200%;
    line-height: 120%;
}

.b {
    font-weight: bold;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

span.futo {
    font-weight: bold;
}

span.futoaka {
    font-weight: bold;
    color: #ff0000;
}

span.futomido {
    font-weight: bold;
    color: #149b14;
}

strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

sup,
sub {
    height: 0;
    line-height: 1;
    vertical-align: baseline;
    _vertical-align: bottom;
    position: relative;
    font-size: 80%;
}

sup {
    bottom: 1ex;
}

sub {
    top: 0.5ex;
}

/*--------------------------------------
  動画レスポンシブ化
---------------------------------------*/
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    margin: 0 auto 24px 0;
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*--------------------------------------
  クリアフィックス
---------------------------------------*/
.clearfix:after {
    visibility: hidden;
    height: 0;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
}

* html .clearfix, *:first-child+html .clearfix {
    zoom: 1;
}

/*--------------------------------------
  画像
--------------------------------------*/
img {
    max-width: 100% !important;
    height: auto;
}

.alignright {
    float: right;
    margin: 0 0 24px 24px;
}

.alignleft {
    float: left;
    margin: 0 24px 24px 0;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

img.float-left {
    float: left;
    margin: 0 24px 24px 0;
}

img.float-right {
    float: right;
    margin: 0 0 24px 24px;
}

#contents .wp-caption-text {
    font-size: 90%;
    margin: 0;
}

#article_body .wp-caption {
    margin-bottom: 24px;
}

#article_body .wp-caption img {
    margin-bottom: 4px;
}

/*--------------------------------------
  リンク
--------------------------------------*/
/*--------------------------------------
  全体定義
--------------------------------------*/
html {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 100%;
    line-height: 1.6;
    letter-spacing: 1px;
    color: #0b0b0b;
}

body {
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
}

p,
dl,
dt,
dd,
ol,
ul,
li {
    font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ol,
ul,
li,
a,
blockquote,
pre,
strong,
span,
small,
nav {
    transform: rotate(0.05deg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/*--------------------------------------
  見出しベース
--------------------------------------*/
/*--------------------------------------
  ここからタブレット表示設定
--------------------------------------*/
/* タブレット表示ここまで */
/*--------------------------------------
  ここからPC表示設定
--------------------------------------*/
/* PC表示ここまで */
/*--------------------------------------
  リセット
--------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-style: normal;
    font-weight: normal;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, menu, nav, section {
    display: block;
}

a {
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

img {
    vertical-align: top;
    border: 0;
}

button {
    font-size: 100%;
}

.clear {
    clear: both;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after {
    content: "";
    content: none;
}

q:before, q:after {
    content: "";
    content: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

input, textarea {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
}

caption, th {
    text-align: left;
}

a:focus {
    outline: none;
}

img#wpstats {
    position: absolute;
    width: 0px;
    height: 0px;
    padding: 0px;
    border: none;
    overflow: hidden;
}

pre {
    overflow: auto;
}

i.fa {
    margin: 0 0.5em 0 0;
}

#header {
    position: absolute;
    width: 100%;
    padding: 40px 0 20px 0;
    z-index: 9999;
}

#header .header_inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

#header .logo {
    display: inline-block;
    transition: all 0.4s ease;
}

#header .logo:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)";
    -moz-opacity: 0.7;
    -khtml-opacity: 0.7;
    text-decoration: none;
}

#header .header_menu {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

#header .header_menu nav {
    position: relative;
    margin: 0 15px 0 0;
}

#header .header_menu nav ul li {
    display: inline-block;
    margin: 0 15px 0 0;
}

#header .header_menu nav ul li:last-child {
    margin: 0;
}

#header .header_menu nav ul li a {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    padding: 8px 4px;
}

#header .header_menu nav ul li a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background: #fff;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
}

#header .header_menu nav ul li a:hover::after {
    transform-origin: left top;
    transform: scale(1, 1);
}

#header .header_menu .header_tamatebako {
    transition: all 0.4s ease;
}

#header .header_menu .header_tamatebako:hover {
    transform: scale(1.1);
}

.sp_header {
    display: none;
}

.togmenu {
    display: block;
}

@media screen and (max-width: 825px) {
    #header .header_menu nav ul li {
        margin: 0 8px 0 0;
    }
}

@media screen and (max-width: 768px) {
    .header_tamatebako {
        display: none;
    }

    .togmenu {
        display: none !important;
    }

    #header {
        position: fixed;
        display: block;
        background-color: #0b3d91;
        padding: 17px 0 17px 0;
    }

    #header .header_inner .logo {
        width: 200px;
    }

    .sp_header {
        display: block;
        position: relative;
        z-index: 999;
    }

    .sp_header .sp_nav {
        display: none;
        position: absolute;
        top: 17px;
        width: 100%;
        background-color: #031e4b;
        -ms-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
    }

    .sp_header .sp_nav .sp_box {
        display: block;
        padding: 3px 0;
    }

    .sp_header .sp_nav .sp_box li:last-child a {
        border-bottom: none;
    }

    .sp_header .sp_nav .sp_box li a {
        display: block;
        padding: 16px 0;
        text-align: center;
        box-sizing: border-box;
        color: #ffffff;
        font-size: 14px;
        font-weight: bold;
        width: 100%;
        border-bottom: 1px solid #e0e0e0;
        transition: all 0.4s ease;
    }

    .sp_header .sp_nav .sp_box li a:hover {
        opacity: 0.7;
        filter: alpha(opacity=70);
        -ms-filter: "alpha(opacity=70)";
        -moz-opacity: 0.7;
        -khtml-opacity: 0.7;
        text-decoration: none;
    }

    .sp_header .hamburger_icon {
        display: block;
        position: absolute;
        top: -29px;
        right: 25px;
    }

    .sp_header .hamburger_icon .trigger,
    .sp_header .hamburger_icon .trigger span {
        display: inline-block;
        transition: all 0.4s ease;
        box-sizing: border-box;
    }

    .sp_header .hamburger_icon .trigger {
        position: relative;
        width: 50px;
        height: 50px;
    }

    .sp_header .hamburger_icon .trigger span {
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        width: 70%;
        height: 2px;
        background-color: #fff;
        border-radius: 5px;
    }

    .sp_header .hamburger_icon .trigger span:nth-of-type(1) {
        top: 5px;
    }

    .sp_header .hamburger_icon .trigger span:nth-of-type(2) {
        top: 15px;
    }

    .sp_header .hamburger_icon .trigger span:nth-of-type(3) {
        top: 25px;
    }

    .sp_header .hamburger_icon .trigger.active span:nth-of-type(1) {
        transform: translateY(10px) rotate(-45deg);
    }

    .sp_header .hamburger_icon .trigger.active span:nth-of-type(2) {
        opacity: 0;
    }

    .sp_header .hamburger_icon .trigger.active span:nth-of-type(3) {
        transform: translateY(-10px) rotate(45deg);
    }
}

/*--------------------------------------
  フッター
--------------------------------------*/
.contact_fixed {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(210, 210, 210, 0.7);
    z-index: 1000;
    padding: 10px 0;
}

.contact_fixed .ttl {
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    margin: 0 0 4px;
}

.contact_fixed .btn_area {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.contact_fixed .btn_area a {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    width: 280px;
    height: 60px;
    margin: 0 5px;
    color: #fff;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 50px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.28);
}

.contact_fixed .btn_area a:hover {
    transform: translate(0, 3px);
    box-shadow: none;
}

.contact_fixed .btn_area .tel {
    background-color: #f5301f;
}

.contact_fixed .btn_area .tel .main {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.3;
}

.contact_fixed .btn_area .tel .main i {
    font-size: 18px;
    margin: 0 5px 0 0;
}

.contact_fixed .btn_area .tel .sub {
    font-size: 11px;
}

.contact_fixed .btn_area .line {
    background-color: #00b900;
}

.contact_fixed .btn_area .line .main {
    font-size: 15px;
    font-weight: bold;
    line-height: 1.3;
}

.contact_fixed .btn_area .line .main i {
    margin: 0 8px 0 0;
}

.contact_fixed .btn_area .line .sub {
    font-size: 11px;
}

.contact_banner {
    background-color: #031e4b;
    padding: 45px 0;
}

.contact_banner a {
    display: block;
    margin: auto;
    text-align: center;
    overflow: hidden;
    max-width: 320px;
    padding: 24px 6px;
    background-color: #fff;
    cursor: pointer;
}

.contact_banner a h3 {
    font-size: 13px;
    font-weight: bold;
    color: #0b0b0b;
    transition: all 0.4s ease;
}

.contact_banner a h3 span {
    display: block;
    font-size: 32px;
    font-weight: 600;
    font-family: "Saira", sans-serif;
    font-weight: 700;
    font-style: italic;
    color: #f5301f;
    transition: all 0.4s ease;
}

.contact_banner a h3 span i {
    font-size: 28px;
    margin: 0 8px 0 0;
}

.contact_banner a::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    content: "";
    background: #f5301f;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform 0.5s;
}

.contact_banner a:hover h3 {
    color: #fff;
}

.contact_banner a:hover h3 span {
    color: #fff;
}

.contact_banner a:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
}

#footer {
    width: 100%;
    margin: 0 auto;
    color: #ffffff;
    background-color: #0b3d91;
}

#footer .footer_in {
    padding: 60px 0 140px 0;
}

#footer .footer_in nav {
    margin: 0 0 40px;
}

#footer .footer_in nav ul {
    text-align: center;
}

#footer .footer_in nav ul li {
    display: block;
    margin: 0 15px;
    line-height: 2.5;
}

#footer .footer_in nav ul li a {
    color: #ffffff;
    font-size: 13px;
    font-weight: bold;
    transition: all 0.4s ease;
}

#footer .footer_in nav ul li a:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)";
    -moz-opacity: 0.7;
    -khtml-opacity: 0.7;
    text-decoration: none;
}

#footer .footer_in .bottom {
    margin: 0 0 40px;
}

#footer .footer_in .bottom .logo {
    display: block;
    margin: 0 auto 25px auto;
    transition: all 0.4s ease;
}

#footer .footer_in .bottom .logo:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)";
    -moz-opacity: 0.7;
    -khtml-opacity: 0.7;
    text-decoration: none;
}

#footer .footer_in .bottom .address {
    text-align: center;
    font-size: 13px;
    font-weight: bold;
    margin: 0 0 32px;
}

#footer .footer_in .bottom .tamatebako {
    display: block;
    margin: 0 auto 15px auto;
    transition: all 0.4s ease;
}

#footer .footer_in .bottom .tamatebako:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)";
    -moz-opacity: 0.7;
    -khtml-opacity: 0.7;
    text-decoration: none;
}

#footer .footer_in .copyright {
    font-family: "Saira", sans-serif;
    font-weight: 400;
    font-style: italic;
    text-align: center;
    font-size: 10px;
    color: #ffffff;
}

/*--------------------------------------
  TOPへ戻る PC・タブレット追尾型
--------------------------------------*/
#page-top {
    position: fixed;
    bottom: 40px;
    right: 20px;
    text-align: center;
}

#page-top i {
    margin: 0;
}

#page-top a {
    text-decoration: none;
    color: #ffffff;
    padding: 5px 10px;
    display: block;
    font-size: 15px;
    border-radius: 50px;
    border: 2px solid #fff;
    background-color: #0b3d91;
    z-index: 9999;
    transition: all 0.4s ease;
}

#page-top a:hover {
    transform: translateY(-5px);
    text-decoration: none;
}

@media screen and (max-width: 530px) {
    .contact_fixed {
        padding: 5px 0 0 0;
    }

    .contact_fixed .inner {
        padding: 0;
    }

    .contact_fixed .ttl {
        font-size: 13px;
        margin: 0 0 2px;
    }

    .contact_fixed .btn_area a {
        width: 50%;
        height: 50px;
        margin: 0;
        border-radius: 0;
    }

    .contact_fixed .btn_area .tel .main {
        font-size: 17px;
        line-height: 1.2;
    }

    .contact_fixed .btn_area .tel .main i {
        font-size: 15px;
        margin: 0 3px 0 0;
    }

    .contact_fixed .btn_area .tel .sub {
        font-size: 10px;
    }

    .contact_fixed .btn_area .line .main {
        font-size: 13px;
        line-height: 1.2;
    }

    .contact_fixed .btn_area .line .main i {
        display: inline-block;
        width: 20px;
        margin: 0 4px 0 0;
    }

    .contact_fixed .btn_area .line .sub {
        font-size: 10px;
    }

    .contact_fixed .btn_area .line .sub span {
        display: none;
    }

    .contact_banner {
        padding: 30px 0;
    }

    .contact_banner a {
        max-width: 280px;
        padding: 20px 6px;
    }
}

.top_area .hero_area {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 720px;
    margin: 0 0 70px;
}

.top_area .hero_area .box {
    padding: 80px 0 0;
}

.top_area .hero_area .box .ttl_area {
    position: relative;
    margin: 0 0 40px;
    padding: 0 0 40px;
}

.top_area .hero_area .box .ttl_area h2 {
    font-size: 43px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    line-height: 1.3;
    margin: 0 0 20px;
}

.top_area .hero_area .box .ttl_area p {
    font-size: 18px;
    color: #ffffff;
    text-align: center;
}

.top_area .hero_area .box .ttl_area:before {
    content: "";
    display: inline-block;
    width: 200px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}

.top_area .hero_area .box .btn_area {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}

.top_area .hero_area .box .btn_area li a {
    display: block;
    transition: all 0.4s ease;
}

.top_area .hero_area .box .btn_area li a:hover {
    transform: scale(1.1);
}

.top_area #top_products {
    margin: 0 0 100px;
}

.top_area #top_products .wrap {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    height: 554px;
    margin: 0 0 50px 0;
}

.top_area #top_products .wrap .box {
    overflow: hidden;
    position: relative;
    width: 20%;
    cursor: pointer;
}

.top_area #top_products .wrap .box a {
    display: block;
    width: 100%;
    height: 554px;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    cursor: pointer;
    transition: all 0.4s ease;
    transform: rotate(0);
}

.top_area #top_products .wrap .box h4 {
    position: absolute;
    width: 100%;
    top: 50%;
    /* 上下中央に配置 */
    transform: translateY(-50%);
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}

.top_area #top_products .wrap .box:hover a {
    transform: scale(1.1);
}

.top_area #top_solutions {
    margin: 0 0 100px 0;
}

.top_area #top_solutions .wrap {
    margin: 0 0 45px;
    width: 100%;
}

.top_area #top_solutions .wrap .top_carousel_slider {
    width: 100%;
    margin: auto;
    overflow: hidden;
}

.top_area #top_solutions .wrap .top_carousel_slider .swiper-wrapper .swiper-slide {
    width: 461px;
    height: auto;
}

.top_area #top_solutions .wrap .box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.top_area #top_solutions .wrap .box .bg {
    overflow: hidden;
}

.top_area #top_solutions .wrap .box .bg img {
    width: 100%;
    transition: all 0.4s ease;
    transform: scale(1);
}

.top_area #top_solutions .wrap .box h4 {
    position: absolute;
    text-align: center;
    color: #fff;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.7);
    font-weight: bold;
}

.top_area #top_solutions .wrap .box h4 span {
    display: block;
    font-family: "Saira", sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 30px;
}

.top_area #top_solutions .wrap .box:hover .bg img {
    transform: scale(1.12);
}

.top_area #top_company {
    margin: 0 0 100px 0;
}

.top_area #top_company .wrap .box {
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    -moz-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url("../the-thor/images/top_company_bg.png");
    height: 300px;
}

.top_area #top_company .wrap .box .main_ttl {
    color: #fff;
    margin: 0 0 20px;
}

.top_area #top_company .wrap .box .main_ttl span {
    color: #fff;
}

.top_area #top_tamatebako {
    margin: 0 0 100px 0;
}

.top_area #top_tamatebako .wrap {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.top_area #top_tamatebako .wrap .img {
    width: 30%;
}

.top_area #top_tamatebako .wrap .text {
    width: 69%;
}

.top_area #top_tamatebako .wrap .text h4 {
    font-size: 20px;
    font-weight: bold;
    color: #0b3d91;
    line-height: 1.45;
    margin: 0 0 10px;
}

.top_area #top_tamatebako .wrap .text .main_btn {
    margin: 15px 0 0;
}

.top_area .line_area {
    margin: 0 0 100px;
}

.top_area #partners_area {
    margin: 60px 0 60px 0;
}

.top_area #partners_area .wrap {
    margin: 0 0 45px;
    width: 100%;
}

.top_area #partners_area .wrap .top_carousel_slider {
    width: 100%;
    margin: auto;
    overflow: hidden;
}

.top_area #partners_area .wrap .top_carousel_slider .swiper-wrapper .swiper-slide {
    width: 200px;
    height: 70px;
    padding: 0px 10px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.top_area #partners_area .wrap .box img {
    width: 100%;
    transition: all 0.4s ease;
    transform: scale(1);
    -o-object-fit: contain;
    object-fit: contain;
}

.top_area #partners_area .wrap .box img:hover {
    transform: scale(1.12);
}

@media screen and (max-width: 768px) {
    .top_area .hero_area {
        height: 550px;
        margin: 0 0 70px;
    }

    .top_area .hero_area .box {
        padding: 0;
    }

    .top_area .hero_area .box .ttl_area {
        margin: 0 0 20px;
        padding: 0 0 20px;
    }

    .top_area .hero_area .box .ttl_area h2 {
        font-size: 35px;
    }

    .top_area .hero_area .box .ttl_area p {
        font-size: 15px;
    }

    .top_area .hero_area .box .btn_area {
        flex-wrap: nowrap;
    }

    .top_area .hero_area .box .btn_area li {
        width: 24%;
    }

    .top_area #top_products .wrap {
        flex-wrap: wrap;
        height: auto;
        margin: 0 0 30px 0;
    }

    .top_area #top_products .wrap .box {
        width: 100%;
    }

    .top_area #top_products .wrap .box a {
        width: 100%;
        height: 150px;
    }

    .top_area #top_solutions .wrap {
        margin: 0 0 25px;
    }

    .top_area #top_company .wrap .box {
        height: 260px;
    }

    .top_area #top_tamatebako .wrap {
        flex-wrap: wrap;
    }

    .top_area #top_tamatebako .wrap .img {
        display: block;
        width: 100%;
        max-width: 200px;
        margin: 0 auto 20px auto;
    }

    .top_area #top_tamatebako .wrap .text {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .top_area #top_tamatebako .wrap .text h4 {
        font-size: 20px;
        font-weight: bold;
        color: #0b3d91;
        line-height: 1.45;
        margin: 0 0 10px;
    }

    .top_area #top_tamatebako .wrap .text .main_btn {
        margin: 15px auto 0 auto;
    }
}

@media screen and (max-width: 480px) {
    .top_area .hero_area {
        height: 600px;
        margin: 0 0 70px;
    }

    .top_area .hero_area .box .ttl_area {
        position: relative;
        margin: 0 0 20px;
        padding: 0 0 20px;
    }

    .top_area .hero_area .box .ttl_area h2 {
        font-size: 30px;
        font-weight: bold;
        color: #ffffff;
        text-align: center;
        line-height: 1.3;
        margin: 0 0 20px;
    }

    .top_area .hero_area .box .ttl_area p {
        font-size: 15px;
    }

    .top_area .hero_area .box .btn_area {
        flex-wrap: wrap;
    }

    .top_area .hero_area .box .btn_area li {
        width: 37%;
    }
}

@media screen and (max-width: 400px) {
    .top_area .hero_area .box .btn_area li {
        width: 26% !important;
    }
}

/*  2024/11/12 N.ogawa */
h1.heading.heading-primary {
    display: none;
}

.company_area #greeting {
    margin: 0 0 100px;
}

.company_area #greeting .wrap {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
}

.company_area #greeting .wrap .img {
    width: 30%;
}

.company_area #greeting .wrap .img img {
    margin: 0 0 7px;
}

.company_area #greeting .wrap .img p {
    font-weight: bold;
}

.company_area #greeting .wrap .text {
    width: 66%;
}

.company_area #greeting .wrap .text h4 {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 10px 0;
}

.company_area #greeting .wrap .text .intro {
    margin: 0 0 10px;
}

.company_area #profile {
    position: relative;
    background-image: url("../the-thor/images/top_company_bg.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 80px 0;
    margin: 0 0 100px;
}

.company_area #profile .main_ttl {
    color: #fff;
}

.company_area #profile .main_ttl span {
    color: #fff;
}

.company_area #profile .list {
    max-width: 535px;
    margin: auto;
}

.company_area #profile .list dl {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    border-bottom: solid 1px #fff;
    padding: 20px 0;
}

.company_area #profile .list dl:last-child {
    border-bottom: none;
}

.company_area #profile .list dl dt {
    display: inline-block;
    width: 20%;
    font-weight: bold;
    color: #fff;
}

.company_area #profile .list dl dd {
    display: inline-block;
    width: 73%;
    color: #fff;
}

.company_area #access {
    margin: 0 0 100px;
}

.company_area #access .address {
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    margin: 0 0 20px 0;
}

.company_area #access .maps {
    margin: 0 0 57px 0;
    position: relative;
    padding-bottom: 30%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.company_area #access .maps iframe,
.company_area #access .maps object,
.company_area #access .maps embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.company_area #staff {
    margin: 0 0 100px;
}

.company_area #staff .wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.company_area #staff .wrap .box {
    width: 200px;
    margin: 26px;
}

.company_area #staff .wrap .box img {
    margin: 0 0 10px 0;
}

.company_area #staff .wrap .box .job {
    text-align: center;
    font-weight: bold;
    color: #0b3d91;
    margin: 0 0 2px 0;
}

.company_area #staff .wrap .box h4 {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    margin: 0 0 8px 0;
}

.company_area #staff .wrap .box .staff_detail {
    display: none;
}

.company_area #staff .wrap .box .staff_detail h5 {
    font-size: 15px;
    font-weight: bold !important;
}

.company_area #staff .wrap .box a {
    display: block;
    width: 150px;
    margin: auto;
    font-size: 14px;
    font-weight: 700;
    padding: 5px 20px;
    text-align: center;
    cursor: pointer;
    border: 1px solid #0b3d91;
    color: #0b3d91;
    border-radius: 0px;
    transition: all 0.4s ease;
    box-sizing: border-box;
    background-color: #fff;
}

.company_area #staff .wrap .box a:hover {
    background-color: #0b3d91;
    color: #fff;
}

.company_area #effort {
    margin: 0 0 100px;
}

.company_area #effort .wrap {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.company_area #effort .wrap .img {
    width: 34%;
    box-shadow: 13px 13px 0px 0 rgba(3, 30, 75, 0.2);
}

.company_area #effort .wrap .text {
    width: 59%;
}

.company_area #effort .wrap .text p {
    font-size: 15px;
    font-weight: bold;
}

.company_area #effort .wrap .text img {
    margin: 0 0 30px;
}

@media screen and (max-width: 768px) {
    .company_area #greeting {
        margin: 0 0 100px;
    }

    .company_area #greeting .wrap {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        -moz-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .company_area #greeting .wrap .img {
        width: 100%;
        max-width: 260px;
    }

    .company_area #greeting .wrap .text {
        width: 100%;
        margin: 0 0 20px;
    }

    .company_area #greeting .wrap .text h4 {
        font-size: 24px;
        font-weight: bold;
        margin: 0 0 10px 0;
    }

    .company_area #profile .list dl {
        flex-wrap: wrap;
        padding: 15px 0;
        border-bottom: solid 1px #d3dee8;
    }

    .company_area #profile .list dl dt {
        width: 100%;
        margin: 0 0 5px;
    }

    .company_area #profile .list dl dd {
        width: 100%;
    }

    .company_area #access .maps {
        padding-bottom: 45%;
    }
}

@media screen and (max-width: 480px) {
    .company_area #effort .wrap {
        flex-wrap: wrap;
    }

    .company_area #effort .wrap .img {
        width: 100%;
        text-align: center;
        margin: 0 0 20px;
    }

    .company_area #effort .wrap .text {
        width: 100%;
    }
}

.products_area .cat_area {
    margin: 0 0 80px;
}

.products_area .cat_area h4 {
    font-family: "Saira", sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 20px;
    font-weight: bold;
    color: #0b3d91;
    margin: 0 0 15px;
    text-align: center;
    border-left: none;
}

.products_area .cat_area ul {
    max-width: 700px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* 2024/11/12 N.Ogawa */
.products_area .cat_area ul::before {
    display: none;
}

/* 2024/11/12 N.Ogawa */
.products_area .cat_area ul::after {
    display: none;
}

/* 2024/12/19 N.Ogawa */
.products_area .cat_area ul>li:before {
    content: ""; 
}

/* 2024/12/19 N.Ogawa */
.products_area .cat_area .partsOl-7 ol, .partsUl-7 ul {
    border-top: none;
    border-bottom: none;
}

.products_area .cat_area ul li {
    display: inline-block;
    margin: 0 10px 10px 0;
}

.products_area .cat_area ul li a {
    display: block;
    margin: auto;
    overflow: hidden;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    width: 160px;
    padding: 8px 10px;
    color: #0b3d91;
    background-color: #fff;
    border: solid 2px #0b3d91;
    cursor: pointer;
    transition: all 0.6s ease;
}

.products_area .cat_area ul li a::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    content: "";
    background: #0b3d91;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform 0.5s;
}

.products_area .cat_area ul li a:hover {
    color: #fff;
}

.products_area .cat_area ul li a:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
}

.products_area #products {
    margin: 0 0 100px;
    max-width: 750px;
    margin: 0 auto 100px auto;
}

.products_area #products #gas,
.products_area #products #welding,
.products_area #products #machinery,
.products_area #products #construction {
    margin: 0 0 100px;
}

.products_area #products #gas,
.products_area #products #welding,
.products_area #products #machinery,
.products_area #products #construction,
.products_area #products #tube {
    padding: 20px 0 0;
}

.products_area #products h3 {
    font-size: 28px;
    font-weight: bold;
    color: #0b3d91;
    margin: 0 0 30px 0;
    text-align: center;
}

.products_area #products .box {
    background: rgba(0, 0, 0, 0.06);
    padding: 10px;
    border-radius: 3px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin: 0 0 30px 0;
}

.products_area #products .box .img {
    width: 37%;
}

.products_area #products .box .text {
    width: 60%;
}

.products_area #products .box .text h4 {
    font-size: 20px;
    margin: 0 0 5px 0;
    font-weight: bold;
    line-height: 20px !important;
    margin-bottom: 10px;
    border-left: none;
    /* 2024/11/12 N.Ogawa */
}

.products_area #products .box .text .tag {
    display: flex;
    flex-wrap: wrap;
}

.products_area #products .box .text .tag a {
    display: block;
    background: #0b3d91;
    color: white;
    font-size: 12px;
    padding: 3px 10px;
    margin: 5px 5px 0 0;
    border-radius: 3px;
    transition: all 0.4s ease;
}

.products_area #products .box .text .tag a:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)";
    -moz-opacity: 0.7;
    -khtml-opacity: 0.7;
    text-decoration: none;
}

@media screen and (max-width: 700px) {
    .products_area .cat_area {
        margin: 0 0 60px;
    }

    .products_area .cat_area ul {
        flex-wrap: wrap;
    }

    .products_area .cat_area ul li {
        display: block;
        margin: 0 0 10px 0;
        width: 100%;
    }

    .products_area .cat_area ul li a {
        width: 100%;
        max-width: 400px;
        box-sizing: border-box;
    }
}

@media screen and (max-width: 500px) {
    .products_area #products .box {
        flex-wrap: wrap;
    }

    .products_area #products .box .img {
        width: 100%;
        margin: 0 0 10px;
    }

    .products_area #products .box .text {
        width: 100%;
    }
}

.solutions_area #solutions {
    margin: 0 0 100px;
}

.solutions_area #solutions .wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    max-width: 952px;
    margin: auto;
}

.solutions_area #solutions .wrap .box {
    width: 48%;
    color: #fff;
    margin: 0 0 35px;
}

.solutions_area #solutions .wrap .box .top {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.solutions_area #solutions .wrap .box .top img {
    width: 100%;
}

.solutions_area #solutions .wrap .box .top h4 {
    position: absolute;
    text-align: center;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.7);
    font-weight: bold;
    color: #ffffff;
    /* テキストをホワイトに設定 N.Ogawa */
}

.solutions_area #solutions .wrap .box .top h4 span {
    display: block;
    font-family: "Saira", sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 30px;
    line-height: 31px;
    margin: 0 0 7px;
    color: #ffffff;
    /* テキストをホワイトに設定 N.Ogawa */
}

.solutions_area #solutions .wrap .box .bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px 10px;
    background-color: #031e4b;
}

.solutions_area #solutions .wrap .box .bottom .problem {
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 20px;
}

.solutions_area #solutions .wrap .box .bottom .icon {
    width: 100%;
    margin: 0 0 25px;
}

.solutions_area #solutions .wrap .box .bottom .icon img {
    display: block;
    margin: auto;
}

.solutions_area #solutions .wrap .box .bottom .solutions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 80%;
    padding: 14px 13px;
    background-color: #0b3d91;
}

.solutions_area #solutions .wrap .box .bottom .solutions p {
    font-size: 14px;
    font-weight: bold;
}

@media screen and (max-width: 600px) {
    .solutions_area #solutions .wrap .box {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .solutions_area #solutions .wrap .box {
        margin: 0 0 25px;
    }

    .solutions_area #solutions .wrap .box .top h4 {
        font-size: 14px;
    }

    .solutions_area #solutions .wrap .box .top h4 span {
        font-size: 25px;
        margin: 0 0 4px;
    }

    .solutions_area #solutions .wrap .box .bottom .solutions {
        width: 85%;
    }
}

.contact_area .page_ttl_area {
    margin: 0;
}

.contact_area #contact_form {
    background-color: #f7f7f7;
    padding: 90px 0;
}

.contact_area #contact_form .form {
    max-width: 534px;
    margin: auto;
}

.contact_area #contact_form .form .intro {
    display: flex;
    justify-content: center;
    margin: 0 0 40px;
}

.contact_area #contact_form .form .tel {
    text-align: center;
    margin: 0 0 40px;
}

.contact_area #contact_form .form .tel a {
    color: #f5301f;
}

.contact_area #contact_form .form .tel a p {
    font-size: 23px;
    font-weight: bold;
}

.contact_area #contact_form .form .tel a p i {
    font-size: 17px;
    margin: 0 6px 0 0;
}

.contact_area #contact_form .form .tel .time {
    font-size: 12px;
}

.contact_area #contact_form .form .input_area dl {
    margin: 0 0 30px;
}

.contact_area #contact_form .form .input_area dl dt {
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 7px;
}

.contact_area #contact_form .form .input_area .check_area {
    margin: 0 0 40px;
}

.contact_area #contact_form .form .input_area .check_area .head {
    font-weight: bold;
}

.contact_area #contact_form .form .input_area .check_area .head a {
    font-weight: bold;
    color: #0b0b0b;
    text-decoration: underline;
}

div.wpcf7-validation-errors {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    padding: 10px !important;
    color: #fff;
    background-color: #fc4422;
    border: #fc4422 2px solid !important;
}

div.wpcf7-mail-sent-ok {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    padding: 10px !important;
    color: #fff;
    background-color: #0099de;
    border: #0099de 2px solid !important;
}

input.wpcf7-not-valid,
textarea.wpcf7-not-valid {
    background-color: #fff2f2 !important;
}

span.wpcf7-not-valid-tip {
    font-weight: bold;
    padding: 5px 0 0 0;
}

span.wpcf7-list-item {
    display: block;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=submit],
textarea,
button {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
    font-family: "Noto Sans JP", sans-serif;
    width: 100%;
    font-size: 15px;
    padding: 20px 25px;
    border: 1px solid #d0d0d0;
    background-color: #ffff;
    border-radius: 5px;
    box-sizing: border-box;
}

input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, textarea::-moz-placeholder {
    color: #c3c3c3;
}

input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: #c3c3c3;
}

input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
textarea::placeholder {
    color: #c3c3c3;
}

input[type=submit] {
    font-family: "Noto Sans JP", sans-serif;
    display: block;
    width: 300px;
    margin: auto;
    font-size: 18px;
    font-weight: 700;
    padding: 20px 0;
    text-align: center;
    cursor: pointer;
    border: 2px solid #0b3d91;
    color: #0b3d91;
    border-radius: 0px;
    transition: all 0.4s ease;
    box-sizing: border-box;
    background-color: #fff;
}

input[type=submit]:hover {
    background-color: #0b3d91;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .contact_area input[type=submit] {
        width: 260px;
    }
}

.privacy_area .privacy_text {
    margin: 0 0 105px 0;
}

.privacy_area .privacy_text p {
    margin: 0 0 28px 0;
}

/* メインビジュアルのフォンサイズ変更 2024/12/19 */
.heading-slider {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 10px
}
@media only screen and (min-width: 992px) {
    .heading-slider {
        font-size: 3.2rem;
    }
}

@media only screen and (min-width: 768px) {
    .heading-slider {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }
}

/* お知らせ 2025/1/29 */
#news.news_wrap {
    max-width: 820px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    position: relative;
    margin-bottom: 70px;
  }
  
  @media (max-width: 1024px) {
    #news.news_wrap {
      width: 96%;
    }
  }
  
  @media (max-width: 768px) {
    #news.news_wrap {
      width: 92%;
    }
  }
  
  #news.news_wrap ul {
    margin-bottom: 50px;
  }
  
  #news.news_wrap ul li {
    padding: 30px 50px;
    font-size: calc(1px * 14);
    font-family: "Noto Sans JP";
    font-weight: 300;
    letter-spacing: 1px;
    color: #626262;
    line-height: 1.2;
    /* 1.2のときは1.2の半分で0.6em */
    /* 1.2のときは1.2の半分で0.6em */
    font-weight: bold;
  }
  
  @media (max-width: 1024px) {
    #news.news_wrap ul li {
      font-size: calc(1vw * 14/10);
    }
  }
  
  @media (max-width: 768px) {
    #news.news_wrap ul li {
      font-size: calc(1px * 12);
    }
  }
  
  #news.news_wrap ul li:nth-of-type(odd) {
    background: #E4E4E4;
  }
  
  #news.news_wrap ul li span {
    background: #0B3D91;
    border-radius: 2px;
    color: white;
    font-size: calc(1px * 12);
    font-family: "Noto Sans JP";
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.2;
    /* 1.2のときは1.2の半分で0.6em */
    /* 1.2のときは1.2の半分で0.6em */
    font-weight: normal;
    display: inline-block;
    padding: 4px 8px;
  }
  
  @media (max-width: 1024px) {
    #news.news_wrap ul li span {
      font-size: calc(1vw * 12/10);
    }
  }
  
  @media (max-width: 768px) {
    #news.news_wrap ul li span {
      font-size: calc(1px * 10);
    }
  }
  
  #news.news_wrap ul li a {
    display: block;
    border-left: 5px solid #0B3D91;
    padding-left: 20px;
    margin-top: 20px;
    color: black;
    font-size: calc(1px * 14);
    font-family: "Noto Sans JP";
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.2;
    /* 1.2のときは1.2の半分で0.6em */
    /* 1.2のときは1.2の半分で0.6em */
  }
  
  @media (max-width: 1024px) {
    #news.news_wrap ul li a {
      font-size: calc(1vw * 14/10);
    }
  }
  
  @media (max-width: 768px) {
    #news.news_wrap ul li a {
      font-size: calc(1px * 12);
    }
  }
  /* お知らせ 2025.1.29 */
.news_wrap {
    max-width: 730px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    position: relative;
    margin-bottom: 70px;
  }
  
  @media (max-width: 1024px) {
    .news_wrap {
      width: 96%;
    }
  }
  
  @media (max-width: 768px) {
    .news_wrap {
      width: 92%;
    }
  }
  
  .news_wrap ul {
    margin-bottom: 50px;
  }
  
  .news_wrap ul li {
    padding: 30px 50px;
    font-size: calc(1px * 14);
    font-family: "Noto Sans JP";
    font-weight: 300;
    letter-spacing: 1px;
    color: #626262;
    line-height: 1.2;
    /* 1.2のときは1.2の半分で0.6em */
    /* 1.2のときは1.2の半分で0.6em */
    font-weight: bold;
  }
  
  @media (max-width: 1024px) {
    .news_wrap ul li {
      font-size: calc(1vw * 14/10);
    }
  }
  
  @media (max-width: 768px) {
    .news_wrap ul li {
      font-size: calc(1px * 12);
    }
  }
  
  .news_wrap ul li:nth-of-type(odd) {
    background: #E4E4E4;
  }
  
  .news_wrap ul li span {
    background: #0B3D91;
    border-radius: 2px;
    color: white;
    font-size: calc(1px * 12);
    font-family: "Noto Sans JP";
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.2;
    /* 1.2のときは1.2の半分で0.6em */
    /* 1.2のときは1.2の半分で0.6em */
    font-weight: normal;
    display: inline-block;
    padding: 4px 8px;
  }
  
  @media (max-width: 1024px) {
    .news_wrap ul li span {
      font-size: calc(1vw * 12/10);
    }
  }
  
  @media (max-width: 768px) {
    .news_wrap ul li span {
      font-size: calc(1px * 10);
    }
  }
  
  .news_wrap ul li a {
    display: block;
    border-left: 5px solid #0B3D91;
    padding-left: 20px;
    margin-top: 20px;
    color: black;
    font-size: calc(1px * 14);
    font-family: "Noto Sans JP";
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.2;
    /* 1.2のときは1.2の半分で0.6em */
    /* 1.2のときは1.2の半分で0.6em */
  }
  
  @media (max-width: 1024px) {
    .news_wrap ul li a {
      font-size: calc(1vw * 14/10);
    }
  }
  
  @media (max-width: 768px) {
    .news_wrap ul li a {
      font-size: calc(1px * 12);
    }
  }

/* style-min.cssに対して上書き */
.news_wrap ul>li:before {
    content: none;
}

.news_wrap ol::after, .news_wrap ol::before, .news_wrap ul::after, .news_wrap ul::before {
    width: 0px;
}

.wp-block-post-title {
    font-size: 24px!important;
}

.content ul>li:before {
    content: none;
}

.partsUl-7 ul::before {
    background-color: white!important;
}

.partsUl-7 ul::after {
    background-color: white!important;
}

/* thorのお問い合わせフォームを非表示にする*/
.divider, .dividerTop {
    display: none;
}

/* フッターメニューの背景色 */
.l-footer .bottomFooter {
    background: #031E4B; /* 好みの色に変更 */
}

/* フッターメニューの文字サイズ */
.bottomFooter__list li {
    font-size: 16px; /* 好みのサイズに変更 */
}

/* フッターのCopyright背景色 */
.bottomFooter {
    background-color: ##031E4B; /* 好みの色に変更 */
}

/* フッターのCopyright文字サイズ */
.bottomFooter__copyright {
    font-size: 14px; /* 好みのサイズに変更 */
    color: white; /* 文字色を変更 */
}


