@charset "UTF-8";

/* * {
  outline: 1px solid red;
} */

/* sp 390~767px tablet 768~959px pc 960px~ */
* {
    box-sizing: border-box;
}
:root {
    --li_orange: #f7db9a;
    --usuorange: #f7c44f;
    --orange: #fab005;
    --broun: #4c3725;
    --grey: #747d78;
    --black: #183153;
    --green: #c5deca;
    --bace: #fdfdfd;
}

body {
    overflow-x: hidden;
    color: var(--black);
    font-family: "Shippori Mincho", serif;
}
main {

}

img {
    width: 100%;
}

.heading {
    display: block;
    position: relative;
    margin-bottom: 4rem;
}

.heading::before {
    display: block;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
    border-radius: 2px;
    background-color: var(--orange);
    content: "";

    -webkit-transform: translateX(-50%);
}

/* ローディング画面 */
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: var(--orange);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.spinner {
  width: 100px;
  height: 100px;
  margin: 45vh auto;
  background-color: #fff;
  border-radius: 100%;
  animation: sk-scaleout 1s infinite ease-in-out;
}
/* ローディングアニメーション */
@keyframes sk-scaleout {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.loaded {
  opacity: 0;
  visibility: hidden;

}

/*====================================
ナビゲーションのためのCSS 
====================================*/
/*--------------------------------------
header
--------------------------------------*/

.l-header {
    display: block;
    z-index: 999;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 110px;
    background-color: #f7c54f;
  }
  
  
  .c-hamburger {
    position: relative;
    width: inherit;
    height: inherit;
    margin: 0;
    border: transparent;
    background-color: transparent;
    cursor: pointer;
  }
  
  
  
  .c-hamburger span {
    display: block;
    position: relative;
    left: 50%;
    width: 32px;
    height: 3px;
    transform: translateX(-50%);
    background: var(--bace);
    transition: all 0.4s;
  }
  
  .c-hamburger span:nth-of-type(1) {
    top: -4px;
  }
  
  .c-hamburger span:nth-of-type(2) {
    top: 1px;
  
    transform: translateX(-0.45deg);
  }
  
  .c-hamburger span:nth-of-type(3) {
    top: 6px;
    transform: translateX(-0.45deg);
  }
  
  
  
  .c-hamburger.is-active span:nth-of-type(1) {
    top: 0;
    transform: translateX(-50%) rotate(225deg);
  }
  
  .c-hamburger.is-active span:nth-of-type(2) {
    opacity: 0;
  }
  
  .c-hamburger.is-active span:nth-of-type(3) {
    top: -4px;
    transform: translateX(-50%) rotate(-225deg);
  }
  
  
  
  
  .p-header__nav {
    display: flex;
    z-index: 10;
    position: absolute;
    top: 0;
    right: -100%;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background: transparent;
    opacity: 0;
    transition: top 0.6s, right 0.6s, opacity 0.6s;
  }
  
  .p-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: inherit;
    padding: 0 80px 0 10px;

  }


  .p-header__title > a{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
  }
  h1{
    display: flex;
    justify-content: center;
    align-items: center;

  }

  .p-header__title > a > h1 > img{
    /* width: clamp(10rem, 9.545rem + 2.27vw, 11.25rem); */
    width: clamp(7.813rem, 7.472rem + 1.7vw, 8.75rem);
  }
  
  .p-header__hamburger {
    z-index: 100;
    position: absolute;
    top: 0;
    right: 0;
    width: 95px;
    height: 100%;
  }
  
  .p-header__nav.is-active {
    position: fixed;
    top: 0;
    right: 0;
    opacity: 1;
    background-color: var(--usuorange);
  }
  
  .p-nav__list {
    display: block;
    padding-right: 20px;
    padding-left: 20px;
    place-items: center;
  }
  
  .p-nav__item {
    position: relative;
    
  }
  
  
  .p-nav__link {
    color: var(--bace);
    display: block;
    padding: 20px;
    padding-bottom: 10px;
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: clamp(1.375rem, 1.33rem + 0.23vw, 1.5rem);
    /* font-size: clamp(0.875rem, 0.739rem + 0.68vw, 1.25rem); */
    border-bottom: 1.5px solid #fff;
  }
  
  
  .spnone{
    display: none;
  }
  
  
  
  @media screen and (min-width: 768px) {
    .p-nav__link{
      border-bottom: none;
    }

    .p-header__hamburger {
      display: none;
    }
  
    .p-nav__inner {
      margin-right: auto;
      margin-left: auto;
      max-width: initial;
      width: 100%;
    }
  
    .p-header__nav {
      position: static;
      opacity: 1;
      height: inherit;
      width: initial;
    }
  
    .p-nav__list {
      padding-right: 0;
      padding-left: 0;
      display: flex;
    }
    .spnone{
      
      display: inline-block;
    }
  }




/*====================================
 レイアウト 
 ====================================*/
/*--------------------------------------
 共通
 --------------------------------------*/
 section {
    
    margin-bottom: 5rem;
    padding-top: 40px;
}
.inner {
    width: min(95%, 1366px);
    margin-right: auto;
    margin-left: auto;
    padding-right: 24px;
    padding-left: 24px;
}
h2 {
    margin-bottom: 1rem;
    text-align: center;
}

