@charset "UTF-8";
body{font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif; font-weight: 500;}
img{max-width: 100%; height: auto;}
h2,h3{ font-weight: bold;}
p{line-height: 1.8;}
a{transition:0.5s;}
a:hover{opacity: 0.7;}
iframe {width: 100%;}
body {
    -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
    animation: fadeIn 1.5s ease 0s 1 normal;
  }

  @keyframes fadeIn {
    0% {
      opacity: 0
    }

    100% {
      opacity: 1
    }
  }

  @-webkit-keyframes fadeIn {
    0% {
      opacity: 0
    }

    100% {
      opacity: 1
    }
  }
#header {
    display: flex;
    padding: 5px 10px;
    height: 70px;
    align-items: center;
    background: #fff;
    position: fixed;
    z-index: 999;
    width: 100%;
    top: 0;
    transition: 0.5s;
}
#header.header-shadow {
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    transition: 0.5s;
    background-color: rgba(255, 255, 255, 0.9);
}
.logo img {
    width: 260px;
}
nav ul{
	list-style: none;
	display: flex;
	justify-content: center;
}
nav ul ul{
	display: block;
}

nav ul li{
	position: relative;
}

nav ul li a {
    display: block;
    text-decoration: none;
    color: #000;
    padding: 5px 35px;
    transition: all .3s;
    font-weight: bold;
}
nav ul li a:hover{
    color: #1c2b71;
}
nav ul li > a {
    color: #1c2b71;
}
nav ul li.tell a::before {
    content: "";
    display: inline-block;
    background-image: url(../img/ico-tell.png);
    width: 25px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: text-top;
    margin-right: 5px;
}
nav ul li li a{
	padding:10px 35px;
}

/* nav ul ul li.has-child::before{
	content:'';
	position: absolute;
	left:6px;
	top:17px;
	width:6px;
	height:6px;
    border-top: 2px solid #fff;
    border-right:2px solid #fff;
    transform: rotate(45deg);
} */
nav li.has-child ul{
	position: absolute;
	left:0;
	top:62px;
	z-index: 4;
	width:180px;
	visibility: hidden;
	opacity: 0;
	transition: all .3s;
}

nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

nav li.has-child ul li a {
    color: #fff;
    border-left: none;
}

nav li.has-child ul li:last-child > a{
 border-bottom:none;
 }
nav ul li a.contact-btn, nav ul li a.tell {
    border: none;
    display: block;
    text-align: center;
    background: #1c2b71;
    color: #fff;
    border-radius: 10px;
    margin: 1rem auto 0;
    width: 80%;
    padding: 10px 0;
    border: 3px solid #1c2b71;
}
 nav ul li a.tell:hover{
    background: #fff;
    color: #1c2b71;
 }
nav ul li a.contact-btn{
    background: #e7161c;
    border: 3px solid #e7161c;
}
nav ul li a.contact-btn:hover {
    background: #fff;
    color: #e7161c;
}

nav ul li a.tell::before {
    content: "";
    background-image: url(../img/ico-tell2.png);
    display: inline-block;
    width: 14px;
    height: 15px;
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
    margin-right: 4px;
}

nav ul li a.tell:hover::before {
    background-image: url(../img/ico-tell3.png);
}
nav ul li a.tell {
    font-size: 18px;
}
@media screen and (max-width:1300px){
#header .logo {
    position: relative;
    z-index: 9999;
}
#header::after {
    content: "";
    background: #fff;
    width: 100%;
    height: 70px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
}
#g-nav {
    position: fixed;
    z-index: 999;
    top: -120%;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ebf1ff;
    transition: all 0.6s;
    right: 0;
    margin: 0;
}
nav li.has-child ul {
    padding: 0 0 0 60px !important;
}
#g-nav.panelactive{
    top: 0;
}
#g-nav.panelactive #g-nav-list {
    position: fixed;
    z-index: 999;
    width: 95%;
    height: 90vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
#g-nav ul {
    padding: 90px 0 0;
    margin: 0;
}
nav{
    padding: 0;
}

nav ul{
    display: block;
}

