@charset "UTF-8";

html{
  margin-top: 0 !important;
}
#wpadminbar{
  display: none;
}
/*************************************************************
リセット
*************************************************************/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
html{
  overflow-x: hidden;
  /* height: 100%; */
}
body {
  font-family: "Yu Gothic", "游ゴシック", "YuGothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-size: 100%;
  color: #000;
  line-height: 1;
  overflow-x: hidden;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  min-height: 100vh;
}
main{
  -webkit-box-flex: 1;
  flex: 1;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
ul,ol {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}
a:hover{
  opacity: .8;
}
/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}
input,
select {
  vertical-align: middle;
}
img{
  width: 100%;
  vertical-align: bottom;
}
a:hover{
  opacity: .8;
}


/*************************************************************
汎用
*************************************************************/
.c-jcopy{
  font-family: Verdana;
  color: #231815;
  font-weight: bold;
}
.c-jcls{
  font-family: Impact;
}
.c-mt-0{
  margin-top: 0 !important;
}
.c-mb-0{
  margin-bottom: 0 !important;
}
.c-txt-center{
  text-align: center;
}
.c-txt-right{
  text-align: right;
}
.c-txt-left{
  text-align: left;
}
.c-inline-block{
  display: inline-block;
}
/* section */
.l-section{
  margin-top: 60px;
  padding: 0 20px;
}
.l-section__gy{
  background: #f4f4f4;
  padding: 60px 20px;
}
.l-section-inner{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
main .l-section:last-child{
  margin-bottom: 60px;
}
/* 見出し */
.c-heading{
  text-align: center;
  font-weight: bold;
}
.c-heading__line{
  text-align: left;
}
.c-heading p{
  margin-bottom: 10px;
  font-size: 16px;
}
.c-heading h2{
  font-size: 30px;
  position: relative;
  padding-bottom: 20px;
}
.c-heading h2:after{
  content: "";
  background: url(../img/icon_heading.svg) no-repeat;
  width: 60px;
  height: 11.8px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.c-heading__line{
  margin-top: 60px;
  padding-right: 50px;
  position: relative;
  z-index: 1;
}
.c-heading__line:after{
  content: "";
  width: 100%;
  height: 1px;
  background: #e3007f;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 0;
}
.c-heading__line h2{
  display: inline-block;
  background: #fff;
  font-size: 22px;
  padding-bottom: 0;
  line-height: 1.25;
  z-index: 1;
}
.c-heading__line h2:after{
  content: none;
}
.c-heading__line h2 span{
  display: inline-block;
  margin-right: 25px;
}
/* 下層ページ見出し */
.c-heading-page{
  padding: 25px 20px;
  background: #222654;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 1.25;
}
/* text */
.c-text{
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
}
.c-text + .c-text{
  margin-top: 25px;
}
.c-text__right{
  text-align: right;
}
.c-text__meta{
  font-weight: bold;
}
.c-date{
  display: block;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px){
  .pc-none{
    display: none !important;
  }
  .c-mt-10_pc{
    margin-top: 10px !important;
  }
  .c-mt-15_pc{
    margin-top: 15px !important;
  }
  .c-mt-20_pc{
    margin-top: 20px !important;
  }
  .c-mt-25_pc{
    margin-top: 25px !important;
  }
  .c-mt-30_pc{
    margin-top: 30px !important;
  }
  .c-mt-35_pc{
    margin-top: 35px !important;
  }
  .c-mt-40_pc{
    margin-top: 40px !important;
  }
  .c-mt-45_pc{
    margin-top: 45px !important;
  }
  .c-mt-50_pc{
    margin-top: 50px !important;
  }
  .c-mt-55_pc{
    margin-top: 55px !important;
  }
  .c-mt-60_pc{
    margin-top: 60px !important;
  }
}
@media screen and (max-width: 767px){
  .sp-none{
    display: none !important;
  }
  .c-mt-10_sp{
    margin-top: 10px !important;
  }
  .c-mt-15_sp{
    margin-top: 15px !important;
  }
  .c-mt-20_sp{
    margin-top: 20px !important;
  }
  .c-mt-25_sp{
    margin-top: 25px !important;
  }
  .c-mt-30_sp{
    margin-top: 30px !important;
  }
  /* section */
  .l-section{
    margin-top: 35px;
  }
  .l-section__gy{
    padding: 35px 20px;
  }
  main .l-section:last-child{
    margin-bottom: 35px;
  }
  /* 見出し */
  .c-heading__line {
    margin-top: 30px;
  }
  .c-heading p{
    font-size: 14px;
  }
  .c-heading h2{
    font-size: 25px;
  }
  .c-heading__line h2{
    font-size: 18px;
    padding-bottom: 0;
  }
  .c-heading__line h2 span{
    margin-right: 15px;
  }
  /* 下層ページ見出し */
  .c-heading-page{
    padding: 15px 20px;
    font-size: 18px;
  }
  /* text */
  .c-text{
    font-size: 14px;
  }
  .c-text + .c-text {
    margin-top: 20px;
  }
  .c-date{
    margin-bottom: 0;
  }
}


/*************************************************************
header
*************************************************************/
html.is-locked {
  overflow: hidden;
}
header{
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 10;
}
.l-header{
  background: #fff;
  padding: 0 20px;
  border-bottom: 1px solid #595757;
}
.l-header-inner{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 0;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  column-gap: 20px;
}
.l-header-logo{
  width: calc(100% - 20px - 445px);
  max-width: 375px;
}
.l-header-logo a{
  display: inline-block;
  width: 100%;
}
.l-header-actions{
  width: 445px;
  display: flex;
  -webkit-box-pack: end;
  justify-content: flex-end;
  -webkit-box-align: stretch;
    align-items: stretch;
  column-gap: 15px;
}
.l-search-form{
  position: relative;
}
.l-search-field{
  width: 170px;
  font-size: 14px;
  padding: 5px 45px 5px 20px;
  border: 1px solid #c9caca;
  border-radius: 15px;
}
.l-search-submit{
  width: 15px;
  padding: 0;
  background: none;
  border: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  cursor: pointer;
}
.l-search-submit:hover{
  opacity: .8;
}
.l-header-links{
  display: flex;
  -webkit-box-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  align-items: center;
  column-gap: 15px;
}
.l-header-link{
  height: 100%;
}
.l-header-link a{
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  height: 100%;
  padding: 0 25px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(to bottom,#2f376b 0%,#1c2554 40%,#0e163d 100%);
  overflow: hidden;
  position: relative;
}
.l-header-link a:after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom,rgba(255,255,255,0.25),rgba(255,255,255,0));
}
.l-header-link__inquiry a{
  padding: 0 15px 0 40px;
}
.l-header-link__inquiry a:before{
  content: "";
  background: url(../img/icon_mail.svg) no-repeat;
  width: 15px;
  height: 11px;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.l-header-nav{
  background: #fff;
  padding: 0 20px;
  border-bottom: 1px solid #595757;
}
.l-nav-inner{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.l-nav-list{
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}
.l-nav-list > li{
  width: calc(100% / 6);
  border-right: 1px solid #c9caca;
  box-sizing: border-box;
  text-align: center;
  position: relative;
}
.l-nav-list > li:first-child{
  border-left: 1px solid #c9caca;
}
.l-nav-list > li > a{
  display: block;
  padding: 15px 5px;
  font-size: clamp(15px, 1.6vw, 16px);
  font-weight: bold;
}
.l-nav-list > li > a.l-nav-item{
  pointer-events: none;
}
.l-subnav{
  width: auto;
  min-width: calc(100% + 2px);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 10;
  display: none;
}
.l-subnav-list li a{
  display: block;
  padding: 15px 30px;
  background: rgba(34, 38, 84, 0.75);
  color: #fff;
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: bold;
  white-space: nowrap;
}
.l-nav-list > li:hover .l-subnav{
  display: block;
}
.l-hamburger{
  width: 60px;
  height: 60px;
  background: #222654;
  position: relative;
  z-index: 20;
  cursor: pointer;
  display: none;
}
.l-hamburger span{
  display: block;
  width: 35px;
  height: 1px;
  background: #fff;
  transition: all .3s;
  position: absolute;
  top: 50%;
  left: 50%;
}
.l-hamburger span:nth-child(1){
  transform: translate(-50%, calc(-50% - 7.5px));
  -webkit-transform: translate(-50%, calc(-50% - 7.5px));
  -ms-transform: translate(-50%, calc(-50% - 7.5px));
}
.l-hamburger span:nth-child(2){
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.l-hamburger span:nth-child(3){
  transform: translate(-50%, calc(-50% + 7.5px));
  -webkit-transform: translate(-50%, calc(-50% + 7.5px));
  -ms-transform: translate(-50%, calc(-50% + 7.5px));
}
.l-hamburger.open span:nth-child(1){
  transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
}
.l-hamburger.open span:nth-child(2){
  opacity: 0;
}
.l-hamburger.open span:nth-child(3){
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
}
@media screen and (max-width: 767px){
  body{
    position: relative;
    height: 100%;
  }
  .l-header{
    padding: 0;
    height: 60px;
    box-sizing: border-box;
  }
  .l-header-inner{
    padding: 0;
  }
  .l-header-actions{
    display: none;
  }
  .l-header-logo{
    width: calc(100% - 60px - 40px);
    max-width: 240px;
    margin-left: 20px;
  }
  .l-hamburger{
    display: block;
  }
  .l-header-nav{
    background: rgba(34, 38, 84, 0.75);
    padding: 0 0 30px;
    box-sizing: border-box;
    border-bottom: none;
    width: 100%;
    position: absolute;
    top: 60px;
    z-index: 10;
    right: -100%;
    transition: right 0.5s ease;
  }
  .l-header-nav.open{
    right: 0;
    height: calc(100vh - 60px);
    overflow-y: scroll;
  }
  .l-header-mask{
    width: calc(100% - 60px);
    height: 60px;
    background: rgba(34, 38, 84, 0.75);
    position: absolute;
    top: 0;
    right: -100%;
    z-index: 10;
    /* transition: right 0.5s ease; */
  }
  .l-header-mask.open{
    right: 60px;
  }
  .l-nav-list{
    display: block;
    padding: 0 20px;
  }
  .l-nav-list > li{
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(201, 202, 202, 0.75);
  }
  .l-nav-list > li:first-child{
    border-left: none;
  }
  .l-nav-list > li > a{
    color: #fff;
    font-size: 16px;
  }
  .l-nav-list > li > a.l-nav-item{
    pointer-events: auto;
    position: relative;
    padding: 15px 50px;
  }
  .l-nav-list > li > a.l-nav-item:after{
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    margin-top: -2px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    transition: transform 0.3s ease;
  }
  .l-nav-list > li > a.l-nav-item.open:after{
    margin-top: 2px;
    transform: translateY(-50%) rotate(-45deg) scaleY(-1);
    -webkit-transform: translateY(-50%) rotate(-45deg) scaleY(-1);
    -ms-transform: translateY(-50%) rotate(-45deg) scaleY(-1);
  }
  .l-subnav{
    display: block;
    width: 100%;
    min-width: auto;
    position: static;
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
  }
  .l-subnav-list li a{
    padding: 7.5px 5px;
    font-size: 14px;
    font-weight: normal;
    background: none;
  }
  .l-subnav-list li:first-child a{
    padding-top: 0;
  }
  .l-subnav-list li:last-child a{
    padding-bottom: 15px;
  }
}


/*************************************************************
breadcrumb
*************************************************************/
.l-breadcrumb{
  margin-top: 20px;
  padding: 0 20px;
}
.l-breadcrumb-inner{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.l-breadcrumb-list{
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  color: #000;
  font-size: 14px;
  font-weight: bold;
}
.l-breadcrumb-list li{
  position: relative;
  padding-left: 15px;
}
.l-breadcrumb-list li:before{
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
}
.l-breadcrumb-list li:first-child{
  padding-left: 0;
}
.l-breadcrumb-list li:first-child:before{
  content: none;
}
.l-breadcrumb-list li:last-child{
  color: #898989;
}
@media screen and (max-width: 767px){
  .l-breadcrumb{
    margin-top: 10px;
  }
  .l-breadcrumb-list{
    gap: 5px 3px;
    font-size: 12px;
  }
  .l-breadcrumb-list li{
    padding-left: 10px;
  }
  .l-breadcrumb-list li:before{
    width: 4px;
    height: 4px;
  }
}


/*************************************************************
footer
*************************************************************/
.l-footer{
  background: #222654;
  color: #fff;
  padding: 25px 20px;
}
.l-footer-inner{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  align-items: stretch;
  column-gap: 3%;
}
.l-footer-info{
  width: calc(100% - 3% - 313px);
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  align-items: flex-start;
  column-gap: 5%;
}
.l-footer-logo{
  width: 105px;
}
.l-footer-txt{
  width: calc(100% - 5% - 105px);
}
.l-footer-txt a{
  color: #e3007f;
}
.l-footer-tradeName{
  font-size: 16px;
  font-weight: bold;
}
.l-footer-address{
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.25;
}
.l-footer-txt ul{
  margin-top: 5px;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 5px 3%;
}
.l-footer-txt ul li{
  font-size: 14px;
  white-space: nowrap;
}
.l-footer-meta{
  width: 313px;
  position: relative;
}
.footer-meta__links{
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  align-items: flex-start;
}
.footer-meta__links li{
  font-size: 14px;
  font-weight: bold;
  border-left: 1px solid #fff;
  padding: 0 15px;
  white-space: nowrap;
}
.footer-meta__links li:first-child{
  border-left: none;
  padding-left: 0;
}
.footer-meta__links li:last-child{
  padding-right: 0;
}
.footer-meta__links li a{
  color: #fff;
}
.footer-meta__copyright{
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 767px){
  .l-footer{
    padding: 20px;
  }
  .l-footer-inner{
    display: block;
  }
  .l-footer-info{
    width: 100%;
    display: block;
  }
  .l-footer-logo{
    margin: 0 auto;
  }
  .l-footer-txt{
    margin-top: 15px;
    width: 100%;
  }
  .l-footer-tradeName{
    font-size: 14px;
    text-align: center;
  }
  .l-footer-address{
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
  }
  .l-footer-txt ul{
    -webkit-box-pack: center;
    justify-content: center;
    gap: 5px 7px;
  }
  .l-footer-txt ul li{
    font-size: 12px;
  }
  .l-footer-meta{
    margin-top: 15px;
    width: 100%;
  }
  .footer-meta__links{
    -webkit-box-pack: center;
    justify-content: center;
  }
  .footer-meta__copyright{
    margin-top: 20px;
    position: static;
    text-align: center;
  }
}


/*************************************************************
ページトップに戻る
*************************************************************/
.c-btn_pageTop{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e3007f;
  position: fixed;
  bottom: 20px;
  right: 20px;
  text-align: center;
  cursor: pointer;
  z-index: 5;
  transition: bottom 0.25s cubic-bezier(.4,0,.2,1),opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
.c-btn_pageTop:before{
  content: '';
  width: 1px;
  height: 30px;
  background: #fff;
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.c-btn_pageTop:after{
  content: '';
  width: 8px;
  height: 10px;
  border-right: 1px solid #fff;
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  -webkit-transform: translateX(-50%) rotate(-45deg);
  -ms-transform: translateX(-50%) rotate(-45deg);
}
.c-btn_pageTop.is-show{
  opacity: 1;
  pointer-events: auto;
}
.c-btn_pageTop.is-show:hover{
  opacity: 0.8;
}
@media screen and (max-width: 767px){
  .c-btn_pageTop{
    width: 45px;
    height: 45px;
    right: 10px;
  }
  .c-btn_pageTop:before{
    height: 25px;
    top: 10px;
  }
  .c-btn_pageTop:after{
    height: 8px;
    top: 12px;
  }
}