/*
* Theme Name: Kitagawa
* Description:
* Theme URI: Kitagawa 2026
* Version: 1.0
* Theme Author: ã‚´ãƒ¼ãƒªã‚¨ãƒ 
* Author URI:
* Tags: basic
* Textdomain:
* Languages Folder: /languages
*/
/* Default---------------------------------------------- */
@charset "utf-8";

@font-face {
    font-family: Helvetica;
    src: url("font/HelveticaNowDisplay-Light.ttf") format("opentype");
}
@font-face {
    font-family: Helvetica-B;
    src: url("font/HelveticaNowDisplay-ExtraBold.ttf") format("opentype");
}

html {
    overflow-x: hidden;
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
}
body{
    font-family: 'LINESeedJP';
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}
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, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    zoom: 1;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    font-family: 'LINESeedJP';
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-weight: unset;
}
p{
    font-size: 16px;
    line-height: 1.8;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
}
h1,h2,h3,h4,h5{
    font-family: 'LINESeedJP-bold';
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

/*menu*/
/* Important stuff here! Look at the bottom!!! (Line 133 to 136) */
*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --nav-bg: #000000e8;
    --main-clr: dodgerblue;
    --nav-shadow: 0px 3px var(--main-clr);
}
.st-pusher{
    overflow: hidden;
}
.main-blue-color{
    color: #004B9E;
}
.transition-tranform{
    transition: transform 0.3s ease-in-out;;
}
nav.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    z-index: 1000;
    width: 100%;
    -webkit-box-shadow: 0 5px 7px -6px black;
    -moz-box-shadow: 0 5px 7px -6px black;
    box-shadow: 0 5px 7px -6px black;
    background: #ffffff;
    height: 90px;
}

nav.header .logo{
    padding-left: 35px;
    height: 100%;
    width: 27%;
}
nav.header .logo p{
    font-size: 7px;
    padding-bottom: 18px;
    padding-top: 5px;
}
nav.header .logo img {
    height: 31px;
}

nav.header ul {
    --height: 0;
    --padding: 5vw;
    --font-size: 3.5vw;

    flex-direction: column;
    background: var(--nav-bg);
    position: absolute;
    width: 100%;
    left: 0;
    top: 13.5vw;
    height: var(--height);
    transition: 1s cubic-bezier(.68,-0.55,.27,1.55);
    list-style: none;
    display: flex;
    align-items: center;
    font-size: var(--font-size);
    overflow-y: hidden;
    -webkit-box-shadow: 0 5px 7px -6px black;
    -moz-box-shadow: 0 5px 7px -6px black;
    box-shadow: 0 5px 7px -6px black;
}
nav.header ul.active {
    --height: calc((((var(--padding) * 2.5) + (var(--font-size) * 1.5))) * var(--childenNumber));
    transition: 1s ease;
}

nav.header ul li {
    width: 100%;
    text-align: center;
    padding: var(--padding);
}
nav.header ul li a {
    width: 100%;
    text-transform: capitalize;
    color: #fff;
    text-decoration: none;
    position: relative;
    font-size: 4vw;
}
nav.header ul li a::after {
    content: "";
    width: 0%;
    height: 1.7px;
    border-radius: 99px;
    background: var(--main-clr);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.3s ease;
}

nav.header ul li a:hover::after {
    width: 100%;
}

nav.header .menu {
    width: 13.5vw;
    height: 13.5vw;
    cursor: pointer;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    padding: 4vw 3.5vw;
    background: #FFD100;
}
nav.header .active {
    padding: 4vw 2.2vw 4vw 4.2vw;
}

nav.header .menu span {
    width: 100%;
    height: 1vw;
    /*border-radius: 99px;*/
    background: #fff;
    transition: 0.3s ease;
    transform-origin: left;
}

nav.header .menu.active span {
    background: #ffffff;
}

nav.header .menu.active span:nth-child(1) {
    transform: rotate(40deg);
}

nav.header .menu span:nth-child(3) {
    transform-origin: left;
}

nav.header .menu.active span:nth-child(3) {
    transform: rotate(-40deg);
}