nav li.has-child ul,
nav li.has-child ul ul{
  	position: relative;
	left:0;
	top:0;
	width:100%;
	visibility:visible;
	opacity:1;
	/* display: none; */
	/* transition:none; */
    display: block;
}
/* nav ul li.has-child::before{
	left:20px;	
}

nav ul ul li.has-child::before{
    transform: rotate(135deg);
	left:20px;
}
    
nav ul li.has-child.active::before{
    transform: rotate(-45deg);
} */
nav li.has-child ul li a {
    color: #000;
    font-weight: 500;
    padding: 5px 0;
}
nav li.has-child ul li a::before {
    content: "";
    display: inline-block;
    width: 13px;
    height: 1px;
    background: #000;
    position: absolute;
    top: 16px;
    left: -18px;
}

.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:0px;
	right: 0px;
	cursor: pointer;
    width: 70px;
    height:70px;
    background: #e7161c;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
    width: 60%;
  }
.openbtn::before {
    content: "close";
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 10px;
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    text-align: center;
    transition: 0.4s;
    opacity: 0;
}
.openbtn.active::before {
    transition: 0.4s;
    opacity: 1;
}
.openbtn span:nth-of-type(1) {
	top: 17px;
}

.openbtn span:nth-of-type(2) {
	top: 33px;
}

.openbtn span:nth-of-type(3) {
	top: 48px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 15px;
    transform: translateY(6px) rotate(-45deg);
}

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

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 15px;
    transform: translateY(-6px) rotate(45deg);
}
}
#mainvisual {
    margin-top: 65px;
    position: relative;
}
.slider {
    position: relative;
    z-index: 1;
    padding: 0;
    margin: 0;
    width: 100%;
}
.slider-item img {
    object-fit: cover;
    width: 100%;
    object-position: center;
}
.slider, .slider-item, .slider-item img {
    height: 60vh;
}
.slick-dots {
    position: relative;
    z-index: 3;
    text-align: center;
    margin: -25px 0 0 0;
    padding: 0;
}
.slick-dots li {
    display:inline-block;
	margin:0 8px;
}
.slick-dots > li:first-child:last-child {
    opacity: 0;
}
.slick-dots button {
    color: transparent;
    outline: none;
    width: 12px;
    height: 12px;
    display: block;
    border-radius: 50%;
    background: #fff;
    border: none;
}
.slick-dots .slick-active button {
    background: #000;
}
.slick-prev, .slick-next {
    position: absolute;
    z-index: 3;
    top: 42%;
    cursor: pointer;
    outline: none;
    border-top: 4px solid #fff;
    border-right: 4px solid #fff;
    height: 25px;
    width: 25px;
}
.slick-prev {
    left:2.5%;
    transform: rotate(-135deg);
}

.slick-next {
    right:2.5%;
    transform: rotate(45deg);
}

