@charset "UTF-8";
   * {
box-sizing: border-box;
position: relative;
}
html,
body {
overflow-x: hidden;
margin: 0;
font-family: "Noto Sans JP", serif;
background: #fff;
}
header {
background-color: #076baf;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 30px;
position: relative;
z-index: 999;
max-height: 60px;
}
header a.navbar-brand {
font-size: clamp(1.625rem, 1.563rem + 0.31vw, 1.75rem);
text-decoration: none;
color: #fff;
}
header .global_menu {
position: initial;
}
header .global_menu .menu-toggle {
display: none;
align-items: center;
gap: 12px;
padding: 12px 0;
border: 0;
background: transparent;
cursor: pointer;
color: #fff;
position: relative;
}
header .global_menu .menu-toggle__bar {
display: block;
width: 24px;
height: 2px;
background: #fff;
position: absolute;
left: -30px;
margin: auto;
}
header .global_menu .menu-toggle__bar:nth-child(1) {
top: 12px;
}
header .global_menu .menu-toggle__bar:nth-child(2) {
top: 12px;
bottom: 12px;
}
header .global_menu .menu-toggle__bar:nth-child(3) {
bottom: 12px;
}
header .global_menu .menu-toggle__label {
font-size: clamp(0.75rem, 0.688rem + 0.31vw, 0.875rem);
letter-spacing: 0.08em;
}
header .global_menu.is-open .menu-toggle__bar {
top: 0;
bottom: 0;
transition: all 0.5s ease;
}
header .global_menu.is-open .menu-toggle__bar:nth-child(1) {
transform: rotate(135deg);
}
header .global_menu.is-open .menu-toggle__bar:nth-child(2) {
display: none;
}
header .global_menu.is-open .menu-toggle__bar:nth-child(3) {
transform: rotate(-135deg);
}
header .global_menu .nav-panel {
position: initial;
}
header .global_menu .header-menu {
display: flex;
list-style: none;
margin: 0;
padding: 0;
gap: 32px;
position: initial;
}
header .global_menu .header-menu .header-item {
position: initial;
}
header .global_menu .header-menu .header-item > a {
display: block;
padding: 18px 12px;
text-decoration: none;
color: #fff;
}
header .global_menu .header-menu .header-item.has-child > a {
position: relative;
padding-right: 15px;
}
header .global_menu .header-menu .header-item.has-child > a:after {
content: "\f0d7";
font-family: "Font Awesome 6 Free";
font-weight: bold;
display: flex;
align-items: center;
position: absolute;
top: 0;
bottom: 0;
right: 0;
margin: auto;
}
header .global_menu .header-menu .header-item > .megaMenu {
position: absolute;
top: 100%;
left: 0;
right: 0;
z-index: 9999;
display: none;
background: #333;
padding: 50px 0;
}
header .global_menu .header-menu .header-item > .megaMenu .mega-inner {
max-width: 760px;
margin: 0 auto;
}
header .global_menu .header-menu .header-item > .megaMenu .child_menu {
list-style: none;
margin: 0;
padding: 0;
min-width: 220px;
display: flex;
justify-content: center;
gap: 50px;
}
header .global_menu .header-menu .header-item > .megaMenu .child_menu li {
margin-bottom: 12px;
width: 25%;
}
header .global_menu .header-menu .header-item > .megaMenu .child_menu li a {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 5px;
padding: 8px 4px;
text-decoration: none;
font-weight: 500;
color: #fff;
}
header .global_menu .header-menu .header-item > .megaMenu .child_menu li a i {
display: block;
width: 100%;
text-align: center;
font-size: clamp(3rem, 2.938rem + 0.31vw, 3.125rem);
transition: all 0.5s ease;
}
header .global_menu .header-menu .header-item > .megaMenu .child_menu li a:hover {
color: #e6e150;
}
header .global_menu .header-menu .header-item > .megaMenu .child_menu li a:hover i {
transform: rotateY(360deg);
}
header .global_menu .header-menu .header-item:hover > .megaMenu, header .global_menu .header-menu .header-item:focus-within > .megaMenu {
display: block;
}
header.is-sticky {
position: fixed;
top: 0;
left: 0;
right: 0;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
@media only screen and (max-width: 1360px) {
header .global_menu .header-menu {
gap: 15px;
}
}
@media only screen and (max-width: 1260px) {
header .global_menu .header-menu {
gap: 15px;
}
header .global_menu .menu-toggle {
display: inline-flex;
}
header .global_menu .nav-panel {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
z-index: 9999;
background: #076baf;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
padding: 14px 16px;
}
header .global_menu.is-open .nav-panel {
display: block;
}
header .global_menu .header-menu {
display: block;
gap: 0;
}
header .global_menu .header-menu .header-item {
position: relative;
}
header .global_menu .header-menu .header-item > a {
padding: 14px 8px;
border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
header .global_menu .header-menu .header-item > .megaMenu {
position: static;
display: none;
box-shadow: none;
padding: 8px 0 14px;
background: transparent;
}
header .global_menu .header-menu .header-item > .megaMenu .mega-inner {
display: block;
max-width: none;
margin: 0;
padding: 0;
}
header .global_menu .header-menu .header-item > .megaMenu .child_menu {
min-width: 0;
}
header .global_menu .header-menu .header-item > .megaMenu .child_menu a {
padding: 12px 10px;
border-radius: 8px;
}
header .global_menu .header-menu .header-item > .megaMenu .child_menu a:hover {
opacity: 1;
background: rgba(0, 0, 0, 0.06);
}
header .global_menu .header-menu .header-item.is-subopen > .megaMenu {
display: block;
}
}
@media only screen and (max-width: 420px) {
header {
padding: 0 15px;
}
}
@media only screen and (max-width: 320px) {
header .global_menu .menu-toggle span.menu-toggle__label {
visibility: hidden;
}
header .global_menu .menu-toggle span.menu-toggle__bar {
left: unset;
right: 0;
}
} .inner {
width: 96%;
max-width: 860px;
margin: auto;
}
a {
text-decoration: none;
color: #076BAF;
}
a:hover {
text-decoration: underline;
}
img {
max-width: 100%;
height: auto;
-o-object-fit: cover;
object-fit: cover;
vertical-align: bottom;
backface-visibility: hidden;
-webkit-backface-visibility: hidden;
}
iframe {
max-width: 100%;
}
.author-box {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin-bottom: 30px;
}
.author-box .author {
width: 150px;
}
.author-box .author .author-image {
position: relative;
width: 150px;
height: 150px;
border-radius: 150px;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
}
.author-box .author .author-image:before {
content: "";
display: block;
padding-top: 100%;
}
.author-box .author .author-image img {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.author-box .author .author-name {
text-align: center;
}
.author-box .author .author-sns {
display: flex;
justify-content: center;
align-items: center;
gap: 15px;
}
.author-box .author .author-sns a {
font-size: 21px;
}
.author-box .author .author-sns a.link {
font-size: 18px;
color: #5e5e5e;
}
.author-box .author .author-sns a.twitter {
color: #000;
}
.author-box .author .author-sns a.twitter .fa-twitter:before {
content: "𝕏" !important;
font-family: unset;
font-weight: bold;
}
.author-box .author .author-sns a.instagram {
color: #c3027d;
}
.author-box .author .author-sns a.facebook {
color: #007bff;
}
.author-box .author-info {
width: calc(100% - 165px);
}
@media only screen and (max-width: 460px) {
.author,
.author-info {
width: 100%;
}
.author-image {
margin: auto;
}
}
.entry ul:not(.normal),
.entry ol:not(.normal) {
list-style: none;
}
.entry ul:not(.normal) li,
.entry ol:not(.normal) li {
margin: 1.2rem 0;
}
.most-read-articles {
position: relative;
margin: 30px auto;
}
.most-read-articles .most-read-head {
margin: 0;
background: #086ab0;
color: #fff;
padding: 4px 15px;
border-radius: 10px 10px 0 0;
width: -moz-fit-content;
width: fit-content;
}
.most-read-articles .most-read-content a {
display: flex;
flex-wrap: wrap;
border: 2px solid #ddd;
text-decoration: none;
}
.most-read-articles .most-read-content a .most-read-thumb {
width: 30%;
}
.most-read-articles .most-read-content a .most-read-thumb img {
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.most-read-articles .most-read-content a .most-read-info {
width: 70%;
padding: 15px;
color: #000;
background: #fff;
}
.most-read-articles .most-read-content a .most-read-info p {
margin: 0;
font-size: clamp(0.75rem, 0.688rem + 0.31vw, 0.875rem);
}
.most-read-articles .most-read-content a .most-read-info p:first-child {
font-size: clamp(0.938rem, 0.906rem + 0.16vw, 1rem);
font-weight: 500;
margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
.most-read-articles .most-read-content a .most-read-thumb,
.most-read-articles .most-read-content a .most-read-info {
width: 100%;
}
}
.shadow-box {
margin: 30px 5px;
padding: 15px;
background: #fffae8;
border-radius: 5px;
box-shadow: 0px 0px 5px #c4b06f;
}
.shadow-box p:first-child {
margin-top: 0;
}
.shadow-box p:last-child {
margin-bottom: 0;
}
.shadow-box-dark {
margin: 30px 5px;
padding: 15px;
background: #eeeeee;
border-radius: 5px;
box-shadow: 0px 0px 5px #c1c1c1;
}
.shadow-box-dark p:first-child {
margin-top: 0;
}
.shadow-box-dark p:last-child {
margin-bottom: 0;
} .FooterAttWrap {
background-color: #076baf;
}
.FooterAttWrap .FooterAtt {
color: #fff;
text-align: center;
font-size: clamp(1rem, 0.938rem + 0.31vw, 1.125rem);
margin: 0;
padding: 15px 0;
}
.FooterContactWrap,
.SectionContactWrap {
padding: 50px 0;
background-color: #f7f7f7;
}
.FooterContactWrap .FooterContactHead,
.SectionContactWrap .FooterContactHead {
font-size: clamp(1.125rem, 1.031rem + 0.47vw, 1.313rem);
font-weight: 500;
text-align: center;
}
.FooterContactWrap .FooterContact,
.FooterContactWrap .SectionContact,
.SectionContactWrap .FooterContact,
.SectionContactWrap .SectionContact {
padding-top: 15px;
padding-bottom: 15px;
display: flex;
flex-wrap: wrap;
gap: 30px;
}
.FooterContactWrap .FooterContact .FooterContactTel,
.FooterContactWrap .FooterContact .FooterContactEmail,
.SectionContactWrap .FooterContact .FooterContactTel,
.SectionContactWrap .FooterContact .FooterContactEmail {
flex: 1;
}
.FooterContactWrap .FooterContact .FooterContactTel p.contact-head-txt,
.FooterContactWrap .FooterContact .FooterContactEmail p.contact-head-txt,
.SectionContactWrap .FooterContact .FooterContactTel p.contact-head-txt,
.SectionContactWrap .FooterContact .FooterContactEmail p.contact-head-txt {
font-size: clamp(1rem, 0.938rem + 0.31vw, 1.125rem);
font-weight: 500;
text-align: center;
}
.FooterContactWrap .FooterContact .FooterContactTel p.contact-tel,
.FooterContactWrap .FooterContact .FooterContactEmail p.contact-tel,
.SectionContactWrap .FooterContact .FooterContactTel p.contact-tel,
.SectionContactWrap .FooterContact .FooterContactEmail p.contact-tel {
text-align: center;
font-size: clamp(2.375rem, 2.313rem + 0.31vw, 2.5rem);
line-height: 1;
margin: 0;
color: #f15a24;
}
.FooterContactWrap .FooterContact .FooterContactTel p.contact-tel span.BusinessHours,
.FooterContactWrap .FooterContact .FooterContactEmail p.contact-tel span.BusinessHours,
.SectionContactWrap .FooterContact .FooterContactTel p.contact-tel span.BusinessHours,
.SectionContactWrap .FooterContact .FooterContactEmail p.contact-tel span.BusinessHours {
font-size: clamp(0.938rem, 0.906rem + 0.16vw, 1rem);
display: block;
color: #191919;
}
.FooterContactWrap .FooterContact .FooterContactTel a.contact-btn,
.FooterContactWrap .FooterContact .FooterContactEmail a.contact-btn,
.SectionContactWrap .FooterContact .FooterContactTel a.contact-btn,
.SectionContactWrap .FooterContact .FooterContactEmail a.contact-btn {
display: block;
width: 90%;
margin: auto;
padding: 15px 0;
text-align: center;
background: #076BAF;
color: #fff;
text-decoration: none;
font-weight: 500;
border-radius: 30px;
}
.FooterContactWrap .square-block,
.SectionContactWrap .square-block {
margin: 30px auto;
padding: 15px;
background: #fff;
border-radius: 15px;
box-shadow: 0px 0px 5px #dcdcdc;
width: 90%;
max-width: 640px;
text-align: center;
}
.FooterContentWrap {
padding: 30px 0;
}
.FooterContentWrap .inner {
display: flex;
gap: 50px;
justify-content: space-between;
}
.FooterContentWrap ul.FooterMenuList {
list-style: none;
padding: 0;
margin: 0;
}
.FooterContentWrap ul.FooterMenuList li {
margin: 0;
}
.FooterContentWrap .FooterAbout p {
margin: 0;
}
.CopyrightWrap {
background: #076BAF;
}
.CopyrightWrap p.Copyright {
margin: 0;
color: #fff;
text-align: center;
} .delighter {
overflow: hidden;
opacity: 0;
transition: all 0.5s ease-out;
}
.delighter.started {
opacity: 1;
transform: translate(0, 0);
}
.delighter.slidein-up:not(.started) {
transform: translate(0, 10%);
}
.delighter.slidein-left:not(.started) {
transform: translate(-10%, 0);
}
.delighter.slidein-right:not(.started) {
transform: translate(10%, 0);
}
.delighter.scale-up:not(.started) {
transform: scale(0.6);
} @media only screen and (min-width: 992px) {
.pc-none {
display: none;
}
.sp-only {
display: none;
}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
#side-icons {
display: none;
}
.sp-only {
display: none;
}
.pc-only {
display: none;
}
}
@media only screen and (min-width: 577px) and (max-width: 767px) {
#side-icons {
display: none;
}
.pc-only {
display: none;
}
.sp-none {
display: none;
}
}
@media only screen and (max-width: 576px) {
.dnone {
display: none;
}
.sp-none {
display: none;
}
.pc-only {
display: none;
}
}
.ta_c {
text-align: center;
}
.ta_l {
text-align: left;
}
.ta_r {
text-align: right;
}
.va_c {
display: table-cell;
vertical-align: middle;
}
.red {
color: #b30000 !important;
}
.yellow {
color: #FCEE21 !important;
}
.orange {
color: #F15A24 !important;
}
.blue {
color: #076BAF !important;
}
.bk {
color: black !important;
}
.wt {
color: white !important;
}
.brown {
color: #a52a2a !important;
}
.darkblue {
color: #26455e !important;
}
.bg-lightgray {
background-color: #f7f7f7;
}
.bg-cream {
background: #fef9c6;
}
.bg-babyblue {
background: #cee3ed;
}
.bg-ivory {
background: #f8f4e6;
}
.bg-light {
background-color: #f8f9fa !important;
}
h1,
h2,
h3,
h4,
h5,
h6,
b,
strong,
.bold {
font-weight: 500;
}
.fs8 {
font-size: 8pt;
}
.fs9 {
font-size: 9pt;
}
.fs10 {
font-size: 10pt;
}
.fs10_5 {
font-size: 10.5pt;
}
.fs11 {
font-size: 11pt;
}
.fs12 {
font-size: 12pt;
}
.fs13 {
font-size: 13pt;
}
.fs14 {
font-size: clamp(0.75rem, 0.688rem + 0.31vw, 0.875rem);
}
.fs16 {
font-size: clamp(0.938rem, 0.906rem + 0.16vw, 1rem);
}
.fs18 {
font-size: clamp(1rem, 0.938rem + 0.31vw, 1.125rem);
}
.fs20 {
font-size: clamp(1.063rem, 0.969rem + 0.47vw, 1.25rem);
}
.fs21 {
font-size: clamp(1.125rem, 1.031rem + 0.47vw, 1.313rem);
}
.fs22 {
font-size: clamp(1.188rem, 1.094rem + 0.47vw, 1.375rem);
}
.fs24 {
font-size: clamp(1.313rem, 1.219rem + 0.47vw, 1.5rem);
}
.fs26 {
font-size: clamp(1.5rem, 1.438rem + 0.31vw, 1.625rem);
}
.fs28 {
font-size: clamp(1.625rem, 1.563rem + 0.31vw, 1.75rem);
}
.fs30 {
font-size: clamp(1.75rem, 1.688rem + 0.31vw, 1.875rem);
}
.fs32 {
font-size: clamp(1.875rem, 1.813rem + 0.31vw, 2rem);
}
.fs40 {
font-size: clamp(2.375rem, 2.313rem + 0.31vw, 2.5rem);
}
.small {
font-size: 0.9em;
}
.lh1 {
line-height: 1em;
}
.lh12 {
line-height: 1.2em;
}
.lh14 {
line-height: 1.4em;
}
.lh16 {
line-height: 1.6em;
}
.lh18 {
line-height: 1.8em;
}
.lh20 {
line-height: 2em;
}
.palt {
font-feature-settings: "palt";
}
span.number {
font-family: "Oswald", sans-serif;
}