nav.header .menu.active span:nth-child(2) {
    transform: scale(0);
}
.menu-center{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
}
.menu-center a{
    font-family: 'LINESeedJP-bold';
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 15px;
    color: #004B9E;
    margin-right: 60px;
}
.menu-center a:last-child{
    margin-right: 0;
}
.menu-center a:hover{
    color: #FFD100;
}
.menu-right{
    width: 27%;
    height: 100%;
}
.menu-right .box-btn-box{
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
}
.menu-right .box-btn-l{width: 200px;background: #EFEFEF;display: flex;flex-direction: column;align-items: center;justify-content: center;}
.menu-right .box-btn-l p{
    font-size: 10px;
    color: #000000;
}
.menu-right .box-btn-l div{
    font-family: 'din';
    font-size: 22px;
    color: #004B9E;
    padding: 4px 0;
}
.menu-right .box-btn-l img{
    margin-right: 5px;
}
.menu-right .box-btn-r{width: 200px;background: #FFD100;display: flex;align-items: center;justify-content: center;color: #ffffff;font-family: 'LINESeedJP-bold';-moz-osx-font-smoothing: grayscale;-webkit-font-smoothing: antialiased;}
.menu-right .box-btn-r img{
    margin-right: 8px;
}

/*end menu*/
.cl-yellow{
    color: #FFD100;
}
.cl-blue{
    color: #004B9E;
}
.box-mv{
    position: relative;
}
.mv{
    text-align: center;
}
.box-mv h2{
    position: absolute;
    top: 15px;
    left: 150px;
    font-size: 25px;
    letter-spacing: 2px;
    line-height: 1.5;
    font-family: Helvetica;
}
.line-btn-fixed{
    position: fixed;
    top: 90px;
    right: 0;
    z-index: 1;
    width: 60px;
}
#primary{
    padding-top: 90px;
}
.inner{
    max-width: 1200px;
    margin: auto;
}
.mv{
    position: relative;
    background: #004B9E;
    padding-bottom: 115px;
}
.mv .mv-content{
    position: absolute;
    width: 100%;
    bottom: 0;
    text-align: center;
}
.mv .mv-content img{
    max-width: 1250px;
    transform-origin: 50% 80%;
}
.ct1{
    background: #004B9E;
    position: relative;
    margin-bottom: 20px;
    padding-top: 25px;
    padding-bottom: 120px;
    margin-top: -3px;
}
.ct1::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);

    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #004B9E;
}
.ct-contact{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.ct-contact-l{
    width: 51.5%;
}
.ct-contact-l img{
    width: 100%;
    padding-bottom: 15px;
}
.ct-contact-l .ct-contact-l-p1{
    font-size: 13px;
    color: #ffffff;
    padding-bottom: 45px;
    line-height: 1.5;
}
.ct-contact-l .ct-contact-l-p2{
    font-family: 'LINESeedJP-bold';
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 22px;
    padding-top: 25px;
    padding-bottom: 20px;
    color: #ffffff;
    text-align: center;
    line-height: 1.5;
}
.ct-contact-l a{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 205px;
    border: 2px solid #ffffff;
    border-radius: 20px;
    overflow: hidden;
    color: #ffffff;
}
.ct-contact-l a p{
    padding: 10px 0;
    font-size: 18px;
}
.ct-contact-l a div{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
    font-family: 'din';
    padding-bottom: 5px;
}
.ct-contact-l a div img{
    max-width: 53px;
    padding-bottom: 0;
    margin-right: 10px;
    margin-bottom: -6px;
}

.ct-contact-r{
    width: 40%;
    background: #FFD100;
    border: 3px solid #ffffff;
    border-radius: 25px;
}
.ct-contact-r .ct-contact-title{
    max-width: 323px;
    margin: auto;
    margin-top: -35px;
}
.ct-contact-r .ct-contact-form{
    padding: 18px 30px;
}
.ct-contact-r .ct-contact-form .contact-form-p{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 18px;
}
.ct-contact-r .ct-contact-form .contact-form-p p{
    font-family: 'LINESeedJP-bold';
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    background: #004B9E;
    font-size: 18px;
    padding: 5px 20px;
    margin: 0 10px;
    border-radius: 8px;
    color: #ffffff;
}
.ct-contact-r .ct-contact-form .contact-form-p p span{
    font-family: 'LINESeedJP-bold';
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}
.ct-contact-r .ct-contact-form form{}
.ct-contact-r .ct-contact-form table{}
.ct-contact-r .ct-contact-form table tr{}
.ct-contact-r .ct-contact-form table tr td{}
.ct-contact-r .ct-contact-form table tr.form_type td span.mwform-checkbox-field{
    width: 100%;
    display: inline-block;
    margin-left: 0;
    padding: 5px 0;
}
.ct-contact-r .ct-contact-form table tr.form_type td label{}
.ct-contact-r .ct-contact-form table tr.form_type td label input{
    width: 20px;
    height: 20px;
    margin-top: -5px;
}
.ct-contact-r .ct-contact-form table tr.form_type td label span{}
.ct-contact-r .ct-contact-form table tr td, .ct-contact-r .ct-contact-form table tr th{
    padding-bottom: 15px;
}
.ct-contact-r .ct-contact-form table tr td{
    width: 70%;
    font-size: 16px;
}
.ct-contact-r .ct-contact-form table tr td span.note{}
.ct-contact-r .ct-contact-form table tr th{
    width: 20%;
    font-size: 15px;
    font-family: 'LINESeedJP-bold';
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    color: #004B9E;
}
.ct-contact-r .ct-contact-form table tr th span.required{
    font-family: 'LINESeedJP-bold';
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 13px;
    color: #FF0210;
}
.ct-contact-r .ct-contact-form table input{
    width: 100%;
    padding: 15px 7px;
    font-size: 16px;
    border: unset;
}
.ct-contact-r .ct-contact-form table input::placeholder{
    color: #C9C9C9;
    font-size: 12px;
}
.ct-contact-r .ct-contact-form .table-textarea textarea::placeholder{
    color: #C9C9C9;
    font-size: 12px;
    line-height: 1.5;
}
.ct-contact-r .ct-contact-form .table-textarea textarea{
    width: 100%;
    height: 110px;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 12px;
    border: unset;
    line-height: 1.3;
}
.ct-contact-r .ct-contact-form .form-btn .form-submit-btn {
    position: relative;
}

.ct-contact-r .ct-contact-form .form-btn .form-submit-btn::after {
    content: "▶";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #ffffff;
}
.ct-contact-p-last{
    background: #ffffff;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    font-size: 16px;
    text-align: center;
    color: #004B9E;
    padding: 5px 0;
}

.ct-title{
    text-align: center;
    padding-bottom: 45px;
}
.ct-title h2{
    font-size: 58px;
}
.ct-title h3{
    font-size: 25px;
    padding-bottom: 20px;
}
.ct2{
    padding-top: 120px;
    padding-bottom: 130px;
    color: #004B9E;
}
.ct2 .ct-title{
}
.ct2-content{}
.ct2-content .ct2-a{
    padding-bottom: 80px;
}
.ct2-content .ct2-a h3{
    font-size: 30px;
    text-align: center;
    line-height: 1.5;
    padding-bottom: 30px;
}
.ct2-content .ct2-a p{
    padding-bottom: 105px;
    text-align: center;
}
.ct2-content .ct2-a h4{font-size: 30px;text-align: center;padding-bottom: 23px;}
.ct2-content .ct2-a div{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}
.ct2-content .ct2-a div img{
    max-width: 220px;
}
.ct2-content .ct2-b{}
.ct2-content .ct2-b .ct2-box{
    display: flex;
    align-items: stretch;
    padding-bottom: 68px;
}
.ct2-content .ct2-b .ct2-box img{
    max-width: 452px;
    margin-right: 35px;
}
.ct2-content .ct2-b .ct2-box-text{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.ct2-content .ct2-b .ct2-box-text h3{
    font-size: 26px;
    line-height: 1.8;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.ct2-content .ct2-b .ct2-box-text h3 img{max-width: 113px;margin-right: 0;}
.ct2-content .ct2-b .ct2-box-text p{}

.ct3{
    color: #004B9E;
}
.ct3-content{}
.ct3-content .ct3-p{
    text-align: center;
    padding-bottom: 30px;
    font-size: 16px;
}
.ct3-content .ct3-h4{
    text-align: center;
    font-size: 16px;
}
.ct3-content .ct3-box{
    display: flex;
    flex-wrap: wrap;
    gap: 55px 60px;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 60px;
}
.ct3-content .ct3-box .ct3-card{
    width: 357px;
    padding: 20px 0;
    text-align: center;
    border: 3px solid #004B9E;
    border-radius: 20px;
}
.ct3-content .ct3-box .ct3-card h3{
    font-size: 23px;
    height: 50px;
}
.ct3-content .ct3-box .ct3-card h4.plus::after {
    content: "+";
    display: block;
    color: #000000;
}
.ct3-content .ct3-box .ct3-card h3 span{
    font-size: 19px;
    display: block;
    font-family: 'LINESeedJP-bold';
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    padding-top: 5px;
}
.ct3-content .ct3-box .ct3-card h4{
    font-size: 33px;
    padding-bottom: 5px;
    height: 70px;
    font-family: 'LINESeedJP-Ebold';
}
.ct3-content .ct3-box .ct3-card h4 span{
    font-size: 16px;
    font-family: 'LINESeedJP-bold';
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}
.ct3-content .ct3-box .ct3-card h5{
    font-size: 42px;
    color: #FF0210;
    font-family: 'LINESeedJP-Ebold';
}
.ct3-content .ct3-box .ct3-card h5 span{
    font-size: 16px;
    font-family: 'LINESeedJP-bold';
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}
.ct3-content .ct3-box .ct3-card .ct3-card-p1{
    font-size: 12px;
    background: #004B9E;
    color: #ffffff;
    display: inline-block;
    padding: 6px 10px;
    border-radius: 6px;
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 8px;
}
.ct3-content .ct3-box .ct3-card .ct3-card-p2{
    background: #FFFBEB;
    max-width: 76%;
    border-radius: 10px;
    margin: auto;
    padding: 7px;
    margin-bottom: 20px;
    color: #000000;
    line-height: 1.5;
    font-size: 12px;
}
.ct3-content .ct3-box .ct3-card img{
    padding-bottom: 10px;
    max-width: 257px;
}

.ct3-content .ct3-btn {
    position: relative;
    width: 410px;
    display: flex;
    margin: 50px auto;
    text-align: center;
    background: #FF0210;
    color: #ffffff;
    font-size: 28px;
    height: 56px;
    align-items: center;
    justify-content: center;
    font-family: 'LINESeedJP-bold';
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-weight: unset;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.ct3-content .ct3-btn::after {
    content: "▶";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #ffffff;
}

.ct-news{
    padding-bottom: 100px;
}
.ct-news .ct-title{
    color: #004B9E;
}
.ct-news .ct-news-list{
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    padding: 60px 0;
}
.ct-news .ct-news-list a.card{
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    width: 31.5%;
    display: inline-block;

    -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.ct-news .ct-news-list a.card:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}
.ct-news .ct-news-list a.card .card-thumbnails{}
.ct-news .ct-news-list a.card .card-thumbnails img{height: 260px;width: 100%;object-fit: cover;}
.ct-news .ct-news-list a.card .card-body{
    padding: 1.5rem;
}
.ct-news .ct-news-list a.card .card-body .news-time{
    color: #A6AAAE;
    margin-bottom: 10px;
    font-size: 16px;
}
.ct-news .ct-news-list a.card .card-body .news-decs{
    color: #000000;
}


.ct4{
    padding-top: 120px;
    color: #004B9E;
    padding-bottom: 200px;
}
.ct4-content{}
.ct4-content p{
    text-align: center;
    padding-bottom: 60px;
}
.ct4-content h3{
    color: #090E18;
    line-height: 1.8;
    text-align: center;
}

.table-wrap {
    width: 81%;
    margin: auto;
    overflow-x: auto;
    font-family: sans-serif;
    padding-bottom: 55px;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
.compare-table th,
.compare-table td {
    border: 1px solid #ddd;
    padding: 25px 10px;
    text-align: center;
    vertical-align: middle;
    font-size: 16px;
    color: #090E18;
    line-height: 1.5;
    font-family: "Noto Sans JP", sans-serif;
}
.compare-table tr:first-child th {
    border-top: none;
}

.compare-table tr:last-child td {
}

.compare-table tr th:first-child,
.compare-table tr td:first-child {
    border-left: none;
}

.compare-table tr th:last-child,
.compare-table tr td:last-child {
    border-right: none;
    font-weight: bold;
}

.compare-table thead th {
    background: #fff;
    font-weight: bold;
    border-bottom: 5px solid #004B9E;
    font-size: 23px;
}

.compare-table td:first-child,
.compare-table th:first-child {
    background: #F8F8F8;
    font-weight: bold;
}

.compare-table td:last-child {
}

.highlight {
    background: #F2F8FF;
}

.compare-table th.highlight,
.compare-table td.highlight {
    border-left: 5px solid #004B9E;
    border-right: 5px solid #004B9E;
}

.compare-table thead th.highlight {
    border-top: 4px solid #1e5aa5;
    font-size: 25px;
    font-weight: bold;
    color: #004B9E;
    background: #F2F8FF;
}

.compare-table tbody tr:last-child td.highlight {
    border-bottom: 4px solid #1e5aa5;
}

.ct5{
    background: #F7FBFF;
    padding-top: 150px;
    padding-bottom: 100px;
}
.ct5-content {
    padding-top: 30px;
    font-family: Arial, sans-serif;
}
.ct5 .ct-title{
    color: #004B9E;
}
.ct5-content .timeline {
    position: relative;
    max-width: 978px;
    margin: auto;
}

.ct5-content .timeline::before {
    content: "";
    position: absolute;
    left: 40px;
    top: 0;
    width: 2px;
    height: 97%;
    background: #FFD100;
}

.ct5-content .item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 130px;
    position: relative;
}

.ct5-content .circle {
    width: 87px;
    height: 87px;
    background: #FFD100;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    flex-shrink: 0;
}

.ct5-content .content {
    margin-left: 80px;
}

.ct5-content .content h3 {
    color: #004B9E;
    font-size: 26px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.ct5-content .content h3 img{
    max-width: 92px;
    margin-right: 15px;
}

.ct5-content .content p {
    color: #090E18;
}

.ct6{
    padding: 240px 0 175px 0;
}
.ct6 .ct-title{
    color: #004B9E;
    background: #ffffff;
    width: 35%;
    margin: auto;
    margin-top: -75px;
    padding-bottom: 70px;
}
.ct6-content{
    border: 3px solid #004B9E;
    border-radius: 20px;
    padding: 0 100px;
}
.qa-box {padding-bottom: 0;}

/* Question */
.qa-question {
    display: inline-flex;
    align-items: center;
    background: #D7E5F4;
    padding: 10px 17px;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    margin-bottom: 20px;
    width: 62%;
}
.qa-question::before{
    content: "+";
    color: #004B9E;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: all 0.35s ease;
    font-size: 30px;
    font-weight: 300;
    line-height: 1;
}
.qa-question.open::before{
    content: "-";
    transform: translateY(-50%) rotate(180deg);
}

.qa-question::after {
    content: "";
    position: absolute;
    bottom: -19px;
    left: 65px;

    border-width: 10px;
    border-style: solid;
    border-color: #D7E5F4 transparent transparent transparent;

    opacity: 0;
    transition: opacity 0.3s ease;
}
.qa-question.open::after{
    opacity: 1;
}

.qa-question .icon {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 35px;
    color: #004B9E;
    margin-right: 16px;
}

.qa-question p {
    margin: 0;
    color: #004B9E;
    font-family: "Noto Sans JP", sans-serif;
}

/* Answer */
.qa-answer {
    display: flex;
    background: #FFD100;
    padding: 18px 45px;
    border-radius: 16px;
    align-items: center;
    margin-bottom: 65px;
    transition: all 0.4s ease;
}
.qa-answer.closed{
    margin-bottom: 0;
}

.qa-answer .label {
    font-family: "Raleway", sans-serif;
    font-size: 95px;
    font-weight: 600;
    color: #004B9E;
    margin-right: 70px;
    line-height: 1;
    /*overflow: hidden;*/
    transition: all 0.4s ease;
}

.qa-answer .text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 26px;
    color: #004B9E;
    font-weight: 600;
    line-height: 1.6;
}

.ct7{
    background: #D7E5F4;
    padding: 115px 0;
}
.ct7 .ct-contact-l .ct-contact-l-p1{
    color: #004B9E;
}
.ct7 .ct-contact-l .ct-contact-l-p2{
    color: #004B9E;
}
.ct7 .ct-contact-l a{
    color: #004B9E;
    border-color: #004B9E;
    background: #ffffff;
}
.ct7 .ct-contact-r{
    border-color: #004B9E;
}
.ct7 .ct-contact-p-last{
    background: #004B9E;
    color: #ffffff;
}
.ct8{
    padding-top: 20px;
}
.ct8 .ct8-store{
    background: #F8F8F8;
    margin-bottom: 20px;
}
.ct8 .ct8-store .ct8-dflex{display: flex;align-items: center;background: #ffffff;}
.ct8 .ct8-store img{
    height: 228px;
}
.ct8 .ct8-store iframe{
    height: 228px;
    width: 326px;
}
.ct8 .store-info{
    padding-left: 37px;
}
.ct8 .store-info p{
    font-size: 18px;
    padding-bottom: 25px;
}
.ct8 .store-info h3{
    font-size: 26px;
    color: #004B9E;
    padding-bottom: 15px;
}
.ct8 .store-info a{
    border: 1px solid #707070;
    color: #000000;
    padding: 5px 20px;
}
footer{
    background: #D7E5F4;
    padding-top: 85px;
}
.footer{
    background: #004B9E;
    padding-top: 80px;
    padding-bottom: 500px;
    text-align: center;
}
.footer img{
    max-width: 285px;
}


/*page news*/
.cardtype__article, .sidelong__article {
    animation: fadeIn 1.1s ease 0s 1 normal;
}
.cardtype__article {
    position: relative;
    width: 100%;
    margin: 0 0 25px;
    border-radius: 2px;
    background: #fff;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.12), 0 2px 3px 0 rgba(0, 0, 0, 0.22);
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.cardtype__link {
    display: block;
    color: #555;
    text-decoration: none;
    cursor: pointer;
    padding-bottom: 25px;
}
.cardtype__img {
    margin: 0;
    overflow: hidden;
    position: relative;
    height: 0;
    padding-bottom: 57.7%;
}
.cardtype__img img {
    border-radius: 2px 2px 0 0;
    width: 100%;
    height: auto;
}
.cardtype time {
    display: block;
    margin: 13px 13px 8px;
    color: #b5b5b5;
    font-size: 13px;
    /*font-weight: bold;*/
}
.entry-time.pubdate i {
    padding-right: 5px;
}
.cardtype h2 {
    margin: 8px 13px 0;
    font-size: 17px;
    font-weight: normal;
}
.cat-name {
    display: inline-block;
    /*overflow: hidden;*/
    position: absolute;
    top: 13px;
    left: 13px;
}
.cat-name a {
    /* height: 22px; */
    margin: 0;
    margin-right: 5px;
    padding: 2px 10px 4px;
    border-radius: 14px;
    color: #fff;
    font-size: 12px;
    /* font-weight: bold; */
    vertical-align: middle;
    /* line-height: 22px; */
    background-color: #40bc01;
}
.cat-name ul{
    display: flex;
    flex-wrap: wrap;
}
.cardtype__article:hover {
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

/*
 * è¨˜äº‹ä¸€è¦§ã®ãƒšãƒ¼ã‚¸ãƒã‚¤ã‚·ãƒ§ãƒ³
 */
.pagination-news,
.wp-prev-next {
    margin: 1.5em 0;
}
.pagination-news {
    display: block;
    clear: both;
    padding: 1.5em 0 0;
    border-radius: 3px;
    text-align: center;
}
.pagination-news li {
    display: inline-block;
    overflow: hidden;
    margin: 3.5px;
    padding: 0;
    text-align: center;
}
.pagination-news a{
    color: #40bc01;
}
.pagination-news a:hover{
    color: #fff;
    background: #936a3a;
}
.pagination-news a,
.pagination-news span {
    display: inline-block;
    width: 46px;
    height: 46px;
    margin: 0;
    border-radius: 50%;
    background: #fff;
    font-size: 17.5px;
    font-weight: bold;
    text-decoration: none;
    line-height: 46px;
}
.pagination-news .active {
    color: #fff;
    cursor: default;
}
.pagination-news .active span {
    background-color: #40bc01;
}
.page-numbers.dots {
    width: auto;
    padding: 0;
    background: transparent;
}
.wp-prev-next .prev-link {
    float: left;
}
.wp-prev-next .next-link {
    float: right;
}

/*sidebar*/
.sidebar .sidebar-box{
    border-radius: 4px;
    overflow: hidden;
    border: solid 1px rgba(0, 0, 0, .08);
    margin: 0 0 2.5em;
}
.sidebar ul li{
    font-size: 16px;
}
.sidebar .sidebar-box h2{
    font-size: 1.2em;
    color: #ffffff;
    background-color: #004B9E;
    padding: 10px;
    font-weight: unset;
}
.sidebar .sidebar-box h2 i{
    padding-right: 5px;
}
.sidebar ul{
    margin-top: 0;
    margin-bottom: 0;
    padding: 8px 10px;
}
.sidebar ul.news-post li:hover  img{
    transform: scale(1.1);
}
.sidebar ul.news-post li img{
    display: table-cell;
    width: 80px;
    height: 80px;
    margin-right: 8px;
    vertical-align: middle;
    transition: transform 0.6s ease-in-out;
    object-fit: cover;
}
.sidebar ul.news-post li h3{
    display: table-cell;
    width: 180px;
    width: calc(100% - 88px);
    font-size: 0.9em;
    vertical-align: middle;
    line-height: 1.5;
    font-weight: normal;
}
.sidebar ul li a{
    color: #004B9E;
    padding: 10px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sidebar ul li a:hover{
    background-color: #D8EBFF;
    /*font-weight: bold;*/
    transition: 0.3s ease-in-out;
}
.sidebar ul li a.active i{
    display: none;
}
.sidebar ul li a:hover i{
    transform: scale(1.1);
    transform: translateX(8px);
}
.sidebar ul li a.active{
    /*background-color: #D8EBFF;*/
    padding: 10px;
}
input#search {
    width: 100%;
    padding: 12.5px;
    font-size: 16px;
    padding-right: 48px;
    border: solid 1px #ececec;
    background: #fff;
    outline: none;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15), 0 3px 3px -2px rgba(0, 0, 0, 0.15);
    transition: 0.3s ease-in-out;
    -webkit-appearance: none;
}
input#search:focus {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}
#searchform{
    margin: 0 0 2.5em;
}
#searchform div {
    position: relative;
}
#searchsubmit {
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 45px;
    padding: 0;
    border: none;
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
    border-radius: 0 3px 3px 0;
    color: #fff;
    font-size: 20px;
    text-align: center;
    vertical-align: middle;
    line-height: 44px;
    background-color: #004B9E;
    cursor: pointer;
}
#searchsubmit i {
    transition: 0.4s ease-in-out;
    line-height: 44px;
}
/*end sidebar*/
.single{
    border: solid 1px rgba(0, 0, 0, .08);
}
.single article.post {
    margin: 25px 40px 10px;
}
.single .entry-title {
    font-size: 24px;
    margin-top: 20px;
    padding: 0;
    line-height: 1.6;
    color: #444;
    font-weight: normal;
}
.entry-meta {
    margin: 15px 0 0;
    font-size: 15px;
    letter-spacing: 0.3px;
    color: #a5aaaf;
    line-height: 1.5;
}
.entry-meta .posted-on a{
    color: #a5aaaf;
}
.entry-meta i{
    padding-right: 5px;
}
.entry-content {
    padding: 15px 0;
    -moz-hyphens:auto;
    -ms-hyphens:auto;
    -webkit-hyphens:auto;
    hyphens:auto;
    word-wrap:break-word;
    line-height: 1.83;
}
.entry-content p {
    line-height: 1.93;
    font-size: 16px;
}
.entry-footer {
    padding: 0 40px;
    margin: 2em 0 0;
}
/*
 * ã‚·ã‚§ã‚¢ãƒœã‚¿ãƒ³
 */
.sns-btn {
    margin: 0 auto;
    text-align: center;
}
.article-header .sns-btn:not(.sns-dif) {
    margin-top: 30px;
}
.sns-btn__item {
    display: inline-block;
    position: relative;
}
.sns-btn__item a {
    display: inline-block;
    border-radius: 10px;
    background: #fff;
    font-size: 12px;
    text-align: center;
    vertical-align: middle;
    transition: 0.3s ease-in-out;
}
.sns-btn__item a:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}
.sns-btn__item i {
    display: block;
    width: auto;
    height: 32px;
    font-size: 32px;
    line-height: 32px;
}
.sns-btn__item img {
    display: block;
    height: 32px;
    width: 32px;
    padding: 1px;
}
.tw a,
.tw .scc {
    color: #3ab4ff;
}
.fb a,
.fb .scc {
    color: #3b8df7;
}
.pkt a,
.pkt .scc {
    color: #ff7b7b;
}
.hatebu a,
.hatebu .scc {
    color: #45b5f7;
}
.line a {
    color: #59d869;
}
.fa-hatebu:before {
    position: relative;
    top: -0.1em;
    font-family: "Quicksand", "Arial", sans-serif;
    font-size: 1.11em;
    font-weight: bold;
    line-height: 32px;
    content: "B!";
    white-space: nowrap;
}

/*è¨˜äº‹ä¸‹éƒ¨ã®ã‚·ã‚§ã‚¢ãƒœã‚¿ãƒ³*/
.sns-btn__item {
    width: 17.5%;
    margin: 0 0.5%;
}
.sns-btn__item a:hover {
    opacity: 0.6;
    box-shadow: none;
}
.sns-btn__title {
    display: inline-block;
    position: relative;
    padding: 0 25px;
    color: #cccfd7;
    font-size: 22px;
    /*font-weight: bold;*/
    line-height: 1;
    letter-spacing: 1px;
}
.sns-btn__title:before,
.sns-btn__title:after {
    display: inline-block;
    position: absolute;
    top: 50%;
    width: 20px;
    height: 3px;
    border-radius: 3px;
    background-color: #d8dae1;
    content: "";
}
.sns-btn__title:before {
    left: 0;
    -webkit-transform: rotate(50deg);
    transform: rotate(50deg);
}
.sns-btn__title:after {
    right: 0;
    -webkit-transform: rotate(-50deg);
    transform: rotate(-50deg);
}
.share_txt {
    font-weight: bold;
}
.sns-btn__item {
    width: 14%;
    margin: 0;
}
.sns-btn ul{
    margin: 1em 0;
}

.footer-meta {
    padding: 20px 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
}
.footer-meta ul{
    display: flex;
    justify-content: flex-start;
}
.footer-meta ul li a {
    color: #ffffff;
    padding: 0px 10px 1px;
    margin-left: 5px;
    border-radius: 14px;
    background-color: #004B9E75;
}
.footer-meta ul li a:hover {
    text-decoration: none;
    background: #004B9E;
}
.content-info .nav-links{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 25px 0;
}
.content-info .nav-links .nav-previous a{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}
.content-info .nav-links .nav-next a{
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}
.content-info .nav-links .nav-subtitle {
    margin: 0;
    padding: 10px 4px;
    color: rgba(0, 0, 0, 0.52);
    font-size: 1em;
    /*font-weight: bold;*/
}
.content-info .nav-links .nav-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 300px;
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease-in-out;
}
.content-info .nav-links .nav-box:hover{
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.content-info .nav-links .nav-box img {
    display: table-cell;
    width: 100px;
    height: 100px;
    padding: 10px 0 10px 10px;
    vertical-align: middle;
}
.content-info .nav-links .nav-next .nav-box img {
    padding: 10px 10px 10px 0;
}
.content-info .nav-links .nav-box .nav-title {
    display: table-cell;
    width: calc(100% - 95px);
    padding: 10px;
    font-size: 0.9em;
    vertical-align: middle;
    line-height: 1.4;
    color: #004B9E;
}
#relatedposttags ul {
    margin: 0;
    padding: 15px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -moz-box;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
#relatedposttags li {
    width: 31%;
    margin: 1em 0;
    display: block;
    float: left;
    text-align: left;
}
#relatedposttags li a {
    display: block;
    color: #333;
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
#relatedposttags ul li a img {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
    width: 100%;
    height: 125px;
    object-fit: cover;
}
#relatedposttags h2 {
    padding: 10px 0 0;
    line-height: 1.5;
    color: #333;
}
#relatedposttags li a:hover img {
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.25);
    transform: translateY(-4px);
}