section {
    padding: 3rem 0;
}
h2 {
    color: #1c2b71;
    text-align: center;
    font-size: 23px;
    margin-bottom: 1rem;
}
#service1 {
    background: #e6f4f1;
}
#service2{
    border-top: 4px solid #fff;
    background: #ebf1ff;
}
ul.service-list {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    gap: 10px;
}
ul.service-list li {
    width: 48.5%;
    list-style-type: none;
}
ul.service-list li a {
    display: block;
    background: #fff;
    text-align: center;
    color: #1c2b71;
    font-weight: bold;
    text-decoration: none;
    line-height: 1.2;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 118px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
}
ul.service-list li a::after {
    content: "";
    display: block;
    border-left: 4px solid;
    border-bottom: 4px solid;
    width: 13px;
    height: 13px;
    position: absolute;
    bottom: 15px;
    right: 15px;
    transform: rotate(225deg);
    transition: 0.5s;
}
ul.service-list li a:hover {
    opacity: 1;
    top: -3px;
    transition: 0.5s;
}
ul.service-list li a:hover::after {
    right: 10px;
    transition: 0.5s;
}
#recruit {
    background: #1c2b71;
}
#recruit .inner {
    background: #fff;
    padding: 1.5rem 0;
    text-align: center;
}
#recruit .container-fluid::before {
    content: "";
    background-image: url(../img/recruit-sp.jpg);
    display: block;
    width: 100%;
    height: 430px;
    background-size: cover;
}
#recruit .inner h2 {
    margin-bottom: .5rem;
}
#recruit .inner p {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 0.5rem;
}
a.link-btn {
    background: #1c2b71;
    width: 260px;
    display: block;
    padding: 1rem 0;
    text-align: center;
    margin: 1rem auto 0;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    border: 3px solid #1c2b71;
}
a.link-btn:hover{
    opacity: 1;
    background: #fff;
    color: #1c2b71;
}
#recruit a.link-btn{
    background: #e7161c;
    width: 250px;
    margin:0 auto;
    border: 3px solid #e7161c;
}
#recruit a.link-btn:hover{
    color: #e7161c;
    background: #fff;
}
ul.news-list {
    padding: 0;
    margin: 0;
    border-top: 1px solid #1c2b71;
}
ul.news-list li {
    padding: 10px 50px 10px 10px;
    list-style-type: none;
    border-bottom: 1px solid #1c2b71;
    position: relative;
}
ul.news-list li p {
    font-weight: bold;
    font-size: 14px;
    margin: 0;
    letter-spacing: 1px;
}
ul.news-list li a {
    color: #000;
    text-decoration: none;
}
ul.news-list li a:hover{
    text-decoration: underline;
}
ul.news-list li h3 {
    font-size: 16px;
    margin: 0;
    font-weight: 500;
}
ul.news-list li::after {
    content: "";
    display: block;
    border-left: 4px solid #1c2b71;
    border-bottom: 4px solid #1c2b71;
    width: 13px;
    height: 13px;
    position: absolute;
    top: 43%;
    right: 15px;
    transform: rotate(225deg);
}
#company {
    background: #ebf1ff;
    border-bottom: 4px solid #fff;
}
#company table{
    width: 100%;
}
#company table tr {
    border-top: 1px solid;
    border-bottom: 1px solid;
}
#company table th,#company table td {
    padding: 10px;
}
#company table th {
    font-weight: bold;
    width: 25%;
}
#company table td {
    width: 75%;
}
.comanker a {
    display: block;
    background: #fff;
    margin: 1rem 0 0;
    color: #000;
    text-decoration: none;
    padding: 15px 15px 15px 40px;
    font-size: 18px;
    border-radius: 5px;
    position: relative;
    top: 0;
}
.comanker a::after {
    content: "";
    display: block;
    border-left: 3px solid #1c2b71;
    border-bottom: 3px solid #1c2b71;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 43%;
    right: 35px;
    transform: rotate(225deg);
    transition: 0.5s;
}
.comanker a:hover{
    opacity: 1;
    top: -3px;
}
.comanker a:hover::after{
    right: 30px;
    transition: 0.5s;
}
#company h3 {
    color: #1c2b71;
    margin: 2rem 0 .5rem;
    border-bottom: 5px solid;
}
#company .col-lg-4 {
    margin-bottom: 2rem;
}
#contact {
    background: #1c2b71;
    color: #fff;
    text-align: center;
}
#contact h2 {
    color: #fff;
    font-size: 18px;
}
a.cta-btn,#contact a.tell {
    display: block;
    background: #fff;
    width: 95%;
    margin: 0 auto;
    text-align: center;
    color: #1c2b71;
    font-weight: bold;
    text-decoration: none;
    padding: 20px 0;
    border-radius: 5px;
    font-size: 20px;
    margin-bottom: 2rem;
    border: 3px solid #fff;
}
#contact a.tell {
    margin-bottom: 1rem;
    font-size: 28px;
    line-height: 1;
}
#contact a.tell::before {
    content: "";
    background-image: url(../img/ico-tell3.png);
    width: 20px;
    height: 24px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: baseline;
    margin-right: 3px;
}
a.cta-btn:hover, #contact a.tell:hover {
    opacity: 1;
    background: #1c2b71;
    color: #fff;
}
#contact a.tell:hover::before{
    background-image: url(../img/ico-tell2.png);
}
#contact p {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 0;
}
#f-bottom .logo {
    text-align: center;
    margin-bottom: 1rem;
}
ul.f-nav {
    display: none;
}
#page-top {
    position: fixed;
    right: 15px;
    z-index: 2;
    opacity: 0;
    transform: translateY(100px);
    width: 40px;
    height: 40px;
}
#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}
#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}

