@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
:root {
  --main-color: #0099FF;
  --light-blue--: #CEECFF;
}

/*共通*/

.clausey-top{
  padding-bottom: 12px;
}
.clausey{
  padding-top: 12px;
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  line-height: 1.5;
}
.clausey-pb60{
  padding-top: 12px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  line-height: 1.5;
}
.clausey-pb30{
  padding-top: 12px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  line-height: 1.5;
}

@media (max-width: 767px){
  .clausey-top{
    font-size: 16px;
  }
  .clausey{
    padding-top: 20px;
    row-gap: 16px;
    font-size: 16px;
  }
  .clausey-sp-pb30{
    padding-top: 20px;
    padding-bottom: 30px;
    row-gap: 16px;
    font-size: 16px;
  }
  .clausey-sp-pb24{
    padding-top: 20px;
    padding-bottom: 24px;
    row-gap: 16px;
    font-size: 16px;
  }
}
.ol-list{
  padding-left: 14px;
  display: flex;
  flex-direction: column;
  row-gap: 4px;
  line-height: 1.5;
}
.ol-list-lg{
  padding-left: 14px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  line-height: 1.5;
}
.ol-list-nops{
  display: flex;
  flex-direction: column;
  row-gap: 4px;
  line-height: 1.5;
}
.ul-list{
  padding-left: 14px;
  display: flex;
  flex-direction: column;
  row-gap: 4px;
  line-height: 1.5;
  text-indent: 14px;
}
.--indent{
  text-indent: -10px;
  display: inline-block;
}
.p-yakkan-content-info{
  padding-left: 14px;
  line-height: 1.5;
}


.lh-lg{
  line-height: 1.5;
}

.px-16{
  padding-left: 16px;
  padding-right: 16px;
}

.mb-30{
margin-bottom: 30px;
}
.mb-64{
margin-bottom: 64px;
}
.ms-24{
  margin-left: 24px;
}

.d-inline-block{
  display: inline-block;
}


body{
  font-family: "Noto Sans JP", serif;

}
 @media (max-width: 767px){
  html {
    scroll-padding-top: 80px; 
  } 
  .pb-sp-30{
    padding-bottom: 30px;
  }
  .pb-sp-24{
    padding-bottom: 24px;
  }
  .mb-sp-60{
    margin-bottom: 60px;
  }
  .ms-sp-0{
    margin-left: 0;
  }
}


/*================================
    hamburger btn
=================================*/

.header-hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 24px;
  z-index: 101;
  display: none;
}

.header-hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--main-color); /* Replace with actual color value */
  border-radius: 10px;
  transition-duration: 0.3s;
  transition-property: transform, opacity, top, background-color;
}

.header-hamburger span:nth-child(1) {
  top: 0px;
}
.header-hamburger span:nth-child(2) {
  top: 8px;
}
.header-hamburger span:nth-child(3) {
  top: 16px;
}

.header-hamburger.-open span:nth-child(1) {
  top: 10px;
  transform:  rotate(45deg);
}
.header-hamburger.-open span:nth-child(2) {
  opacity: 0;
}

.header-hamburger.-open span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}
@media (max-width: 1080px){
  .header-hamburger{
    display: block;
  }
}



/*================================
    fixed menu
=================================*/

.ham-anchor-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  height: 100dvh;
	overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  background-color: #fff;
  transition-duration: 0.3s;
  transition-property: all;
  z-index: 100;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}

.ham-anchor-menu.-show {
  visibility: visible;
  transform: translateX(0);
}

.ham-anchor-menu__area{
  padding: 80px 24px;
  padding-top: 80px;
  padding-bottom: 80px;
  margin: 0 auto;
}