/*--------------------------------------
 main
 --------------------------------------*/
/*--------------------------------------
 loading
 --------------------------------------*/

/*--------------------------------------
 section hero
 --------------------------------------*/

 .hero{
  margin-bottom: 100px;
 }

 .swiper {
  /*スライダーの幅と高さを調整*/
  width: 100vw;
  height: 100vh;
}

.swiper-slide {
  /*スライド要素の幅と高さを調整*/
  width: 100vw;

  /*テキストの位置調整*/
  display: flex;
  justify-content: center;
  align-items: center;

  /*テキストの色と太さを指定*/
  color: #fff;
  font-weight: bold;
}

/*①各スライドに以下クラスを追加で付与*/
/*②スライド背景色を設定*/
.slide1 {
  background-image: url(../img/hero01.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide2 {
  background-image: url(../img/hero02.jpg);
}

.slide3 {
  background-image: url(../img/hero03.jpg);
}
.slide1, .slide2, .slide3{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}



/*--------------------------------------
 section reasons
 --------------------------------------*/
 .reasons {
    padding: 20px;
    width: 100%;
}

.heading {
    margin-top: 2rem;
    text-align: center;
}

.reason_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;

}

.reasons img {
    width: clamp(4rem, 2.545rem + 7.27vw, 8rem);
    
}
.reasons .concept_text{
    margin-top: 1rem;
}

.reason1, .reason2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .7rem;
}
.reason1 > p, .reason2 > p {
    width: 200px;
    text-align: center;
}

.delay-time02 {
    animation-delay: .2s;
}

.delay-time03 {
    animation-delay: .3s;
}

.delay-time04 {
    animation-delay: .4s;
}
.delay-time05 {
    animation-delay: .5s;
}

.box {
    opacity: 0;
}

/*　エフェクト */

.fadeUp {
    opacity: 0;
    animation-name: fadeUpAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}
@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*--------------------------------------
 tel btn
 --------------------------------------*/
 @media screen and (min-width: 769px) { /* メディアクエリを使ってスマホ用のブレイクポイントを指定 */
  .button003 a{
    display: none;
  }
}

  @media screen and (max-width: 768px) { /* メディアクエリを使ってスマホ用のブレイクポイントを指定 */
    .button003{
      display: inline-block; 
      position: fixed; 
      z-index: 9998; 
      right: 25px;
      bottom: 40px; 
      width: 200px;
      height:56px;
      
    }
    
    .button003 a {
      display: inline-block; 
      background: var(--bace);
      border: 1px solid var(--orange);
      border-radius: 20px;
      position: relative;
      display: flex;
      justify-content: space-around;
      align-items: center;
      margin: 0px auto;
      
      max-width: 280px;
      height: 70px;
      padding: 10px 25px;
      color: var(--orange);
      transition: 0.3s ease-in-out;
      font-weight: bold;
    }
    .button003 a:hover {
      background: var(--orange);
      color: var(--bace);
      border: 1px solid var(--bace);
    }
    .button003 a:after {
      content: '';
      width: 5px;
      height: 5px;
      border-top: 3px solid var(--orange);
      border-right: 3px solid var(--orange);
      transform: rotate(45deg) translateY(-50%);
      position: absolute;
      top: 50%;
      right: 20px;
      border-radius: 1px;
      transition: 0.3s ease-in-out;
    }
    .button003 a:hover:after {
      border-color: var(--bace);
    }

  }

/*--------------------------------------
 section concept
 --------------------------------------*/