.ticker {
    white-space:nowrap;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 3rem;
}
.ticker ul {
    display: flex;
    align-items: center;
    animation: ticker 60s linear infinite;
    margin: 0;
}
.ticker li {
    margin-right: 20px;
    color: #ebf1ff;
    list-style-type: none;
    font-size: 50px;
    font-weight: bold;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
@media screen and (min-width:760px) {
#intro {
    padding-bottom: 0;
}
#recruit .container-fluid {
    position: relative;
}
#recruit .container-fluid::before{
    background-image: url(../img/recruit.jpg);
}
#recruit .inner {
    position: absolute;
    top: 29%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 370px;
    border-radius: 10px;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.5);
}
}
@media screen and (min-width:1200px){
#g-nav ul > li:nth-of-type(6), #g-nav ul > li:nth-of-type(7) {
    display: inline-block;
}
nav ul li a.contact-btn, nav ul li a.tell {
    width: 250px;
    margin-top: 1rem;
    margin-left: 15px;
}
.slider, .slider-item, .slider-item img {
    height: 70vh;
}
h2 {
    font-size: 28px;
    margin-bottom: 1.5rem;
}
section {
    padding: 5rem 0;
}
.container{
    max-width: 1100px;
}
#intro h2 {
    margin: 2rem 0;
}
ul.service-list li {
    width: 19.2%;
}
#service2{
    border: none;
}
#service2 ul.service-list li {
    width: 24.3%;
}
#recruit {
    padding: 3rem;
}
#recruit .container-fluid {
    padding: 0;
}
#recruit .container-fluid::before {
    height: 630px;
}
#recruit .inner {
    top: 35%;
    width: 470px;
    padding: 2rem 0;
}
ul.news-list li {
    display: flex;
    align-items: center;
    padding: 30px 50px 30px 35px;
}
ul.news-list li::after {
    top: 40%;
}
ul.news-list li p {
    width: 150px;
    margin-right: 2rem;
}
a.link-btn {
    margin-top: 2rem;
}
.comanker {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 0;
}
.comanker a {
    margin: 0;
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 20px;
    padding-left: 4.5rem;
    border-radius: 15px;
}
.comanker a::after {
    border-left: 4px solid #1c2b71;
    border-bottom: 4px solid #1c2b71;
    width: 12px;
    height: 12px;
}
#company h3 {
    margin: 3rem 0 .5rem;
}
#company .col-lg-4 p {
    height: 87px;
}
#company .col-lg-4 a.link-btn{
    margin-top: 1rem;
}
#company{
    border: none;
}
#company table th,#company table td {
    padding: 20px;
}
#company table td{
    width: 70%;
}
#company table th {
    padding-left: 2.5rem;
    padding-right: 0;
    width: 30%;
}
#contact h2 {
    font-size: 24px;
}
a.cta-btn {
    width: 530px;
    font-size: 24px;
}
#contact a.tell {
    display: inline-block;
    width: auto;
    background: transparent;
    color: #fff;
    border: none;
    margin: 0 10px;
    font-size: 34px;
}
#contact a.tell::before {
    background-image: url(../img/ico-tell2.png);
}
#contact p {
    font-size: 20px;
}
ul.f-nav {
    display: block;
    padding-left: 0;
}
#f-bottom .col-lg-8 {
    display: flex;
    justify-content: space-between;
}
ul.f-nav li a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}
ul.f-nav li a:hover{
    opacity: 1;
    color: #1c2b71;
}
ul.f-nav li {
    list-style-type: none;
}
ul.f-nav.has-child li ul li a::before {
    content: "";
    width: 10px;
    height: 1px;
    background: #000;
    display: inline-block;
    vertical-align: middle;
    margin-right: 3px;
    margin-left: 3px;
}
ul.f-nav.has-child li ul {
    padding: 0;
}
#f-bottom {
    padding-bottom: 3rem;
}
p.copyright.m-0 {
    margin-top: 3rem !important;
}
}


