@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #333; /* RGB */
  /*font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", sans-serif; */
  font-weight: 500; /*フォント太さ*/
  font-size: 1.6em;
  line-height: 2.4rem; /*行の高さ*/
  text-align: center; /*文字の揃える位置*/
  flex-shrink: 0;
}
.main {
  width: 100%;
  overflow: hidden;
}
section h2 {
  font-size: 2.4rem;
}
/*以下ヘッダー*/
a:hover {
  opacity: 1 /*不透明度を示している　*/ ;
}
*, *:before, *:after {
  box-sizing: border-box;
}
#header {
  width: 100%;
  padding-top: 10px;
}
.c-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  padding: 0 30px;
}
.c-header__logo {
  max-width: 25%;
  min-width: 250px;
}
.c-header__logo img {
  width: 100%;
 
}
.c-header__list {
  box-sizing: border-box;
  display: flex;
  margin: 0;
  padding: 0;
  height: 100%;
  
}
.c-header__list-item {
  list-style: none;
  text-decoration: none;
  margin-left: 25px;
}
.c-header__list-link {
  color: #fff;
  font-weight: 500;
  font-size: 1.6rem;
  font-family: "A-OTF UD新ゴ Pro", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  padding: 10px 15px;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.2rem;
  transition: ease 0.1s;
}
.c-header__list-item:last-child a {
  background-color: #fff;
  color: #000;
  border-radius: 40px;
  padding: 10px 30px;
  transition: all 0.3s;
}
.c-header__list-item:last-child a:hover {
  background-color: #FFE100;
  border-bottom: none;
}
.c-header__list-link:hover {
  filter: opacity(1); /* カスタマイズしてください */
  border-bottom: 2px solid #FFE100;
  color: #fff;
}
.c-hamburger-menu {
  padding: 0 40px;
  box-sizing: border-box;
}
@media screen and (max-width: 1160px) {
  .c-hamburger-menu__list {
    display: flex;
    flex-direction: column;
    padding-top: 150px;
  }
  .c-hamburger-menu__list__bg {
    width: 50%;
    height: 100%;
    position: fixed;
    top: 0;
    right: -100%; /*leftの値を変更してメニューを画面外へ*/
    z-index: 10000000;
    background-color: #3584bb;
    background-color: rgba(0, 0, 0, 0.7);
    transition: right 0.5s; /*アニメーション設定*/
  }
  #hamburger:checked ~ .c-hamburger-menu__list__bg {
    right: 0; /*メニューを画面内へ*/
  }
  .c-header__list-item {
    margin: 0 auto 50px;
  }
}
.c-hamburger-menu__input {
  display: none;
}
/*ハンバーガーボタンを押したときに出てくる背景のさらに背景
.c-hamburger-menu__bg {
   right: 0;
        transform: translateX(100%);
        transition: 0.3s;
        width: 40%;
        height: 100vw;
        position: fixed;
		top:0;
		z-index: 10000000;
		padding: 0 ;
}*/
#hamburger:checked ~ .c-hamburger-menu__bg {
  display: block;
}
.c-hamburger-menu__button {
  display: none;
}
@media screen and (max-width: 1160px) {
  .c-hamburger-menu__button {
    align-items: center;
    appearance: none;
    background-color: transparent;
    border: solid 1px #FFE100;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px; /* カスタマイズしてください */
    height: 45px; /* カスタマイズしてください */
    justify-content: center;
    width: 50px; /* カスタマイズしてください */
    position: fixed;
    right: 5%;
    z-index: 100000000;
    top: 40px;
  }
}
.c-hamburger-menu__button-mark {
  background-color: #FFE100; /* カスタマイズしてください */
  display: block;
  height: 1px; /* カスタマイズしてください */
  transition: 0.3s; /* カスタマイズしてください */
  width: 20px; /* カスタマイズしてください */
}
/* ハンバーガーボタン　×動き */
@media screen and (max-width: 1160px) {
  #hamburger:checked ~ .c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(1) {
    transform: translate(2px, 1px) rotate(45deg); /* カスタマイズしてください */
    transform-origin: 0%; /* カスタマイズしてください */
    background-color: #5693B6;
  }
  #hamburger:checked ~ .c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(2) {
    opacity: 0;
  }
  #hamburger:checked ~ .c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(3) {
    transform: translate(2px, 3px) rotate(-45deg); /* カスタマイズしてください */
    transform-origin: 0%; /* カスタマイズしてください */
    background-color: #5693B6;
  }
  #hamburger:checked ~ .c-hamburger-menu__button {
    border-color: #5693B6;
  }
}
@media screen and (min-width: 1160px) {
  /* 固定ヘッダー */
  #header.fixed {
    position: fixed; /*fixedで固定する*/
    top: 0;
    left: 0;
    background-color: rgba(35, 24, 21, 0.20);
    transition: 1.0s; /* ← ゆっくりと変化させる*/
    width: 100%;
    z-index: 1000000;
  }
  /* スクロール後にスタイル変更する箇所 */
  #header.fixed .c-header {
    height: 110px;
  }
  
  #header.fixed .c-header__logo img {
    padding-bottom: 0px;
  }
  /*footerまでスクロールしたら消す*/
  .is-hidden {
    visibility: hidden;
    opacity: 0;
  }
}