.ham-menu-top__list{
  margin-left: -8px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.ham-menu-top__link{
  padding: 2px 8px;
  padding-left: 0;
  padding-left: 28px;
  position: relative;
  display: inline-block;
  color: #333;
  font-weight: 700;
/* border: black 1px solid; */
  border-radius: 50px;
  transition: 0.2s;
  background-color: transparent;
  font-size: 16px;
  line-height: 1.3;
}

.ham-menu-top__link::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(calc(-50% + 1px));
  width: 10px;
  height: 10px;
  background-color: var(--main-color);
  mask-image: url(../new-common/image/icon_nav-arrow-right.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  transition: 0.2s;
}
.ham-menu-top__link:hover {
  color: #fff;
  background-color: var(--main-color);
}
.ham-menu-top__link:hover::before {
  background-color: #fff;
}


/*================================
   link-lower
=================================*/

.ham-menu-lower__list{
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.ham-menu-lower__link{
  text-decoration: underline;
  font-size: 14px;
  color: #666;
}

.ham-menu-lower__link:hover{
  text-decoration: none;
}

/*================================
    anchor-sp
=================================*/
.p-yakkan-anchor-sp{
  display: none;
}
.p-yakkan-anchor-sp__row{
  /* width: fit-content; */
  max-width: 384px;
  margin: 0 auto;
  margin-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 24px;
}

.p-yakkan-anchor-sp li{
  position: relative;

}
.p-yakkan-anchor-sp li::after{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(calc(-50% - 2px));
  content: "";
  display: inline-block; /* 或 block，看需求 */
  width: 16px;
  height: 10px;
  background-image: url("../yakkan/images/arrow_down_black.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.p-yakkan-anchor-sp__link{
  display: inline-block;
  width: 100%;
  padding-right: 24px;
  padding-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid #6B6B6B;
    /* outline: 1px solid red; */
}


@media (max-width: 767px) {
  .p-yakkan-anchor-sp{
    display: block;
  }
}



/*================================
    header
=================================*/

.l-header__logo-section{
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header__logo-section a:hover{
  opacity: .7;
}
.l-header__logo-section img{
  width: 295px;
  height: 56px;
}
.l-header__logo-section-text{
  font-size: 10px;
}

.l-header__title-section{
  margin-bottom: 20px;
  height: 104px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../new-common/image/header.jpg);
  background-color: var(--main-color);
  display: flex;
  align-items: center;
}

.l-header__title-section-title{
  width: 844px;
  margin: 0 auto;
  font-size: 40px;
  color: #fff;
  letter-spacing: 0.02em;
  font-weight: 300;
  /* outline: 1px solid red; */
}

@media (max-width: 1080px) {

  .l-header__title-section{
    margin-bottom: 0;
    /* height: 90px; */
  }
  
  .l-header__logo-section-text {
    display: none;
  }
  .l-headerNav{
    display: none;

  }
}

@media (max-width: 960px) {
  .l-header__title-section-title{
    font-size: 30px;
    width: fit-content;
    padding-left: 30px;
    padding-right: 30px;
  }
  .l-header__title-section{
    height: 126px;
  }
}

@media (max-width: 767px) {
  .l-header__logo-section{
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    background-color: #fff;
    z-index: 10;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.10);
    /* border: red 1px solid; */
  }
  .l-header__logo-section{
    padding: 10px 20px;
  }
  .l-header__logo-section img{
    width: 200px;
    height: 38px;
  }
  .l-header{
    padding-top: 58px;
  }
  
}

/*================================
    nav
=================================*/
.l-headerNav{
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 12px;
}
.l-headerNav__list{
  display: flex;
  column-gap: 8px;
}
.l-headerNav__link{
  padding: 4px 12px;
  padding-left: 26px;
  position: relative;
  display: inline-block;
  color: var(--main-color);
  font-weight: 500;
  border-radius: 50px;
  transition: 0.2s;
  background-color: transparent;
}

.l-headerNav__link::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(calc(-50% + 1px));
  width: 10px;
  height: 10px;
  background-color: var(--main-color);
  mask-image: url(../new-common/image/icon_nav-arrow-right.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  transition: 0.2s;
}
.l-headerNav__link:hover {
  color: #fff;
  background-color: var(--main-color);
}
.l-headerNav__link:hover::before {
  background-color: #fff;
}

/*================================
   Breadcrumb
=================================*/

.l-headerBreadcrumb{
  margin-bottom: 20px;
}
.l-headerBreadcrumb__row{
  max-width: 900px;
  margin: 0 auto;
  background-color: #F6F6F6;
  display: flex;
  justify-content: end;
  align-items: center;
  height: 20px;
}
@media (max-width: 1080px) {
  .l-headerBreadcrumb__row{
    justify-content: start;
    }
  }
@media (max-width: 767px) {
  .l-headerBreadcrumb{
    margin-bottom: 40px;
    }
  }

.l-headerBreadcrumb__home-img{
  width: 16px;
  height: 16px;
  vertical-align: middle;
}
.l-headerBreadcrumb__home-link{
  position: relative;
  padding-left: 20px;
  padding-right: 46px;
  display: flex;
  align-items: center;
  transition: .2s;
}
.l-headerBreadcrumb__home-link:hover{
  opacity: .7;
}
.l-headerBreadcrumb__home-link::after{
  content: "";
  position: absolute;
  top: 50%;
   right: 20px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-color: #CDCDCD;
  mask-image: url(../new-common/image/icon_breadcrumb-arrow.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  transition: 0.2s;
}
.l-headerBreadcrumb__current{
  position: relative;
  padding-right: 10px;
  font-size: 12px;
}


/*================================
   Download-btn
=================================*/

.c-download-btn{
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}
.c-download-btn__link{
  position: relative;
  padding-left: 20px;
  display: inline-block;
  width: 280px;
  height: 50px;
  color: var(--main-color);
  font-size: 16px;
  border: 1px solid var(--main-color);
  border-radius: 4px;
  line-height: 47px;
  overflow: hidden;
  transition: ease .2s;
}
.c-download-btn__text{
  position: relative;
	z-index: 3;
}

.c-download-btn__icon{
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50%));
  right: 20px;
  width: 24px;
  height: 24px;
  background-color: var(--main-color);
  mask: url('../new-common/image/icon_pdf.svg') no-repeat center;
  mask-size: contain;
  z-index: 3;
}
.c-download-btn__link:hover{
  color: #fff;
}
.c-download-btn__link:hover .c-download-btn__icon{
  background-color: #fff;
}
.c-download-btn__link.--bg:before {
 	content: '';
 	position: absolute;
  left: 0;
 	bottom:0;
 	z-index: 2;
 	background:  var(--main-color);
 	width: 100%;
	height: 0;
 	transition:.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}

.c-download-btn__link.--bg:hover:before{
	 height: 100%;
 	 background-color: var(--main-color);
}



/*================================
   yakkan
=================================*/

.p-yakkan{
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  column-gap: 18px;
}

.p-yakkan__index-title{
  padding: 4px 10px ;
  font-weight: 700;
  background-color: #333;
  color: #fff;
}

.p-yakkan__index{
  width: 100%;
  display: inline-block;
  position: relative;
  padding: 8px 10px ;
  padding-left: 24px;
  font-size: 12px;
  border: 1px solid #CDCDCD;
  border-top: none;
  background-color: #F6F6F6;
}
.p-yakkan__index:hover{
  text-decoration: underline;
}

.p-yakkan__index::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color:var(--main-color);
  mask-image: url(./images/icon_arrow_down.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
}
.c-heading{
  padding-left: 8px;
  font-size: 32px;
  font-weight: 300;
  color: #fff;
  background-color: var(--main-color);
  border-top: 4px solid var(--light-blue--);
  border-left: 4px solid var(--light-blue--);
  line-height: 1.5;

}
.p-yakkan-content{
  padding: 24px 20px 0;
}

.c-sub-heading{
  padding: 6px 15px;
  font-size: 14px;
  font-weight: 700;
  background-color: var(--light-blue--);
}

.--num{
  text-indent: -14px;
  padding-left: 14px;
}

@media (max-width: 1080px) {
  .p-yakkan{
    max-width: 940px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .p-yakkan{
    grid-template-columns: 1fr;;
    column-gap: 0;
  }
  .p-yakkan-index{
    display: none;
  }
  .p-yakkan-content{
    padding: 24px 0 0;
  }
  .p-yakkan-content h3{
    font-size: 16px;
  }
  .c-heading{
    font-size: 28px;
    font-weight: 300;
    padding-bottom: 5px;
  }
}

/*================================
    footer
=================================*/
.l-footer__top{
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 11px;
  border-bottom: 5px solid var(--main-color);
}

.l-footer__list{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  row-gap: 8px;
}

.l-footer__link{
  display: inline-block;
  text-decoration: underline;
  padding: 2px 8px;
  font-size: 12px;
  color: #6B6B6B;
  border-right: 1px solid #CDCDCD;
}
.l-footer__list li:last-child .l-footer__link {
  border-right: none;
}

.l-footer__link:hover{
  text-decoration: none;
}

.l-footer__page-top{
  position: absolute;
  right: 0px;
  bottom: 0;
  display: inline-block;
  width: 100px;
  height: 17px;
  background-image: url('../new-common/image/fpagetop.gif');
  background-size: cover;
  background-repeat: no-repeat;
  vertical-align: bottom;
}
.l-footer__page-top:hover {
    background-image: url('../new-common/image/fpagetop_o.gif');
}

.l-footer__page-lower{
  padding-top: 4px;
  padding-bottom: 10px;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.l-footer__page-lower-list{
  display: flex;
  font-size: 10px;
  color: #6B6B6B;
}

.l-footer__page-lower-list{
  display: flex;
  column-gap: 24px;
}
.l-footer__page-lower-link{
  padding-left: 12px;
  position: relative;
  display: inline-block;
  /* transition: opacity  0.1s ease-out; */
}
.l-footer__page-lower-link:hover{
  opacity: .7;
}

.l-footer__page-lower-link::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(calc(-50% + 1px));
  width: 6px;
  height: 6px;
  background-color: var(--main-color);
  mask-image: url(../new-common/image/icon_nav-arrow-right.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
}

.l-footer__page-lower-text{
  font-size: 10px;
  color: #999;
}

 @media (max-width: 767px){
  .l-footer__list{
    display: none;
  }
  .l-footer__page-lower{
    padding-left: 20px;
    flex-direction: column;
    justify-content: flex-start;
    row-gap: 10px;
  }
  .l-footer__page-top{
    display: block;
    bottom: -0.5px;
  }
 }

 /*================================
   form
=================================*/

.p-yakkan__form {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 13px;
}

.p-yakkan__form th,td{
  width: 50%;
  border: 1px solid #999;
  padding: 4px 12px;
  vertical-align: middle;
}

.p-yakkan__form th{
  font-weight: 400;
  text-align: center;
}

.p-yakkan__form td{
  text-align: left;
}