@media screen and (min-width:1300px) {
#header {
    position: fixed;
    width: 98%;
    background-color: rgba(255, 255, 255, 0.7);
    top: 10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 10px;
    align-items: center;
    justify-content: space-between;
}
nav ul {
    padding: 0;
    margin: 0;
    align-items: center;
}
nav ul li a {
    color: #000;
    padding: 0 5px;
}
nav ul li a.contact-btn, nav ul li a.tell {
    width: 190px;
    margin-top: 0;
    margin-left: 10px;
}
nav ul li a.tell {
    background: transparent;
    color: #000;
    border: none;
    font-size: 20px;
    margin: 0;
}
nav ul li a.tell::before {
    background-image: url(../img/ico-tell1.png);
    width: 18px;
    height: 22px;
}
nav ul li a {
    color: #000;
    padding: 10px;
    border-radius: 10px;
}
nav ul li a:hover{
    opacity: 1;
}
nav li.has-child ul {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    top: 60px;
    width: 260px;
    padding: 10px;
}
nav li.has-child ul li a {
    color: #000;
    border-left: none;
    padding: 10px;
}
nav ul li a:hover,nav li.has-child ul li a:hover {
    opacity: 1;
    background: #fff;
    color: #1c2b71;
    border-radius: 10px;
}
#mainvisual{
    margin: 0;
}
.slider, .slider-item, .slider-item img {
    height: 80vh;
}
#intro{
    position: relative;
    overflow: hidden;
}
#intro img {
    display: none;
}
#intro::before {
    content: "";
    background-image: url(../img/bg-intro.png);
    display: block;
    width: 350px;
    height: 300px;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    z-index: -1;
    left: -7%;
}
#intro::after {
    content: "";
    background-image: url(../img/intro.jpg);
    display: block;
    width: 45%;
    height: 80%;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    z-index: -1;
    right: 0;
    top: 70px;
}
section {
    padding: 6rem 0;
}
.ticker {
    margin-top: 5rem;
}
h2 {
    font-size: 30px;
}
#recruit .inner p {
    font-size: 22px;
}
a.link-btn {
    font-size: 18px;
}
#recruit .inner {
    top: 37%;
}
#g-nav ul > li:nth-of-type(6), #g-nav ul > li:nth-of-type(7) {
    display: block;
}
#header.header-shadow {
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
    transition: 0.5s;
}
}

@media screen and (min-width:1430px) {
#header {
    height: 80px;
}
nav ul li a {
    font-size: 18px;
    padding: 10px 15px;
}
nav ul li a.tell {
    font-size: 24px;
    line-height: 1.2;
}
nav ul li a.tell::before {
    width: 18px;
    height: 25px;
}
nav li.has-child ul {
    top: 70px;
}
nav li.has-child ul li a{
    font-size: 16px;
}
nav ul li a.contact-btn, nav ul li a.tell {
    width: 200px;
}
.slider, .slider-item, .slider-item img {
    height: 100vh;
}
.container {
    max-width: 1200px;
}
section {
    padding: 8rem 0;
}
#intro::after {
    width: 48%;
    top: 6rem;
}
.ticker {
    margin-top: 12rem;
}
#intro::before {
    width: 420px;
    height: 360px;
}
#intro h2 + p {
    line-height: 2;
}
ul.service-list li a {
    height: 140px;
    font-size: 20px;
}
#recruit .container-fluid::before {
    height: 780px;
}
#recruit .inner h2 {
    font-size: 40px;
}
#recruit .inner p {
    font-size: 28px;
}
#recruit .inner {
    top: 35%;
    width: 580px;
    padding: 3rem;
}
#contact, #f-bottom {
    padding: 6rem 0;
}
#f-bottom .logo {
    text-align: left;
}
.logo img {
    width: 300px;
}
ul.f-nav li {
    line-height: 2;
}
#f-bottom {
    padding-bottom: 3rem;
} 
p.copyright.m-0 {
    margin-top: 4rem !important;
}
#page-top {
    right: 45px;
    width: 50px;
    height: 50px;
}
ul.f-nav li a{
    font-size: 18px;
}
}
@media screen and (min-width:1600px) {
nav ul li a {
    font-size: 18px;
    padding: 10px 20px;
}
.container {
    max-width: 1300px;
}
#intro h2 + p {
    font-size: 21px;
}
h2 {
    font-size: 36px;
}
#intro::before {
    width: 500px;
    height: 430px;
    left: -10%;
}
#intro::after {
    top: 7rem;
}
.ticker {
    margin-top: 10rem;
}
ul.service-list li {
    width: 19.3%;
}
ul.service-list li a {
    font-size: 24px;
}
#recruit .container-fluid::before {
    height: 850px;
}
#recruit .inner h2 {
    font-size: 50px;
}
#recruit .inner p {
    font-size: 36px;
}
#recruit a.link-btn {
    font-size: 20px;
    width: 290px;
}
#recruit .inner {
    width: 650px;
}
#company .col-lg-4 p {
    height: auto;
}
#contact h2 {
    font-size: 29px;
}
a.cta-btn {
    width: 680px;
    font-size: 29px;
}
#contact p {
    font-size: 23px;
}
#contact a.tell{
    font-size: 40px;
}
#contact a.tell::before {
    width: 28px;
    height: 32px;
}
#f-bottom .logo img {
    width: 350px;
}
#f-bottom .col-lg-8 {
    justify-content: space-evenly;
}
}