.concept_item{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.concept_text p span {
    font-weight: bold;
}
.concept_item img{
    width: 50%;
}
@media (max-width: 768px){
    .concept_item{
        flex-direction: column;
    }
    .concept_item img{
        width: 100%;
    }
}


/*--------------------------------------
 section price 
 --------------------------------------*/
 .price {
    padding-bottom: 4rem;
    background-color: var(--li_orange);
}
.p_table {
    border-collapse: collapse;
    background-color: var(--bace);
    border-radius: 10px;
    margin: 0 auto;
    width: clamp(16.875rem, 2.557rem + 71.59vw, 56.25rem);
}
  .p_table th, .p_table td {
    padding: 1em;
  }
  .p_table th {
    border-right: 3px solid var(--li_orange);
    font-weight: bold;
    text-align: left;
    width: 30%;
    min-width: 4em;
    background: var(--bace);
    text-align: center;
    color: var(--black);
    padding: 20px;
  }
  .p_table td{
    padding: 20px;
    padding-top: 10px;
    padding-bottom: 30px;
    text-align: center;
  }
  .table_span{
    font-weight: bold;
    font-size: 1.5rem;
    border-bottom: solid 2px var(--orange);
  }

  @media screen and (max-width: 768px) {
    .p_table th,
    .p_table td {
        border-right:none;
        display: block;
        width: 100%;
    }
    .p_table td{
        border-bottom: solid 3px var(--li_orange);
    }
    .last td{
        border-bottom: none;
        width: 100%;
      }
  }

  .button001 a {
    background: var(--bace);
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 40px auto 0px auto;
    max-width: 280px;
    padding: 10px 25px;
    color: var(--black);
    transition: 0.3s ease-in-out;
    font-weight: bold;
}
.button001 a:hover {
    background: var(--black);
    color: var(--bace);
}
.button001 a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid var(--black);
    border-right: 3px solid var(--black);
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.button001 a:hover:after {
    border-color: var(--bace);
}


.button002{
  width: 300px;
  height: 70px;
}

.button002 a {
  background: var(--orange);
  border-radius: 3px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0px auto;
  max-width: 280px;
  height: 70px;
  padding: 10px 25px;
  color: var(--bace);
  transition: 0.3s ease-in-out;
  font-weight: bold;
}
.button002 a:hover {
  background: var(--bace);
  color: var(--orange);
  border: 1px solid var(--orange);
}
.button002 a:after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid var(--bace);
  border-right: 3px solid var(--bace);
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}
.button002 a:hover:after {
  border-color: var(--orange);
}
/*--------------------------------------
 ninntei sec
 --------------------------------------*/
 .ninteisyo > img{
  width: clamp(18.75rem, 11.932rem + 34.09vw, 37.5rem);
  display: block;
  margin: 0 auto;
 }

 /*--------------------------------------
 link
 --------------------------------------*/
 .link_sec{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
 }
 .button004 a{
  width:234px;
  height:60px;
 }

 @media screen and (max-width: 768px) {
  .link_sec{
    flex-direction: column;
    gap: 20px;

  }
 }

/*--------------------------------------
 footer
 --------------------------------------*/

ul {
    list-style: none;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

hr {
    height: 1px;
    border: 0;
    border-top: 1px solid #e5e7eb;
}

address {
    font-style: normal;
}

.grid {
    display: grid;
    margin-bottom: 1.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .25rem;
}

.footer {
    margin-top: 5rem;
    padding: 32px 32px 92px;
    background: var(--broun);
    color: var(--bace);
    font-size: 15px;
}
.footer__logo{
  width: 30px;
}

.footer__navi-heading {
    margin-bottom: .3rem;
    font-weight: 600;
}

.footer__logo > img {
    width: 60px;
}

.footer__navi li {
    margin-bottom: .75rem;
}

.footer__address {
    margin-bottom: 2rem;
}

.footer__address a {
    text-decoration: underline;
}

@media (min-width: 768px) {
    .md-flex {
        display: flex;
    }

    .md-justify-between {
        justify-content: space-between;
    }

    .grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .footer__address a {
        text-decoration: none;

        pointer-events: none;
    }
}

@media (min-width: 1024px) {
    .lg-flex {
        display: flex;
    }
}

@media (min-width: 1024px) {
    .spbr {
        display: none;
    }
    .reason_list {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-evenly;
        align-items: center;
    }


}


/*====================================
料金表
 ====================================*/
.pricelist{
  margin-top: 80px;
  
}

.pricelist_area{
  
  margin: 0 auto;

  display: flex;
  gap: 10px;
  justify-content: space-evenly;
  align-items: center;
  
}

.pl_table {
  width: 70%;
  border-collapse: collapse;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 8px;
  
  background-color: #fff;
  }
  
  .pl_table > thead th,
  .pl_table > tbody td {
  padding: 10px;
  text-align: center;
  border-bottom: solid 1px #e0e0e0;
  }
  
  .pl_table > thead th {
  background-color: var(--orange);
  color: var(--bace);
  }

  .pl_table tr:nth-child(even){
    background-color: #eee
  }


  @media (max-width: 768px) {
    .pricelist_area{
      flex-direction: column;
    }
    .pl_table{
      width: 80%;
    }
  }

  .pl_date,.pl_text,.pl_zei{
    width: 60%;
    margin: 0 auto 10px;
  }
  .pl_date > p,.pl_zei > p{
    text-align: end;
    font-size: clamp(0.75rem, 0.659rem + 0.45vw, 1rem);
    
  }
  .pl_text {
    margin-bottom: 40px;
  }
  .pl_text > p{
    margin: 0 auto 10px;
  }

  /*====================================
保険html
 ====================================*/

 .nagare_area{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
 }

 .nagare_item{
  padding: 20px;
  width: 30%;
  height: 600px;
  box-shadow: 0px 0px 15px -5px #777777;
  border-radius: 10px;
  position: relative;
 }
 .nagare_item_heading{
  height: 60px;
 }

 .nagare_item_img{
margin-bottom: 20px;
  
 }
 @media (max-width: 768px) {
  .nagare_area{
    flex-direction: column;
  }
  .nagare_item{
    width: 100%;
    height: 100%;
  }
}

 .hoken,.nagare{
  margin-top: 80px;
}
 .hoken_area{
  display: flex;
  flex-direction: column;
  gap: 20px;
 }
 .hoken_date{
  display: flex;
  justify-content: end;
  margin-bottom: 2rem;
 }
 .hoken_text{
  margin-bottom: 2rem;
 }