/*ã“ã®è¨˜äº‹ã‚’æ›¸ã„ãŸäºº*/
.author-info {
    background: #004B9E;
    position: relative;
    padding: 30px 40px;
}
.author-info__inner {
    position: relative;
}
.author-info__inner .tb {
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 5px 20px -5px rgba(105, 115, 131, 0.35);
}
.author-info__inner .tb-left {
    padding: 20px 15px 5px;
}
.author_label span {
    display: inline-block;
    position: relative;
    min-width: 120px;
    max-width: 100%;
    margin: 0 0 15px;
    padding: 6px 12px;
    border-radius: 20px;
    background: #eaedf2;
    color: #555;
    font-size: 16px;
    /*font-weight: bold;*/
}
.author_label span:before {
    position: absolute;
    top: 100%;
    left: 33px;
    border: 13px solid transparent;
    border-top: solid 10px #eaedf2;
    content: "";
}
.author_img {
    display: inline-block;
    width: 90px;
    height: 90px;
    margin: 0;
    vertical-align: middle;
}
.author_img img {
    border: solid 3px #dfe2e8;
    border-radius: 50%;
    max-width: 100%;
    height: auto;
}
.author-info__inner .tb-left .aut {
    display: inline-block;
    width: calc(100% - 95px);
    margin: 0;
    padding-left: 10px;
    vertical-align: middle;
    line-height: 1.3;
}
.author-info__inner .tb-left dt {
    font-size: 19px;
    font-weight: bold;
}
.author-info__inner .tb-left dd {
    padding-top: 4px;
    color: #686868;
    font-size: 15px;
    font-weight: bold;
}
.author-info__inner .tb-right {
    padding: 15px;
    font-size: 0.95em;
    line-height: 1.7;
    color: #252525;
}
.search-title{
    font-size: 1.5em;
    margin: 0 0 1em;
}
.search-number{
    font-size: 15px;
    margin-top: 1em;
}
.search-number span{
    color: red;
}
.search-title .fa-search {
    width: 2em;
    height: 2em;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    line-height: 2em;
    background: #5f96e2;
}
#breadcrumb {
    margin: 0;
}
#breadcrumb li {
    display: inline;
    list-style: none;
    color: gray;
    font-size: 0.92em;
}
#breadcrumb li a{
    color: #004B9E;
}
#breadcrumb li i{
    padding-right: 5px;
}
#breadcrumb li a{
    padding-right: 5px;
}
#breadcrumb ul li:nth-child(n+1) {
    color: rgba(0, 0, 0, 0.2);
}
.single-avatar img{
    width: 100%;
    height: auto;
    padding-top: 25px;
}
select#catalog{
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAHCAYAAADXhRcnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEOEZCMjYxMEYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEOEZCMjYxMUYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ4RkIyNjBFRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ4RkIyNjBGRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Vxkp9gAAAI9JREFUeNpidHFxucHAwKAOxE+AmJmBMPgLxDJAfJMFSKwD4kqoAClgA+P///8ZXF1dPaCGcBKh6QcQB+3evXs7WDMIAA2QB1I7gFgDj0aQFz2BGh+AOEwwUaDAQyBlCMR7cGjcC5KHaQQBuM3IAOiKTiBVhiTUDdRUhq4Oq2aoAelAahIQ5wM1zsCmBiDAADhYMJXVZ9u9AAAAAElFTkSuQmCC);
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 97.5% center;
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    height: 45px;
    margin-bottom: 14px;
    padding: 0 12px;
    border: 0;
    border-radius: 3px;
    box-shadow: none;
    color: #5c6b80;
    font-size: 1em;
    vertical-align: middle;
    line-height: 45px;
    transition: background-color 0.24s ease-in-out;
}
.views{
    display: block;
    color: #b7b7b7;
    font-size: 13px;
    font-weight: 500;
}
.top-post li {
    position: relative;
}
.top-post li .rank {
    display: inline-block;
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    line-height: 25px;
    background-color: #5f96e2;
}
.top-post li:nth-child(n + 4) .rank {
    background: #f3f3f3;
    color: #9a9a9a;
}