/*以下フッター */
hr {
  height: 1px;
  border: 0;
  
}
address {
  font-style: normal;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.25rem;
  margin:  4.5rem 2rem 1.5rem;
}

.footer {
  padding: 100px 10% 10px;
  font-size: 15px;
  color: #fff;
  background:  #373E42;
}

.footer__navi-heading {
  font-weight: 600;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 2rem;
  width: 430px;
  height: 100px;
  padding: 0 10px;
}
.footer__logo img{
width: 100%;
height: auto;
}
.grid-block{
width: 200px;
}
.grid-block:first-child{
margin-right: 100px;
}
.footer__navi li,.footer__navi2 li {
  margin-bottom: 3.75rem;
  list-style: none;
  text-align: left;
}
.footer__navi li a,.footer__navi2 li a{
text-decoration: none;
color: #fff;
font-size: 1.6rem;
font-weight: 500; 
font-family: "A-OTF UD新ゴ Pro", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}



.footer__navi li a::before{
    content: "▶";
	color: #FFE100;
    margin-right: 16px;
    opacity: 0;
    transition: all 0.3s ease;
}
.footer__navi li a::after{
    content: "";
    margin-left: 5px;
}
.footer__navi li a:hover::before{
    margin-left: 25px;
    opacity: 1;
}
.footer__navi2 li:nth-of-type(1) a::before{
    content: "▶";
	color: #FFE100;
    margin-right: 16px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer__navi2 li:nth-of-type(1) a::after{
    content: "";
    margin-left: 5px;
}

.footer__navi2 li:nth-of-type(1) a:hover::before{
    margin-left: 25px;
    opacity: 1;
}

.footer__navi2 li:nth-of-type(2) a::before{
    content: "▶";
	color: #FFE100;
    margin-right: 16px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer__navi2 li:nth-of-type(2) a::after{
    content: "";
    margin-left: 5px;
}

.footer__navi2 li:nth-of-type(2) a:hover::before{
    margin-left: 25px;
    opacity: 1;
}


.footer__navi2 li:last-child a{
color: #000;
background-color: #fff;
padding: 5px 12px ;
border-radius: 50px;
transition: all 0.3s;
margin-left: 16px;
}
.footer__navi2 li:last-child a:hover{
background-color: #FFE100;
}


.footer__address {
  margin-bottom: 2rem;
  text-align: left;
  border-top: 1px solid;
  padding: 35px 20px;
  font-family: "A-OTF UD新ゴ Pro", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}
.footer__address img{
margin-top: 10px;
width: 55px;
}

@media (min-width: 768px) {
  .md-flex {
    display: flex;
  }

  .md-justify-between {
    justify-content: space-between;
  }

  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .footer__address a {
    text-decoration: none;
    pointer-events: none;
  }
	
}

@media (min-width: 1024px) {
  .lg-flex {
    display: flex;
  }
	
}
@media screen and (max-width: 1025px){
	.footer__address{
		text-align: center;
	} 
}
/*.footer {
  background-color: #373E42;
}
.footer-wapper {
  max-width: 1300px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 100px 30px 120px;
}
.footer-company_information {
  max-width: 470px;
}
.footer-company_information-img {
  width: 80%;
  height: 85px;
  margin-bottom: 40px;
}
.footer-company_information-img a {
  width: 100%;
  height: 100%;
}
.footer-company_information-img img {
  width: 100%;
}
.footer-address {
  width: 85%;
  border-top: solid 1px #999999;
  padding-top: 40px;
  padding: 40px 25px 0;
  text-align: left;
}
.footer-address ul {
  list-style: none;
  color: #FFFFFF;
  font-size: 1.6rem;
  margin: 0 auto 30px;
  font-family: "A-OTF UD新ゴ Pro", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}
.footer-phone_number {
  display: flex;
  justify-content: center;
}
.footer-phone_number li {
  padding-right: 25px;
  letter-spacing: 0.05rem;
}
.footer-phone_number li:last-child {
  padding-right: 0
}
.footer-sitemap {
  width: 560px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 65px;
}
.footer-sitemap-list1, .footer-sitemap-list2 {
  width: 180px;
  text-align: left;
  font-family: "A-OTF UD新ゴ Pro", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  letter-spacing: 0.2rem;
}
.footer-sitemap-list1 li, .footer-sitemap-list2 li {
  padding-bottom: 50px;
}
.footer-sitemap-list1 li a, .footer-sitemap-list2 li a {
  text-decoration: none;
  color: #FFFFFF;
  font-size: 1.6rem;
  font-weight: 500;
}
.footer-sitemap-list2 li:last-child a {
  background-color: #fff;
  color: #000000;
  padding: 10px 20px;
  border-radius: 40px;
  transition: all 0.3s;
}
.footer-sitemap-list2 li:last-child a:hover {
  background-color: #EEE467;
}
.footer-copyright {
  background-color: #373E42;
  color: #fff
}
.footer-sitemap-list1 li {
  position: relative;
}
.footer-sitemap-list1 li a:hover .yajirusi {
  display: inline;
}
.footer-sitemap-list2 li {
  position: relative;
}
.footer-sitemap-list2 li a:hover .yajirusi {
  display: inline;
}*/
/*.yajirusi {
  display: none;
  position: absolute;
}
.yajirusi:after {
  position: absolute;
  content: '';
  top: 10px;
  bottom: 0;
  left: -50px;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 6px solid transparent;
  border-right: 0 solid transparent;
  border-left: 9px solid #EEE467;
  border-bottom: 6px solid transparent;
  box-sizing: border-box;
}*/
/*========= スクロールダウンのためのCSS ===============*/
/*=== 9-1-2 丸が動いてスクロールを促す ====*/
/*スクロールダウン全体の場所*/
.scrolldown2 {
  position: absolute;
  bottom: 120px;
  right: 10%;
}
/* 丸の描写 */
.scrolldown2:before {
  content: "Scroll  View";
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: -20px;
  /*丸の形状*/
  height: 200px;
  border-radius: 60px;
  background-color: rgba(55, 62, 66, 1.00);
  color: #fff;
  text-align: center;
  padding-right: 15px;
  font-size: 2rem;
  letter-spacing: 0.05em;
  padding: 20px 10px;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation:
    circlemove 2.5s ease-in-out infinite, cirlemovehide 2.5s ease-out infinite;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  z-index: 100;
}
/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
  0% {
    bottom: 300px;
  }
  100% {
    bottom: -5px;
  }
}
/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
  0% {
    opacity: 0.9;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
/* 線の描写 */
.scrolldown2:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 2px;
  height: 480px;
  background: #373E42;
  z-index: 10;
}
/*=========topに戻るボタンのCSS ===============*/
#p-scroll {
  position: fixed;
  bottom: 60px;
  right: 5%;
  z-index: 100000;
} /*
#p-scroll a {
  text-align: center;
  text-decoration: none;
  background: #EEE467;
  color: #fff;
  padding: 30px;
  border-radius: 50%;
  font-size: 2.5rem;
  position: relative;
  display: block;
  width: 85px;
  height: 85px;
  border: solid 2px #EEE467;
  
}*/
#p-scroll a {
  text-align: center;
  border: solid 2px #fff;
  border-radius: 50%;
  background: #000;
  width: 90px;
  height: 90px;
  display: block;
  font-size: 2.5rem;
  text-decoration: none;
  color: #fff;
}
#p-scroll a::before {
  content: "";
  position: absolute;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 20px solid #fff;
  border-top: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#p-scroll a:hover {
  background: #fff;
  border: solid 2px #FFE100;
}
#p-scroll a:hover::before {
  border-bottom: 20px solid #FFE100;
}
/*ヘッダースマホ*/
@media screen and (max-width: 430px) {
  .c-header {
    height: 100px;
    padding: 10px 20px;
  }
  .c-header__logo img {
    padding-bottom: 0;
  }
  .c-hamburger-menu__button {
    top: 30px;
  }
  .scrolldown2:before {
    bottom: 0;
    left: -15px;
    /*丸の形状*/
    height: 110px;
    border-radius: 70px;
    padding-right: 10px;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    padding: 5px 3px;
  }
  .scrolldown2:after {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    left: 0;
    /*線の形状*/
    width: 1.5px;
    height: 240px;
    background: #373E42;
    z-index: 10;
  }
  @keyframes circlemove {
    0% {
      bottom: 150px;
    }
    100% {
      bottom: -5px;
    }
  }
}
/*フッダースマホ*/
@media screen and (max-width: 550px) {
  .footer {
    display: none;
  }
}
/*topに戻るボタンのCSSスマホ*/
@media screen and (max-width: 578px) {
  #p-scroll a {
    padding: 20px;
    font-size: 2rem;
  }
  #p-scroll a {
    border: solid 2px #000;
    width: 60px;
    height: 60px;
  }
  #p-scroll a::before {
    content: "";
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-bottom: 15px solid #fff;
  }
  #p-scroll a:hover {
    background: #fff;
    color: #FFE100;
    border: solid 2px #FFE100;
  }
  #p-scroll a:hover::before {
  border-bottom: 15px solid #FFE1007;
}
}