@media screen and (min-width:1900px) {
#header {
    height: 95px;
}
nav li.has-child ul {
    top: 80px;
}
#intro::before {
    width: 650px;
    height: 570px;
    left: -8%;
    top: 100px;
}
.ticker {
    margin-top: 14rem;
}
nav ul li a.tell {
    font-size: 30px;
    width: 230px;
}
#f-bottom .logo img {
    width: 390px;
}
}

/* page */
#page_header {
    margin-top: 70px;
    background-image: url(../img/page-header.png);
    padding: 2.5rem 0;
    background-size: cover;
}
h1.page-title {
    margin: 0;
    color: #1c2b71;
    font-weight: bold;
    font-size: 25px;
}
h1.page-title small {
    font-size: 20px;
}
.bread {
    margin: 5px 0;
}
.bread a,.bread span {
    padding: 3px;
    color: #000;
}
ul.anker-link {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    padding: 0 20px;
    gap: 10px;
}

ul.anker-link li {
    list-style-type: none;
}
ul.anker-link li a {
    display: flex;
    background: #f5f8ff;
    padding: 10px 20px;
    border-radius: 5px;
    color: #1c2b71;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    align-items: center;
    position: relative;
    top: 0;
}
ul.anker-link li a:hover {
    opacity: 1;
    top: 3px;
    transition: 0.5s;
}

ul.anker-link li a::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid;
    border-right: 2px solid;
    transform: rotate(135deg);
    margin-right: 10px;
}
#page-content {
    padding: 2rem 0;
}
#page-content section.wp-block-group {
    padding: 3rem 0;
}
section > .wp-block-group__inner-container {
    padding: 0 1rem;
    overflow: hidden;
}
h2.wp-block-heading {
    position: relative;
    padding: 10px 5px 10px 42px;
    background: #1c2b71;
    font-size: 23px;
    color: white;
    margin-left: -20px;
    line-height: 1.3;
    z-index: 0;
    text-align: left;
    margin-bottom: 1.5rem;
}
h2.wp-block-heading:before {
  position: absolute;
  content: '';
  left: -2px;
  top: -2px;
  border: none;
  border-left: solid 40px white;
  border-bottom: solid 79px transparent;
  z-index:-2;
}
#page-content section.has-background h2.wp-block-heading:before {
    border-left: solid 40px #f5f8ff;
}
.page-id-101 #page-content section.has-background h2.wp-block-heading:before {
    border-left: solid 40px #e6f4f1;
}
h3.wp-block-heading {
    color: #1c2b71;
    font-size: 20px;
    border-bottom: 3px solid;
    padding-bottom: 5px;
    margin: 2rem 0 1rem;
    padding-left: 10px;
}
:where(.wp-block-columns.is-layout-flex) {
    gap: 0em;
}
.wp-block-columns.card-list {
    gap: 10px;
}
.wp-block-columns.card-list h3 {
    border: none;
    text-align: center;
    margin: 0 0 1rem;
}
.wp-block-columns.card-list .wp-block-column,
.wp-block-group.box,
.wp-block-group.box2 {
    background: #fff;
    padding: 2rem 1rem;
    border-radius: 15px;
    border: 2px solid #1c2b71;
}
.wp-block-columns.card-list .wp-block-column p {
    margin: 0;
}
.wp-block-group.box,
.wp-block-group.box a {
    color: #1c2b71;
}
.wp-block-group.box2 {
    padding: 0;
}
.wp-block-group.box2 h4 {
    background:  #1c2b71;
    color: #fff;
    font-weight: bold;
    text-align: center;
    border-radius: 12px 12px 0 0;
    padding: 10px;
    font-size: 18px;
    margin: 0;
}
.wp-block-group.box2 p {
    padding: 1rem;
    font-weight: bold;
    margin: 0;
}
.accordion {
    border: 2px solid #1c2b71;
    border-radius: 5px;
    padding: 1rem;
    background: #fff;
}
.accordion summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    color: #1c2b71;
    font-weight: 600;
    cursor: pointer;
    font-size: 20px;
}
.accordion summary::-webkit-details-marker {
    display: none;
}
.accordion summary::before,
.accordion summary::after {
    width: 3px;
    height: .9em;
    border-radius: 5px;
    background-color: #1c2b71;
    content: '';
}
.accordion summary::before {
    position: absolute;
    right: 0;
    rotate: 90deg;
}
.accordion summary::after {
    transition: rotate .3s;
}
.accordion[open] summary::after {
    rotate: 90deg;
}
.accordion h3.wp-block-heading {
    border-bottom: 2px dotted;
    padding: 0 0 .5rem;
    display: flex;
    align-items: baseline;
}