.sns-dif {
    position: relative;
}
.sns-dif .share_txt {
    display: none;
}
.sns-dif ul {
    margin: 0;
    padding: 14px 0 16px;
    background: #eaedf2;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
}
.sns-dif ul li {
    width: auto;
    margin: 0;
}
.sns-dif ul li a {
    position: relative;
    width: 52px;
    height: 52px;
    margin: 3.5px;
    padding: 0;
    box-shadow: 0 7px 15px -4px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
    transition-timing-function: cubic-bezier(0.51, 0.1, 0.36, 1.68);
}
.sns-dif ul li a:hover {
    opacity: 1;
    box-shadow: 0 14px 20px -4px rgba(0, 0, 0, 0.25);
    transform: scale(1.05) translateY(-2px);
}
.sns-dif ul li i {
    font-size: 30px;
    line-height: 52px;
    height: 52px;
}
.sns-dif ul li .fa-line {
    font-size: 32px;
}
.sns-dif .sns-btn__item img {
    margin: 11px auto 0;
}
.sns-dif .fa-hatebu:before {
    top: 0;
}
/*è¨˜äº‹ä¸Šéƒ¨ã®å††å½¢FABå½¢å¼ã‚·ã‚§ã‚¢ãƒœã‚¿ãƒ³*/
#fab {
    display: none;
}
.fab-btn {
    display: block;
    position: relative;
    margin: -25px 15px 0 auto;
    width: 140px;
    z-index: 2;
    outline: none;
    cursor: pointer;
    border-radius: 33px;
    font-size: 19px;
    text-align: center;
    letter-spacing: 1px;
    background-color: #fff;
    box-shadow: 0 5px 18px -2px rgba(0, 0, 0, 0.15);
    transition: 0.3s ease-in-out;
    transition-delay: 0.1s;
    animation: animScale 3.5s ease-out;
}
.fab-btn,
.fab-btn i {
    height: 50px;
    line-height: 50px;
    color: #40bc01;
}
.fab-btn i:after {
    content: "SHARE";
    padding-left: 10px;
    font-family: "Quicksand", "Avenir", "Arial";
    font-weight: 500;
    color: #555;
}
.fab-btn:hover {
    box-shadow: 0 12px 45px -9px rgba(0, 0, 0, 0.23);
}
#fab:checked ~ .fab-btn {
    background: #f0f0f0;
    opacity: 0;
    -webkit-transform: translate(-150px, -150px) scale3d(4, 5, 1);
    transform: translate(-150px, -150px) scale3d(4, 5, 1);
}
.nothumb .fab-btn {
    margin: -35px 15px 0 auto;
}

.nothumb .fab-btn {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 400px) {
    .nothumb .fab-btn {
        margin: 15px;
        width: auto;
        animation: none;
    }
    .nothumb .fab-btn,
    .nothumb .fab-btn i {
        animation: none;
    }
}
#fab:checked ~ .fab-btn i {
    display: none;
}
#fab__contents {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10px;
    background: #eaedf2;
}
#fab:checked ~ #fab__contents {
    display: block;
    animation: coverIn 0.7s ease 0s 1 normal;
}

@keyframes coverIn {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.fab__contents-main {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: #e9edf2;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.fab__contents_title {
    margin: 0;
    font-size: 30px;
    text-align: center;
}
.fab__contents_img {
    overflow: hidden;
    position: relative;
    width: 300px;
    height: 145px;
    margin: 10px auto;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    color: #fff;
    font-weight: bold;
}
.fab__contents_img img{
    width: 100%;
    height: auto;
}
.close {
    display: none;
    position: absolute;
    z-index: 999999;
    top: 0;
    right: 0;
    padding: 0 15px 10px;
    cursor: pointer;
    -webkit-animation: animScale 2s ease 0s 1 normal;
    animation: animScale 2s ease 0s 1 normal;
}
.close span {
    display: inline-block;
    position: relative;
    width: 3px;
    height: 45px;
    margin: 0 20px 0 7px;
    padding: 0;
    background: #8c9196;
    transition: 0.3s ease-in-out;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.close span:before {
    display: block;
    position: absolute;
    top: 50%;
    left: -20px;
    width: 45px;
    height: 3px;
    margin-top: -2px;
    background: #8c9196;
    content: "";
}
#fab:checked ~ #fab__contents .close {
    display: inline-block;
}
.close span:hover {
    transform: rotate(45deg) scale(1.1);
}
.fab__close-cover {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    padding: 10px;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
}
/*END FABã‚·ã‚§ã‚¢ãƒœã‚¿ãƒ³*/

/*Follow Me*/
.follow_btn {
    margin-top: 15px;
}
.follow_btn a {
    display: inline-block;
    margin: 15px 10px 0 0;
    color: #919191;
    text-align: center;
    font-size: 11px;
}
.follow_btn a:hover {
    text-decoration: none;
    transform: translateY(-4px);
    transition: 0.3s ease-in-out;
}
.follow_btn a:before {
    display: block;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border-radius: 12px;
    color: #fff;
    font-family: FontAwesome;
    font-size: 35px;
    text-align: center;
    line-height: 60px;
}
.fa5 .follow_btn a:before {
    font-family: "Font Awesome 5 Brands";
}
.follow_btn .Twitter:before {
    background: #3ab4ff;
    content: "\f099";
}
.follow_btn .Facebook:before {
    background: #4f96f6;
    content: "\f09a";
}
.follow_btn .Instagram:before,
.profile-sns li .fa-instagram {
    background: url("library/images/insta.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    content: "\f16d";
}
.follow_btn .YouTube:before {
    background: #f0504f;
    content: "\f16a";
}
.fa5 .follow_btn .YouTube:before {
    content: "\f167";
}
.follow_btn .Feedly:before {
    background: #72d865;
    content: "\f09e";
}
.follow_btn .Website:before {
    background: #ffb35d;
    content: "\f0ac";
}
.follow_btn .LINE:before {
    background: #59d869;
    content: "\f3c0";
}
.fa4 .follow_btn .LINE:before {
    content: "\f075";
}
.fa5 .follow_btn .Feedly:before,
.fa5 .follow_btn .Website:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}
.mw_wp_form .error{
    display: inline-block;
}

@media screen and (min-width:737px){
    .is-sp{
        display: none !important;
    }
    .sidebar {
        float: left;
        width: 31%;
        padding-right: 0.75em;
    }
    .inner-content{
        padding-top: 2em;
        width: 1180px;
        margin: 0 auto;
    }
    .content-info {
        float: left;
        width: 69%;
        padding-right: 30px;
    }
    .info-list{
        display: -webkit-flex;
        display: -ms-flexbox;
        display: -moz-box;
        display: flex;
        flex-direction: row;
        -webkit-flex-direction: row;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .cardtype__article {
        width: 45%;
        margin: 0 4% 25px 0;
    }
    .cardtype__link {
        padding-bottom: 25px;
    }
    .cardtype time {
        margin: 13px 13px 8px;
    }
    .cardtype h2 {
        margin: 8px 13px 0;
        font-size: 18px;
    }

    /*ã“ã®è¨˜äº‹ã‚’æ›¸ã„ãŸäºº*/
    .author-info {
        padding: 30px 40px;
    }

    .tb {
        display: table;
        width: 100%;
    }
    .tb-left,
    .tb-right {
        display: table-cell;
        vertical-align: middle;
    }
    .author-info__inner .tb-left {
        width: 220px;
        border-right: 2px #eaedf2 dashed;
        text-align: center;
    }
    .author-info__inner .tb-right {
        width: calc(100% - 220px);
        padding: 20px;
    }
    .author_img {
        display: inline-block;
    }
    .author-info__inner .tb-left .aut {
        display: block;
        width: 100%;
        padding: 15px 0;
    }
    .author_label span {
        z-index: 2;
        margin-bottom: 20px;
        font-size: 14px;
    }
    .author_label span:before {
        z-index: -1;
        top: calc(100% - 15px);
        left: 50px;
        border: 15px solid transparent;
        border-top: solid 30px #eaedf2;
        transform: rotate(-40deg);
    }
    .follow_btn {
        margin: 0 8px 5px 0;
    }
    .follow_btn a:before {
        width: 50px;
        height: 50px;
        font-size: 33px;
        line-height: 50px;
    }
    #relatedposttags li:nth-child(3n + 2) {
        margin: 1em 3.5%;
    }

    /*FAB*/
    #fab:checked ~ .fab-btn {
        opacity: 0;
        -webkit-transform: translate(-50px, -50px) scale3d(3, 3, 1);
        transform: translate(-50px, -50px) scale3d(3, 3, 1);
    }
    #fab__contents {
        top: 50%;
        left: 50%;
        width: 440px;
        height: auto;
        padding: 30px 10px;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    #fab:checked ~ .fab__close-cover {
        display: block;
        width: 100%;
        height: 100%;
        opacity: 1;
        transition: 0.5s ease-in-out;
    }
    .close {
        padding: 20px 15px;
    }
}