figcaption {
    text-align: center;
}
.accordion img{
    width: 100%;
}
.accordion .wp-block-group {
    border-bottom: 3px solid #1c2b71;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    position: relative;
}
.accordion .wp-block-group::after {
    background-color: #1c2b71;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    height: 20px;
    width: 70px;
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
    bottom: -21px;
}

.accordion h3.wp-block-heading span {
    background: #1c2b71;
    color: #fff;
    padding: 5px;
    display: inline-block;
    margin-right: 10px;
}
.accordion .wp-block-group:last-child::after {
    display: none;
}
.accordion .wp-block-group:last-child {
    margin: 0;
}
.wp-block-image img {
    width: 100%;
}
h4.wp-block-heading {
    background: #f5f8ff;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #1c2b71;
    margin-bottom: 1rem;
}
.page-id-33 h4.wp-block-heading.ch {
    background: #fff;
}
#page-content section.wp-block-group a:not(.link-btn) {
    color: #1c2b71;
}
.wp-block-group.hinode {
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    color: #1c2b71;
    font-weight: bold;
    font-size: 18px;
}
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr td {
    padding: 20px;
    border: none;
}

.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr {
    border-top: 1px solid;
    border-bottom: 1px solid;
}
.page-id-127 #page-content ,.page-id-169 #page-content,.page-id-202 #page-content,.page-id-33 #page-content{
    padding-bottom: 0;
}