@media screen and (max-width:1800px){
    nav.header{
        height: 75px;
    }
    nav.header .logo p {
        font-size: 6px;
        padding-bottom: 12px;
    }
    .menu-center a {
        margin-right: 30px;
    }
    .menu-right .box-btn-l div {
        padding: 5px 0;
    }
    nav.header .logo {
        padding-left: 20px;
        width: 29%;
    }
    nav.header .logo img {
        height: 28px;
    }
    #primary {
        padding-top: 75px;
    }
    .mv .mv-content img {
        max-width: 990px;
    }
    .line-btn-fixed {
        top: 75px;
        width: 50px;
    }
}
@media screen and (max-width:1200px){
    .inner{
        max-width: 990px;
        margin: auto;
    }
}
@media screen and (max-width:737px){
    p{
        font-size: 3.6vw;
    }
    .is-pc{
        display: none !important;
    }
    .inner{
        max-width: 93%;
    }
    nav.header{
        height: auto;
    }
    nav.header .logo {
        padding-left: 4vw;
        width: auto;
        height: auto;
    }
    nav.header .logo img {
        height: 5vw;
    }
    .menu-right {
        width: auto;
        height: 100%;
    }
    #primary {
        padding-top: 0;
    }
    .mv .mv-content img {
        width: 184%;
        max-width: none;
        margin-left: 50%;
        transform: translateX(-50%);
    }
    .box-mv h2 {
        position: absolute;
        top: 3vw;
        left: 3vw;
        font-size: 4vw;
        letter-spacing: 2px;
        line-height: 1.5;
    }
    .content-info{
        width: 92%;
        margin: auto;
        margin-top: 2em;
        padding-bottom: 2em;

    }
    .mv{
        padding-bottom: 30vw;
    }
    .ct1 {
        padding-top: 10vw;
        padding-bottom: 15vw;
    }
    .ct2 {
        padding-top: 10vw;
        padding-bottom: 10vw;
    }.ct-title {
         text-align: center;
         padding-bottom: 6vw;
     }
    .ct2 .ct-title img{
        width: 69%;
    }
    .ct2-content .ct2-a h3 {
        font-size: 4.5vw;
        padding-bottom: 7vw;
    }
    .ct2-content .ct2-a p {
        padding-bottom: 15vw;
    }
    .ct2-content .ct2-a h4 {
        font-size: 4vw;
        padding-bottom: 5vw;
    }
    .ct2-content .ct2-a {
        padding-bottom: 0;
    }
    .ct2-content .ct2-b .ct2-box {
        padding-bottom: 13vw;
        align-items: flex-start;
        flex-direction: column;
    }
    .ct2-content .ct2-a div img {
        max-width: 25vw;
        margin-bottom: 10vw;
    }
    .ct2-content .ct2-b .ct2-box img{
        width: 100%;
    }
    .ct2-content .ct2-b .ct2-box-text h3 {
        font-size: 4.6vw;
        padding-bottom: 2vw;
    }
    .ct2-content .ct2-b .ct2-box-text h3 img {
        max-width: 25vw;
        margin-right: 0;
        margin-top: 3vw;
    }
    .ct2-content .ct2-b .ct2-box-text {
        padding-top: 3vw;
    }
    .ct-title h3 {
        font-size: 4.6vw;
        padding-bottom: 2vw;
    }
    .ct-title h2 {
        font-size: 11vw;
    }
    .ct3-content .ct3-p {
        padding-bottom: 8vw;
        font-size: 3.6vw;
    }
    .ct3-content .ct3-box {
        gap: 6.6vw 0;
        padding-top: 0;
        padding-bottom: 10vw;
    }
    .ct3-content .ct3-box .ct3-card {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .ct3-content .ct3-box .ct3-card h3 {
        font-size: 6vw;
        height: 13vw;
    }
    .ct3-content .ct3-box .ct3-card img {
        padding-bottom: 3vw;
        max-width: 55%;
    }
    .ct3-content .ct3-box .ct3-card .ct3-card-p1 {
        font-size: 3vw;
    }
    .ct3-content .ct3-box .ct3-card h4 {
        font-size: 8vw;
        padding-bottom: 2vw;
        height: auto;
    }
    .ct3-content .ct3-box .ct3-card .ct3-card-p2 {
        max-width: 100%;
        width: 65%;
        margin-bottom: 5vw;
    }
    .ct3-content .ct3-box .ct3-card h5 {
        font-size: 9vw;
    }
    .ct3-content .ct3-box .ct3-card h5 span {
        font-size: 3.5vw;
    }
    .ct3-content .ct3-h4 {
        text-align: center;
        font-size: 4vw;
        padding-bottom: 1vw;
    }
    .ct4 {
        padding-top: 15vw;
        padding-bottom: 15vw;
    }
    .ct4-content p {
        padding-bottom: 5vw;
    }
    .table-wrap {
        width: 100%;
        padding-bottom: 7vw;
    }
    .compare-table th, .compare-table td {
        padding: 1.5vw 1vw;
        font-size: 3.5vw;
    }
    .compare-table thead th {
        border-bottom: 3px solid #004B9E;
    }
    .compare-table th.highlight, .compare-table td.highlight {
        border-left: 3px solid #004B9E;
        border-right: 3px solid #004B9E;
    }
    .ct5 {
        padding-top: 15vw;
        padding-bottom: 5vw;
    }
    .ct5-content {
        padding: 5vw 3vw 0 3vw;
    }
    .ct5-content .content {
        margin-left: 5vw;
        margin-top: -5vw;
    }
    .ct5-content .circle {
        width: 13.6vw;
        height: 13.6vw;
        font-size: 6vw;
    }
    .ct5-content .content h3 {
        font-size: 5vw;
        line-height: 1.8;
        margin-bottom: 3vw;
    }
    .ct5-content .item {
        margin-bottom: 15vw;
    }
    .ct5-content .timeline::before {
        left: 6.5vw;
        height: 94%;
    }
    .ct5-content .content h3 img {
        max-width: 23vw;
        margin-right: 5vw;
    }
    .ct6 {
        padding: 25vw 0 15vw 0;
    }
    .ct6 .ct-title {
        width: 50%;
        margin-top: -13vw;
    }

    .ct6-content{
        padding: 0 3vw;
    }
    .qa-question {
        padding: 2vw 6vw 2vw 2vw;
        border-radius: 2vw;
        width: 100%;
    }
    .qa-question .icon {
        font-size: 8vw;
    }
    .qa-answer {
        padding: 2vw;
        border-radius: 2vw;
        align-items: flex-start;
        margin-bottom: 10vw;
    }
    .qa-answer .label {
        font-size: 8vw;
        margin-right: 4vw;
    }
    .qa-answer .text {
        font-size: 4vw;
    }
    .qa-box {
        /*padding-bottom: 10vw;*/
    }
    .ct7 {
        padding: 10vw 0 15vw 0;
    }
    .ct8 .ct8-store {
        margin-bottom: 10vw;
    }
    .ct8 .ct8-store .ct8-dflex {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: flex-start;
        max-width: 100%;
    }
    .ct8 .ct8-store img {
        width: 50%;
        height: 36vw;
    }
    .ct8 .ct8-store iframe {
        height: 36vw;
        width: 50%;
    }
    .ct8 .store-info {
        padding-left: 0;
        width: 93%;
        margin: auto;
        padding-top: 5vw;
    }
    .ct8 .store-info h3 {
        font-size: 5vw;
        padding-bottom: 2vw;
    }
    .ct8 .store-info p {
        font-size: 3.5vw;
        padding-bottom: 5vw;
    }
    .ct8 .store-info a {
        padding: 1vw 3vw;
        font-size: 3.6vw;
    }




    .sidebar{
        width: 92%;
        margin: auto;
    }
    .content-info-single{
        width: 100%;
        margin-top: 0;
    }
    .single .entry-title{
        padding: 0 15px;
        font-size: 5vw;
    }
    .entry-meta {
        margin: 15px 0 0;
        padding: 0 15px;
        font-size: 3vw;
        letter-spacing: 0.3px;
        color: #a5aaaf;
    }

    #breadcrumb {
        padding: 13px 15px;
        background: #f4f4f4;
    }
    .single article.post{
        margin: 0;
    }
    .entry-content{
        padding: 10px 15px 0;
    }
    .sns-btn__item {
        width: 17.5%;
        margin: 0 0.5%;
    }
    .entry-footer{
        padding: 0 10px;
    }
    .footer-meta{
        justify-content: flex-start;
    }
    #relatedposttags ul {
        padding: 10px 10px 20px;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        -webkit-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
    #relatedposttags ul li {
        min-width: 240px;
        max-width: 300px;
        margin: 8px;
        border-radius: 3px;
    }
    .author-info {
        padding: 25px 15px;
    }
    .content-info .nav-links{
        flex-direction: column;
        padding: 15px;
    }
    .nav-previous{
        width: 100%;
        padding-bottom: 20px;
    }
    .nav-links .nav-next{
        width: 100%;
    }
    .content-info .nav-links .nav-box{
        width: 100%;
    }
    footer {
        padding-top: 15vw;
    }
    .footer {
        background: #004B9E;
        padding-top: 8vw;
        padding-bottom: 75vw;
    }
    .footer img {
        max-width: 45%;
    }

    .footer-fixed{
        position: fixed;
        z-index: 100;
        bottom: 0;
        width: 100%;
        background: #ffffff;
        border: 2px solid #ffffff;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        transition: all 0.4s ease;
    }
    .footer-fixed.hide{
        opacity: 0;
        transform: translateY(100%);
        pointer-events: none;
    }
    .footer-fixed.show{
        opacity: 1;
        transform: translateY(0);
    }

    .footer-fixed-link{
        display: flex;
        align-items: flex-end;
        justify-content: center;
        flex-wrap: nowrap;
    }
    a.footer-fixed-link-l{
        width: 50%;
        height: 50px;
        background: #ffffff;
        display: flex;
        align-items: center;
        color: #000000;
        border-top-left-radius: 14px;
        font-size: 24px;
        justify-content: center;
    }
    a.footer-fixed-link-r{
        width: 50%;
        height: 50px;
        background: #FFD100;
        display: flex;
        align-items: center;
        color: #ffffff;
        border-top-right-radius: 14px;
        font-size: 15px;
        line-height: 1.2;
        justify-content: center;
    }
    .footer-fixed-link a img{
    }
    .footer-fixed p{
        background: #004B9E;
        color: #ffffff;
        font-size: 9px;
        padding: 3px 0 3px 10px;
        text-align: center;
    }
    .ft-tel{
        display: flex;
        align-items: center;
        justify-content: center;
        background: #ffffff;
        border-top: 3px solid #ffffff;
        height: 50px;
    }
    .ct3-content .ct3-btn {
        width: 88%;
        margin: 8vw auto;
        font-size: 5vw;
        height: 16vw;
    }
    .ct-news {
        padding-bottom: 15vw;
    }
    .ct-news .ct-news-list {
        gap: 7vw;
        padding: 5vw 0;
        flex-direction: column;
        align-items: center;
    }
    .ct-news .ct-news-list a.card {
        width: 88%;
    }
    .ct-news .ct-news-list a.card .card-thumbnails img {
        height: 52vw;
    }
    .ct-news .ct-news-list a.card .card-body {
        padding: 4vw;
    }
    .ct-news .ct-news-list a.card .card-body .news-time {
        font-size: 3.5vw;
    }
    .qa-question::before{
        right: 2vw;
        font-size: 6vw;
    }
}
.animate__animated.animate__delay-0_5s {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-delay: calc(var(--animate-delay) * 0.5);
    animation-delay: calc(var(--animate-delay) * 0.5)
}
.animate__animated.animate__delay-0_8s {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    -webkit-animation-delay: calc(var(--animate-delay) * 0.8);
    animation-delay: calc(var(--animate-delay) * 0.8)
}
.animate__animated.animate__delay-1_1s {
    -webkit-animation-delay: 1.1s;
    animation-delay: 1.1s;
    -webkit-animation-delay: calc(var(--animate-delay) * 1.1);
    animation-delay: calc(var(--animate-delay) * 1.1)
}
.animate__animated.animate__delay-1_8s {
    -webkit-animation-delay: 1.8s;
    animation-delay: 1.8s;
    -webkit-animation-delay: calc(var(--animate-delay) * 1.8);
    animation-delay: calc(var(--animate-delay) * 1.8)
}
.animate__animated.animate__delay-2_3s {
    -webkit-animation-delay: 2.3s;
    animation-delay: 2.3s;
    -webkit-animation-delay: calc(var(--animate-delay) * 2.3);
    animation-delay: calc(var(--animate-delay) * 2.3)
}
.animate__animated.animate__delay-2_6s {
    -webkit-animation-delay: 2.6s;
    animation-delay: 2.6s;
    -webkit-animation-delay: calc(var(--animate-delay) * 2.6);
    animation-delay: calc(var(--animate-delay) * 2.6)
}
.animate__animated.animate__delay-2_9s {
    -webkit-animation-delay: 2.9s;
    animation-delay: 2.9s;
    -webkit-animation-delay: calc(var(--animate-delay) * 2.9);
    animation-delay: calc(var(--animate-delay) * 2.9)
}