p.tell {
    font-size: 24px;
    font-weight: bold;
}
p.tell small {
    font-size: 15px;
    display: block;
    line-height: 1;
}
p.notice {
    background: #f5f8ff;
    padding: 1rem;
    margin: 2rem 0 0;
    font-weight: bold;
    border: 3px solid #1c2b71;
    border-radius: 6px;
}
#snow-monkey-form-206 {
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
}
.smf-item label {
    font-weight: bold;
}
.smf-item label strong {
    color: red;
    font-size: 12px;
    vertical-align: middle;
    margin-left: 5px;
}
.wp-block-snow-monkey-forms-item.smf-item {
    border-top: 1px solid #ddd;
    padding: 1rem;
}
.smf-action .smf-button-control__control {
    background: #1c2b71;
    border: none;
    color: #fff;
    font-weight: bold;
    padding: 15px 40px;
}
@media screen  and (min-width:760px) {
section > .wp-block-group__inner-container {
    max-width: 720px;
    margin: 0 auto;
}
 #page-content iframe {
    width: 100%;
    height: 400px;
}
#snow-monkey-form-206 {
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}
}
@media screen and (min-width:1200px) {
p, th, td,ul.news-list li p,ul.news-list li h3,#page-content section.wp-block-group li,ul.anker-link li a,.smf-item label {
    font-size: 18px;
}
#company .col-lg-4 p,#f-bottom p {
    font-size: 16px;
}
.bread {
    margin: 0 auto;
    padding: 2rem 0 0;
}
section > .wp-block-group__inner-container {
    max-width: 1100px;
}
#page_header {
    height: 270px;
    background-size: cover;
    display: flex;
    align-items: center;
}
h1.page-title {
    font-size: 40px;
}
h1.page-title small {
    font-size: 30px;
}
ul.anker-link {
    gap: 20px;
}
#page-content section.wp-block-group {
    padding: 5rem 0;
}
h2.wp-block-heading {
    font-size: 30px;
}
.wp-block-group.box ul.wp-block-list.d-lg-flex li {
    width: 43%;
}
:where(.wp-block-columns.is-layout-flex) {
    gap: 1em;
}
.wp-block-group.box ul.wp-block-list.d-lg-flex.w-5 li {
    width: 20%;
}
.wp-block-group.box ul.wp-block-list.d-lg-flex.w-3 li {
    width: 33%;
}
h3.wp-block-heading {
    margin-top: 3rem;
}
.wp-block-group.box2 h4 {
    font-size: 22px;
}
.wp-block-group.box2 p {
    padding: 2rem;
    text-align: center;
    font-size: 18px;
}
.accordion {
    margin-top: 2rem;
    border-radius: 10px;
    padding: 2rem;
}
.wp-block-group.hinode p {
    font-size: 22px;
}
.accordion table tr td:nth-of-type(1) {
    width: 10% !important;
}
 #page-content iframe {
    height: 600px;
}
.smf-form {
    max-width: 950px;
    margin: 0 auto;
}
.wp-block-snow-monkey-forms-item.smf-item {
    padding: 2rem;
}
.smf-select-control {
    width: 100%;
}
p.tell {
    font-size: 35px;
}
p.tell small {
    font-size: 18px;
}
ul.slist {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}
ul.slist li {
    width: 33%;
}
}
@media screen and (min-width:1300px) {
#page_header {
    margin: 0;
    height: 400px;
}
h1.page-title {
    font-size: 50px;
}
ul.anker-link li a {
    padding: 15px 30px;
}
#page-content section.wp-block-group {
    padding: 6rem 0;
}
}
@media screen and (min-width:1400px) {
#page_header {
    height: 460px;
}
section > .wp-block-group__inner-container {
    max-width: 1200px;
}
h2.wp-block-heading {
    font-size: 36px;
}
h3.wp-block-heading {
    font-size: 28px;
    margin-top: 3rem;
}
.wp-block-columns.card-list {
    gap: 1em;
}
.wp-block-group.box2 h4 {
    font-size: 28px;
}
.wp-block-group.box2 p {
    font-size: 21px;
}
.accordion summary {
    font-size: 28px;
}
.accordion .wp-block-group {
    padding-bottom: 2rem;
}
h4.wp-block-heading {
    font-size: 22px;
}
.wp-block-group.hinode p {
    font-size: 28px;
}
.wp-block-group.hinode img {
    width: 1100px;
    margin-top: 1rem;
}
.wp-block-columns.card-list h3 {
    font-size: 22px;
}
 #page-content iframe {
    height: 660px;
}
}
@media screen and (min-width:1600px) {
section > .wp-block-group__inner-container {
    max-width: 1300px;
}
#page_header {
    height: 600px;
}
h1.page-title {
    font-size: 60px;
    margin-top: 3rem;
}
h1.page-title small {
    font-size: 40px;
    display: block;
    line-height: 1.6;
}
h3.wp-block-heading {
    margin-top: 5rem;
}
h3.wp-block-heading:nth-of-type(1) {
    margin-top: 3rem;
}
#page-content iframe {
    height: 720px;
}
}

/* news */
.wp-pagenavi {
    margin: 2rem auto;
    text-align: center;
}
.wp-pagenavi span.pages {
    display: none;
}
.wp-pagenavi a, .wp-pagenavi span {
    color: #1c2b71;
    border: 1px solid #1c2b71 !important;
    padding: 5px 10px !important;
}
.wp-pagenavi span.current {
	font-weight: bold;
	background: #1c2b71;
	color: #fff;
}
.entry-pager {
    display: flex;
    margin: 2rem 0;
    justify-content: space-between;
    align-items: center;
}
.back a,.next a {
    color: #000!important;
    text-decoration: none;
    border: 1px solid #1c2b71;
    display: block;
    padding: 10px 20px;
    border-radius: 5px;
    position: relative;
}
.back a::before, .next a::after {
    content: "";
    color: #1c2b71;
    content: "";
    display: inline-block;
    border-left: 3px solid #1c2b71;
    border-bottom: 3px solid #1c2b71;
    width: 10px;
    height: 10px;
    top: 36%;
    right: 15px;
    transform: rotate(45deg);
    margin-right: 5px;
}
.next a::after {
	transform: rotate(225deg);
	margin-right: 0;
	margin-left: 5px;
}
@media screen and (min-width:1200px) {
.single-news #page-content {
    padding: 5rem 0 8rem;
}
}