body {
  overflow-x: hidden;
  line-height: 2.0;
  font-family: a-otf-ryumin-pr6n, serif;
  font-weight: 100;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

main {
  padding-top:100px;
  position: relative;
  font-family: a-otf-ryumin-pr6n, serif;
  font-weight: 100;
  font-style: normal;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

.logo {
  width: 9.375vw;
  height: auto;
  object-fit: cover;
  margin: 0.521vw 1.563vw;
}

#header {
  display: flex;
  position: fixed;
  width: 100vw;
  height: 130px;
  font-size: 0.885vw;
  justify-content: space-between;
  z-index: 999;
  background-color: #fff;
  align-items: center;
}

#header2 nav ul{
  display: block;
  font-family: a-otf-ryumin-pr6n, serif;
}

@media screen and (min-width: 1400px) {
  #header2 {
    display: none;
}

  .responsive_logo {
  display: none;
}
}


@media screen and (min-width: 531px){
    .br-sp {
        display: none;
    }

    #slider_sp {
      display: none;
    }
}

@media screen and (max-width: 1399px) {
  #header2{
    width:100%;
    color: #144d53;
    text-align: center;
    z-index: 3;
}

.responsive_logo {
  position: fixed;
  top: 10px;
  left: 25px;
  width: 130px;
  height: auto;
  z-index: 3;
}

#g-nav2{
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position:fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top:0;
  right: -120%;
  width:100%;
  height: 100vh;/*ナビの高さ*/
  background:#FBFAF8;
  /*動き*/
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav2.panelactive{
  right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav2.panelactive #g-nav-list{
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999; 
  width: 100%;
  height: 100vh;/*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav2 ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/

#g-nav2 li{
list-style: none;
text-align: center;
}

#g-nav2 li a{
color: #144d53;
text-decoration: none;
padding:10px;
display: block;
text-transform: uppercase;
letter-spacing: 0.1em;
font-weight: bold;
font-family: a-otf-ryumin-pr6n, serif;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1{
position:fixed;
z-index: 9999;/*ボタンを最前面に*/
top:10px;
right: 10px;
cursor: pointer;
width: 50px;
height:50px;
}

/*×に変化*/  
.openbtn1 span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #434E48;
  width: 45%;
}

.openbtn1 span:nth-of-type(1) {
top:15px; 
}

.openbtn1 span:nth-of-type(2) {
top:23px;
}

.openbtn1 span:nth-of-type(3) {
top:31px;
}

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

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

.openbtn1.active span:nth-of-type(3){
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
}

@media screen and (max-width: 530px){

  html {
    overflow-x: hidden;
  }

  body {
    overflow-x: hidden;
    line-height: 2.0;
    font-family: a-otf-ryumin-pr6n, serif;
    font-weight: 100;
    font-style: normal;
}
}

@media screen and (max-width: 1399px){
    
    #header {
        visibility: hidden;
    }
}

/*========= ナビゲーションドロップダウンのためのCSS ===============*/

/*==ナビゲーション全体の設定*/
#header nav{
    background:#fff;
    color:#333;
    text-align: center;
    margin-right: 100px;
  }
  /*ナビゲーションを横並びに*/
  nav ul{
    list-style: none;
    display: flex;
    justify-content: center;
  }
  /*2階層目以降は横並びにしない*/
  nav ul ul{
    display: block;
  }
  
  /*下の階層のulや矢印の基点にするためliにrelativeを指定*/
  nav ul li{
    position: relative;
    width: 130px;
    margin: 0 auto;
  }
  
  /*ナビゲーションのリンク設定*/
  nav ul li a{
    display: block;
    text-decoration: none;
    color: #144d53;
    padding:10px;
    transition:all .3s;
  }
  
  nav ul li li a{
    padding: 5px 10px;
  }
  
  nav ul li a:hover{
    color:#BDBDBD; 
  }
  
  /*==矢印の設定*/
  
  /*2階層目を持つliの矢印の設定*/
  nav ul li.has-child::before{
    content:'';
    position: absolute;
    /* ↓以下4行 */
    left:13px;
    top:20px;
    width:8px;
    height:8px;
    /* ここまで */
    border-top: 2px solid #144d53;
    border-right:2px solid #144d53;
    transform: rotate(135deg);
  }
  
  /*3階層目を持つliの矢印の設定*/
  nav ul ul li.has-child::before{
    content:'';
    position: absolute;
    left:-10px;
    top:17px;
    width:6px;
    height:6px;
    border-top: 2px solid #333;
    border-right:2px solid #333;
    transform: rotate(45deg);
  }

  /*== 2・3階層目の共通設定 */
  
  /*下の階層を持っているulの指定*/
  nav li.has-child ul{
      /*絶対配置で位置を指定*/
    position: absolute;
    left:0;
    top:62px;
    z-index: 4;
      /*形状を指定*/
    background:#fff;
    width:180px;
      /*はじめは非表示*/
    visibility: hidden;
    opacity: 0;
      /*アニメーション設定*/
    transition: all .3s;
    white-space: nowrap;
  }
  
  /*hoverしたら表示*/
  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;
  }
  
  /*ナビゲーションaタグの形状*/
  nav li.has-child ul li a{
    color: #434E48;
    text-align: center;
  }
  
  nav li.has-child ul li:last-child a{
    border-bottom:none;
    text-align: center;
  }
  
  nav li.has-child ul li a:hover,
  nav li.has-child ul li a:active{
    background:#fff;
    color: #BDBDBD;
  }
  
  /*==3階層目*/
  
  /*3階層目の位置*/
  nav li.has-child ul ul{
    font-size: 15px;
    top:0;
    left:155px;
    background:#fff;
    width:400px;
    white-space: nowrap;
    margin: 0 auto;
  }

  /* nav ul li li {
    border-bottom:solid 1px rgba(57, 62, 70 , 0.4);
  } */

  nav ul li li li{
    width: 380px;
    /* border-bottom:solid 1px rgba(57, 62, 70,0.4); */
  }
  
  nav li.has-child ul ul li a:hover,
  nav li.has-child ul ul li a:active{
    background:#fff;
  }
  
  
  /*==768px以下の形状*/
  
  @media screen and (max-width:768px){
    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;/*JSで制御するため一旦表示*/
      opacity:1;/*JSで制御するため一旦表示*/
      display: none;/*JSのslidetoggleで表示させるため非表示に*/
      transition:none;/*JSで制御するためCSSのアニメーションを切る*/
    }
  
  /*矢印の位置と向き*/
  
  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);
  }
  
  }

  @media screen and (min-width: 531px){
    .br-sp {
    display:none;
    }
    }

.slash {
  display: flex;
  justify-content: center;
  width: fit-content;
  height: 60px;
  text-align: center;
  align-items: center;
}

/* トップ */
#top {
  display: block;
  position: relative;
}

.top_image {
  display: flex;
  justify-content: center;
  width: 100vw;
  min-height: 85vh;
  object-fit: cover;
}

.scroll {
  background-color: #1a3c40;
  height: 12vh;
}

.scroll p {
  display: flex;
  justify-content: center;
  font-size: 35px;
  color: #FBFAF8;
  padding: 20px;
}

.title {
  text-align: center;
  position: relative;
  font-size: 50px;
  color: #434E48;
  vertical-align:  middle;
}

.title::after {
  background-color: #434E48;
  position: absolute;
  display: block;
  top:-15px;
  left: 0;
  right: 0;
  margin: 0 auto 24px;
  width: 40px;
  height: 2px;
  content: "";
}

.about_business h1,
.access_right_inner h1 {
  color: #FBFAF8;
}

.about_business h1::after,
.access_right_inner h1::after {
  background-color: #FBFAF8;
  position: absolute;
  display: block;
  top:-15px;
  left: 0;
  right: 0;
  margin: 0 auto 24px;
  width: 40px;
  height: 2px;
  content: "";
}

.outline_catch {
  text-align: center;
  font-size: 40px;
  margin: 40px;
}

.alphabet_map {
  color: #AEA5A0;
  position: absolute;
  bottom: -3%;
  left: 0;
  font-size: 16rem;
  opacity: 0.6 !important;
}

.alphabet_contact {
  color: #AEA5A0;
  position: absolute;
  bottom: 24%;
  right: -20%;
  font-size: 23rem;
  line-height: 1.0;
  opacity: 0.6 !important;
  z-index: -1;
  transform:rotate(90deg)
}

@media screen and (max-width: 1300px) {
  .alphabet_map {
    color: #AEA5A0;
    position: absolute;
    bottom: -3%;
    left: 0;
    font-size: 13rem;
    opacity: 0.6 !important;
  }
  
  .alphabet_contact {
    color: #AEA5A0;
    position: absolute;
    bottom: 28%;
    right: -24%;
    font-size: 18rem;
    line-height: 1.0;
    opacity: 0.6 !important;
    z-index: -1;
    transform:rotate(90deg)
  }
}

/* トップ　レスポンシブ */

@media screen and (max-width: 1180px) {
  .title {
    text-align: center;
    position: relative;
    font-size: 35px;
    font-weight: bold;
    color: #434E48;
  }

  .outline_catch {
    text-align: center;
    font-size: 25px;
    margin: 40px;
  }
  
  .colors {
    color: #FBFAF8;
    font-weight: bold;
    margin: 60px auto;
  }
  
  .colors::after {
    background-color: #FBFAF8;
    position: absolute;
    display: block;
    top:-15px;
    left: 0;
    right: 0;
    margin: 0 auto 24px;
    width: 40px;
    height: 2px;
    content: "";
  }
}

@media screen and (max-width: 1024px) {
  .alphabet_map {
    color: #AEA5A0;
    position: absolute;
    bottom: -3%;
    left: 0;
    font-size: 11rem;
    opacity: 0.6 !important;
  }
  
  .alphabet_contact {
    color: #AEA5A0;
    position: absolute;
    bottom: 28%;
    right: -26%;
    font-size: 14rem;
    line-height: 1.0;
    opacity: 0.6 !important;
    z-index: -1;
    transform:rotate(90deg)
  }
}

@media screen and (max-width: 530px) {

main {
padding-top: 0;
}

#top {
  display: block;
}

#slider {
  display: none;
}

#slider_sp {
  height: fit-content;
}

.top_image {
  display: flex;
  justify-content: center;
  width: 100vw;
  min-height: 65vh;
  object-fit: cover;
  vertical-align:bottom;
}

.scroll {
  background-color: #144d53;
  height: 10vh;
}

.scroll p {
  display: flex;
  justify-content: center;
  font-size: 20px;
  color: #FBFAF8;
  padding: 20px;
}

.title {
  text-align: center;
  position: relative;
  font-size: 23px;
  font-weight: bold;
  color: #434E48;
}

.title::after {
  background-color: #434E48;
  position: absolute;
  display: block;
  top:-15px;
  left: 0;
  right: 0;
  margin: 0 auto 24px;
  width: 40px;
  height: 2px;
  content: "";
}

.colors {
  color: #FBFAF8;
  font-weight: bold;
}

.colors::after {
  background-color: #FBFAF8;
  position: absolute;
  display: block;
  top:-15px;
  left: 0;
  right: 0;
  margin: 0 auto 24px;
  width: 40px;
  height: 2px;
  content: "";
}

.outline_catch {
  text-align: center;
  font-size: 20px;
  margin: 25px;
}

.alphabet_map {
  color: #AEA5A0;
  position: absolute;
  bottom: -3%;
  left: 0;
  font-size: 8rem;
  opacity: 0.6 !important;
}

.alphabet_contact {
  color: #AEA5A0;
  position: absolute;
  bottom: 7%;
  left: 30%;
  font-size: 12rem;
  line-height: 1.0;
  opacity: 0.6 !important;
  z-index: -1;
  transform:rotate(90deg)
}

}

/* 事務所概要 */
#outline {
  padding: 100px;
  background-color: #FBFAF8;
}

.outline_text {
  display: flex;
  justify-content: center;
  font-size: 20px;
  margin: 40px;
  color: #434E48;
}

/* #outline {
  padding: 5.208vw;
  background-color: #FBFAF8;
}

.outline_text {
  display: flex;
  justify-content: center;
  margin: 2.083vw;
  color: #434E48;
} */

#under_outline{
  width: 100vw;
  height: 100%;
  background-image: url(../img/outline_background.jpeg);
  background-color:rgba(255,255,255,0.4);
  background-blend-mode:lighten;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0;
  color: #434E48;
}

/* #under_outline{
  width: 100vw;
  height: auto;
  background-image: url(../img/outline_background.jpeg);
  background-color:rgba(255,255,255,0.4);
  background-blend-mode:lighten;
  background-size: 100%;
  padding: 4.167vw 0;
  color: #434E48;
} */

.more_btn {
  display: flex;
  justify-content: center;
  font-size: 20px;
  width: 280px;
  text-align: center;
  padding: 20px 20px;
  background-color: #144d53;
  margin: 40px auto;
  color: #FBFAF8;
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: 200% auto;
  background-image: linear-gradient(to right, #144d53 0%, #144d53 50%, #333 50%, #333 100%);
  transition: color 0.4s, background-position 0.4s;
}

.more_btn:hover {
  background-position: 0 0;
}

/* 事務所概要ここまで */

/* 事務所概要　レスポンシブ */
@media screen and (max-width: 1180px) {
  #outline {
    padding: 100px;
    background-color: #FBFAF8;
  }
  
  .outline_text {
    display: flex;
    justify-content: center;
    font-size: 16px;
    margin: 40px;
    color: #434E48;
  }
}

@media screen and (max-width: 768px) {
  #outline {
    padding: 50px;
    background-color: #FBFAF8;
  }
  
  .outline_text {
    display: flex;
    justify-content: center;
    font-size: 14px;
    margin: 40px;
    color: #434E48;
  }
}

@media screen and (max-width: 530px) {
#outline {
  padding: 50px 15px;
  background-color: #FBFAF8;
}

.outline_text {
  display: flex;
  justify-content: center;
  margin: 15px;
  color: #393e46;
  font-size: 12px;
}

#under_outline{
  width: 100vw;
  height: 100%;
  background-image: url(../img/outline_background_resp.jpeg);
  background-color:rgba(255,255,255,0.6) !important;
  background-blend-mode:lighten;
  background-size: cover;
  padding: 35px 0;
  color: #434E48;
}

.more_btn {
  display: flex;
  justify-content: center;
  width: 200px;
  text-align: center;
  padding: 10px 20px;
  background-color: #144d53;
  margin: 20px auto;
  font-size: 14px;
  color: #FBFAF8;
}
}
/* 事務所概要　スマホ用レスポンシブここまで */

/* 取扱業務 */
#business {
  /* background: linear-gradient(to top right, transparent 50% , #144d53 50%) no-repeat top left / 50% 100%,
    linear-gradient(to top left,transparent 50%, #144d53 50%) no-repeat bottom right/50% 100%; */
  background-color: #307672;
  padding-top:150px;
  padding-bottom:150px;
  position: relative;
  z-index: 1;
}

#business::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border-top: 50vw solid #144d53;
  border-right: 50vw solid transparent;
  border-bottom: 50vw solid transparent;
  border-left: 50vw solid transparent;
  z-index: -1;
}

/* #business {
  background:linear-gradient(to bottom left, #144d53 50%, transparent 50%) top left/ 50% 33% no-repeat,
    linear-gradient(to bottom right, #144d53 50%, transparent 50%) top right / 50% 33% no-repeat;
  background-color: #307672;
  padding-top:7.813vw;
  padding-bottom:7.813vw;
} */

.about_business_content {
  text-align: center;
  background-color: #FBFAF8;
  color: #434E48;
  width: 850px;
  padding:80px;
  margin: 80px auto;
  z-index: 1;
  box-shadow: 10px 10px 66px rgb(0 0 0 / 30%);
}

/* .about_business_content {
  text-align: center;
  background-color: #FBFAF8;
  color: #434E48;
  width: 44.271vw;
  padding:4.167vw;
  margin: 80px auto;
} */

.about_business_title {
  font-size: 25px;
  margin: 20px;
}

/* .about_business_title {
  font-size: 1.302vw;
  margin: 1.042vw;
} */

.gyoumu {
  width: 60%;
  background-color: #FBFAF8;
  margin: 5vw auto 2vw;
  padding: 1.2vw;
  box-shadow: 0 0 8vw #434E48;
}

.gyoumu a {
  color: #434E48;
}

.gyoumu_details {
  display: flex;
  margin: 2.083vw;
  cursor: pointer;
}

.gyoumu_details img {
  transition: transform .6s ease;/* ゆっくり変化させる */
}

.gyoumu_details img:hover {
  transform: scale(1.1); /* 拡大 */
}

/* .gyoumu_details {
  display: flex;
  margin: 2.083vw;
} */

.gyoumu_detail_content {
  margin: 0 auto;
  padding: 2.5vw 2.083vw;
  text-align: center;
}

/* .gyoumu_detail_content {
  margin: 0 auto;
  padding: 3.125vw;
} */

.gyoumu_detail_content2 {
  border-right: solid 1px #333;
  border-left: solid 1px #333;
  margin: 0 auto;
  padding: 2.5vw;
}

.gyoumu_detail_content3 {
  margin: 0 auto;
  padding: 2.5vw 2.083vw;
}

.gyoumu_detail_content4 {
  margin: 0 auto;
  padding: 2.5vw 2.083vw;
}

.gyoumu_detail_content5 {
  margin: 0 auto;
  padding: 2.5vw 1.302vw;
  text-align: center;
}

.gyoumu_detail_content6 {
  margin: 0 auto;
  padding: 2.5vw 0.26vw;
  text-align: center;
}

/* .gyoumu_detail_content2 {
  border-right: solid 1px #333;
  border-left: solid 1px #333;
  margin: 0 auto;
  padding: 3.906vw;
} */

.gyoumu_detail_image {
  width: 5vw;
  height: 5vw;
  margin: 1.823vw 1.563vw;
}

.gyoumu_detail_image2 {
  width: 6vw;
  height: 5vw;
  margin: 1.302vw 3vw 2.5vw;
}

.gyoumu_detail_image3 {
  width: 4.5vw;
  height: 4.5vw;
  margin: 1vw 0.7vw 3.646vw;
}

.gyoumu_detail_image4 {
  width: 4.6vw;
  height: 5.5vw;
  margin: 0.5vw 3.7vw 3.2vw;
}

.gyoumu_detail_image5 {
  width: 4.5vw;
  height: 4.5vw;
  margin: 0.6vw 0.8vw;
}

.gyoumu_detail_image6 {
  width: 7vw;
  height: 4vw;
  margin: 1.2vw 2.5vw 3.2vw;
}

.gyoumu_detail_image7 {
  width: 5vw;
  height: 5vw;
  margin: 1vw 1.7vw 2.5vw;
}

.gyoumu_detail_image8 {
  width: 5vw;
  height: 5vw;
  margin: 1.3vw 1vw;
}

.gyoumu_detail_image9 {
  width: 5vw;
  height: 5vw;
  margin: 1.5vw 3.5vw;
}

.gyoumu_detail_image10 {
  width: 5vw;
  height: 5vw;
  margin: 1.2vw 1.979vw 1.7vw;
}

.gyoumu_detail_image11 {
  width: 5vw;
  height: 5vw;
  margin: 1.2vw 1.563vw;
}

.gyoumu_detail_text {
  font-size: 1.042vw;
  text-align: center;
}

.gyoumu_detail_text2 {
  text-align: center;
  font-size: 1.042vw;
}
/* 取扱業務ここまで */

/* 取扱業務レスポンシブ */
@media screen and (max-width: 1180px) {
  .gyoumu {
    width: 680px;
    background-color: #FBFAF8;
    margin: 5vw auto 2vw;
    padding: 20px;
  }

  .gyoumu_details {
    display: flex;
    margin: 10px;
  }

  .gyoumu_detail_content {
    margin: 0 auto;
    padding: 40px 30px;
    text-align: center;
  }
  
  /* .gyoumu_detail_content {
    margin: 0 auto;
    padding: 3.125vw;
  } */
  
  .gyoumu_detail_content2 {
    border-right: solid 1px #333;
    border-left: solid 1px #333;
    margin: 0 auto;
    padding: 20px ;
  }
  
  .gyoumu_detail_content3 {
    margin: 0 auto;
    padding: 35px 20px;
  }
  
  .gyoumu_detail_content4 {
    margin: 0 auto;
    padding: 35px 26px;
  }
  
  .gyoumu_detail_content5 {
    margin: 0 auto;
    padding: 35px 15px;
    text-align: center;
  }
  
  .gyoumu_detail_content6 {
    margin: 0 auto;
    padding: 35px 30px;
    text-align: center;
  }
  
  /* .gyoumu_detail_content2 {
    border-right: solid 1px #333;
    border-left: solid 1px #333;
    margin: 0 auto;
    padding: 3.906vw;
  } */
  
  .gyoumu_detail_image {
    width: 95px;
    height: 100px;
    margin: 35px 26px;
  }
  
  .gyoumu_detail_image2 {
    width: 110px;
    height: 100px;
    margin: 60px 30px 30px;
  }
  
  .gyoumu_detail_image3 {
    width: 89px;
    height: 110px;
    margin: 20px 36px 35px;
  }
  
  .gyoumu_detail_image4 {
    width: 90px;
    height: 120px;
    margin: 20px 40px 45px;
  }
  
  .gyoumu_detail_image5 {
    width: 90px;
    height: 100px;
    margin: 10px 30px;
  }
  
  .gyoumu_detail_image6 {
    width: 140px;
    height: 90px;
    margin: 40px 15px 55px;
  }
  
  .gyoumu_detail_image7 {
    width: 90px;
    height: 100px;
    margin: 35px 30px;
  }
  
  .gyoumu_detail_image8 {
    width: 90px;
    height: 100px;
    margin: 20px 30px;
  }
  
  .gyoumu_detail_image9 {
    width: 94px;
    height: 100px;
    margin: 35px 38px;
  }
  
  .gyoumu_detail_image10 {
    width: 89px;
    height: 100px;
    margin: 18px 28px 32px;
  }

  .gyoumu_detail_image11 {
    width: 95px;
    height: 100px;
    margin: 35px 26px;
  }
  
  .gyoumu_detail_text {
    font-size: 14px;
    text-align: center;
  }
  
  .gyoumu_detail_text2 {
    width: fit-content;
    text-align: center;
    font-size: 13px;
  }
}

@media screen and (max-width: 1180px) {
  .gyoumu {
    width: 680px;
    background-color: #FBFAF8;
    margin: 5vw auto 2vw;
    padding: 20px;
  }
}

@media screen and (max-width: 530px) {
#business {
  /* background:linear-gradient(to bottom left, #144d53 50%, transparent 50%) top left/ 50% 33% no-repeat,
    linear-gradient(to bottom right, #144d53 50%, transparent 50%) top right / 50% 33% no-repeat; */
  background-color: #307672;
  padding-top:30px;
  padding-bottom:40px;
  width: 100vw;
}

.about_business_content {
  justify-content: center;
  text-align: center;
  background-color: #FBFAF8;
  color: #434E48;
  width: 310px;
  padding:18px;
  margin: 60px auto;
}

.about_business_title {
  font-size: 18px;
  margin: 20px;
  z-index: 1;
}

.about_business_text {
  font-size: 12px;
  padding-bottom: 30px;
}

.gyoumu {
  width: 100vw;
  text-align: center;
  justify-content: center;
  background-color: #FBFAF8;
  margin: vw auto 2vw;
  padding: 5px 0;
}

.gyoumu a {
  color: #434E48;
}

.gyoumu_details {
  display: flex;
  margin: 5px;
}

.gyoumu_detail_content {
  margin: 0 auto;
  padding: 10px;
}

.gyoumu_detail_content2 {
  border-right: solid 1px #333;
  border-left: solid 1px #333;
  margin: 0 auto;
  padding: 13px;
}

.gyoumu_detail_content3 {
  margin: 0 auto;
  padding: 10px;
}

.gyoumu_detail_content4 {
  margin: 0 auto;
  padding: 15px;
}

.gyoumu_detail_content5 {
  margin: 0 auto;
  padding: 8px;
}

.gyoumu_detail_content6 {
  margin: 0 auto;
  padding: 6px 0;
}

.gyoumu_detail_image {
  width: 46px;
  height: 50px;
  margin: 20px 10px;
}

.gyoumu_detail_image2 {
  width: 62px;
  height: 50px;
  margin: 20px 22px 18px;
}

.gyoumu_detail_image3 {
  width: 57px;
  height: 60px;
  margin: 30px 11px 20px;
}

.gyoumu_detail_image4 {
  width: 52px;
  height: 65px;
  margin: 25px 27px 18px;
}

.gyoumu_detail_image5 {
  width: 50px;
  height: 50px;
  margin: 25px 10px 5px;
}

.gyoumu_detail_image6 {
  width: 70px;
  height: 40px;
  margin: 25px 18px 30px;
}

.gyoumu_detail_image7 {
  width: 50px;
  height: 50px;
  margin: 20px 10px;
}

.gyoumu_detail_image8 {
  width: 51px;
  height: 50px;
  margin: 20px 20px;
}

.gyoumu_detail_image9 {
  width: 52px;
  height: 50px;
  margin: 20px 27px;
}

.gyoumu_detail_image10 {
  width: 50px;
  height: 50px;
  margin: 20px 20px;
}

.gyoumu_detail_image11 {
  width: 50px;
  height: 50px;
  margin: 20px 11px;
}

.gyoumu_detail_text {
  text-align: center;
  font-size: 10px;
}

.gyoumu_detail_text2 {
  text-align: center;
  font-size: 10px;
}
}
/* 取扱業務　スマホ用レスポンシブここまで */

/* ニュース */

#news {
  text-align: center;
  background-color: #FBFAF8;
  padding: 80px;
  padding-top:150px;
  padding-bottom:150px;
  color: #434E48;
  position: relative;
}

.slider {
  width: fit-content;
  display: block;
  margin: auto;
  text-align: left;
}

.slider li::after {
  content: 'News';
  color: #AEA5A0;
  position: absolute;
  bottom: -15%;
  right: 0;
  font-size: 16rem;
  opacity: 0.1 !important;
  z-index: -1;
}

@media screen and (max-width: 1300px) {
  .slider li::after {
    content: 'News';
    color: #AEA5A0;
    position: absolute;
    bottom: -15%;
    right: 0;
    font-size: 12rem;
    opacity: 0.1 !important;
    z-index: -1;
  }
}

  /*ニュース1行の周りの余白*/

.slider a{
    display: block;
    padding:20px;
    color: #434E48;
}

/*日付*/
.slider span {
  display:inline-block;
  font-size:0.8rem;
  margin-right:10px;
  color:#777;
}

/* ニュース　スマホ用レスポンシブ */

#news {
  text-align: center;
  padding: 30px;
  padding-top:100px;
  padding-bottom:100px;
  background-color: #FBFAF8;
  color: #434E48;
}

  /*ニュース1行の周りの余白*/
.slider a{
  display: block;
  padding:20px;
  font-size: 20px;
}

/*日付*/
.slider span {
  display:inline-block;
  font-size:16px;
  margin-right:10px;
  color:#777;
}

/* ニュース　スマホ用レスポンシブここまで */

/*768px以下の見た目　※1行のままにしたい場合は不要*/
@media screen and (max-width:768px) {
  .slider {
      padding:20px;
  }

  .slider a{
    font-size: 18px;
  }

  .slider li:last-child {
      border-bottom:none;
  }
  .slider span {
      display:block;
  padding-bottom:10px;
  }

  .slider li::after {
    content: 'News';
    color: #AEA5A0;
    position: absolute;
    bottom: -8%;
    right: 0;
    font-size: 10rem;
    opacity: 0.1 !important;
    z-index: -1;
  }
}

@media screen and (max-width: 530px) {

  .slider {
    padding:20px 0;
    flex-direction: column;
}

  .slider li {
    border-bottom:1px dashed #ccc;
}

.slider a{
  font-size: 13px;
}

/*日付*/
.slider span {
  display:block;
  font-size:12px;
  margin-right:10px;
  color:#777;
}

.slider li::after {
  content: 'News';
  color: #AEA5A0;
  position: absolute;
  bottom: -8%;
  right: 0;
  font-size: 9rem;
  opacity: 0.1 !important;
  z-index: -1;
}

}

/* ニュース　ここまで */


/* アクセス */
.access {
  padding: 80px 0;
  background-color: #144d53;
  padding-top:150px;
  padding-bottom:150px;
  /* background: linear-gradient(
  160deg,
  #48816E 0%,
  #48816E 50%,
  #307672 0%,
  #307672 50%
); */
  position: relative;
}

.access_title {
  font-size: 35px;
  font-weight: bold;
}

.office {
  font-size: 20px;
  margin: 25px 0;
}

.office_train {
  font-size: 25px;
}

.access_contents {
  display: flex;
  justify-content: center;
  color: #FBFAF8;
  position: relative;
  width: auto;
  height:130vh;
}

.access_left {
  position: absolute;
  top: 0;
  left:8%;
  margin: auto 80px;
}

.building{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1 !important;
}

.access_right_inner {
  float: right;
}

.access_right {
  position: absolute;
  top: 10%;
  right: 0;
  width: 45%;
  padding: 5% 15%;
  color: #FBFAF8;
  background-color: #295F4E;
  z-index: -1;
}

.map{
  display: flex;
  margin: 10vw auto 5vw;
  width: 85vw;
  height: 60vh;
}

.access_right a {
  color: #FBFAF8;
}

.phonenumber {
  font-size: 20px;
  border-bottom: solid 1px #FBFAF8;
  width: fit-content;
  margin: 10px 0;
}

.sns {
  display: flex;
  margin: 20px 0;
}

.sns_image {
  width: 50px;
  height: 50px;
  margin: 15px;
}

/* アクセス ここまで*/

/* アクセス レスポンシブ*/
@media screen and (max-width: 1300px) {
  .access {
    padding: 40px 0;
    background-color: #144d53;
    padding-top:120px;
    padding-bottom:120px;
    /* background: linear-gradient(
    160deg,
    #48816E 0%,
    #48816E 50%,
    #307672 0%,
    #307672 50%
  ); */
    position: relative;
  }
  
  .access_title {
    font-size: 35px;
    font-weight: bold;
  }
  
  .office {
    font-size: 20px;
    margin: 25px 0;
  }
  
  .office_train {
    font-size: 25px;
  }
  
  .access_contents {
    display: flex;
    justify-content: center;
    color: #FBFAF8;
    position: relative;
    width: auto;
    height:130vh;
  }
  
  .access_left {
    position: absolute;
    top: 0;
    left:2%;
    margin: auto 80px;
  }
  
  .building{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1 !important;
  }

  .building img{
    width: 35vw;
    z-index: 1 !important;
  }
  
  .access_right_inner {
    float: right;
  }
  
  .access_right {
    position: absolute;
    top: 10%;
    right: 0;
    width: 45%;
    padding: 5% 15%;
    color: #FBFAF8;
    background-color: #295F4E;
    z-index: -1;
  }
  
  .map{
    display: flex;
    margin: 10vw auto 5vw;
    width: 85vw;
    height: 60vh;
  }
  
  .access_right a {
    color: #FBFAF8;
  }
  
  .phonenumber {
    font-size: 20px;
    border-bottom: solid 1px #FBFAF8;
    width: fit-content;
    margin: 10px 0;
  }
  
  .sns {
    display: flex;
    margin: 20px 0;
  }
  
  .sns_image {
    width: 50px;
    height: 50px;
    margin: 15px;
  }
}

@media screen and (max-width: 1024px) {
  .access {
    padding: 40px 0;
    background-color: #144d53;
    padding-top:120px;
    padding-bottom:120px;
    /* background: linear-gradient(
    160deg,
    #48816E 0%,
    #48816E 50%,
    #307672 0%,
    #307672 50%
  ); */
    position: relative;
  }
  
  .access_title {
    font-size: 35px;
    font-weight: bold;
  }
  
  .office {
    font-size: 20px;
    margin: 25px 0;
  }
  
  .office_train {
    font-size: 25px;
  }
  
  .access_contents {
    display: flex;
    justify-content: center;
    color: #FBFAF8;
    position: relative;
    width: auto;
    height:130vh;
  }
  
  .access_left {
    position: absolute;
    top: 0;
    left:2%;
    margin: auto 80px;
  }
  
  .building{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1 !important;
  }

  .building img{
    width: 35vw;
    z-index: 1 !important;
  }
  
  .access_right_inner {
    float: right;
  }
  
  .access_right {
    position: absolute;
    top: 10%;
    right: 0;
    width: 40%;
    padding: 5% 10%;
    color: #FBFAF8;
    background-color: #295F4E;
    z-index: -1;
  }
  
  .map{
    display: flex;
    margin: 0 auto 5vw;
    width: 85vw;
    height: 60vh;
  }
  
  .access_right a {
    color: #FBFAF8;
  }
  
  .phonenumber {
    font-size: 20px;
    border-bottom: solid 1px #FBFAF8;
    width: fit-content;
    margin: 10px 0;
  }
  
  .sns {
    display: flex;
    margin: 20px 0;
  }
  
  .sns_image {
    width: 50px;
    height: 50px;
    margin: 15px;
  }
}

@media screen and (max-width: 768px) {
  .access {
    padding: 40px 0;
    background-color: #144d53;
    padding-top:120px;
    padding-bottom:120px;
    /* background: linear-gradient(
    160deg,
    #48816E 0%,
    #48816E 50%,
    #307672 0%,
    #307672 50%
  ); */
    position: relative;
  }
  
  .access_title {
    font-size: 25px;
    font-weight: bold;
  }
  
  .office {
    font-size: 16px;
    margin: 25px 0;
  }
  
  .office_train {
    font-size: 16px;
  }
  
  .access_contents {
    display: flex;
    justify-content: center;
    color: #FBFAF8;
    position: relative;
    width: auto;
    height:110vh;
  }
  
  .access_left {
    position: absolute;
    top: 0;
    left:8%;
    margin: auto 20px;
  }
  
  .building{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1 !important;
  }

  .building img{
    width: 35vw;
    z-index: 1 !important;
  }
  
  .access_right_inner {
    float: right;
  }

  .access_right_inner h1{
    margin-bottom: 5vw;
  }
  
  .access_right {
    position: absolute;
    top: 10%;
    right: 0;
    width: 40%;
    padding: 5% 10%;
    color: #FBFAF8;
    background-color: #295F4E;
    z-index: -1;
  }
  
  .map{
    display: flex;
    margin: 0 auto 5vw;
    width: 75vw;
    height: 50vh;
  }
  
  .access_right a {
    color: #FBFAF8;
  }
  
  .phonenumber {
    font-size: 20px;
    border-bottom: solid 1px #FBFAF8;
    width: fit-content;
    margin: 10px 0;
  }
  
  .sns {
    display: flex;
    margin: 20px 0;
  }
  
  .sns_image {
    width: 50px;
    height: 50px;
    margin: 15px;
  }
}


@media screen and (max-width: 530px) {
  .access {
    padding: 40px 0;
    background-color: #144d53;
    padding-top:80px;
    padding-bottom:100px;
    /* background: linear-gradient(
    160deg,
    #48816E 0%,
    #48816E 50%,
    #307672 0%,
    #307672 50%
  ); */
    position: relative;
  }
  
  .access_title {
    font-size: 20px;
    font-weight: bold;
  }
  
  .office {
    font-size: 14px;
    margin: 25px 0;
  }
  
  .office_train {
    font-size: 14px;
  }
  
  .access_contents {
    display: flex;
    justify-content: center;
    color: #FBFAF8;
    position: relative;
    width: auto;
    height:180vh;
  }
  
  .access_left {
    position: absolute;
    top: 0;
    left:8%;
    margin: auto 20px;
  }
  
  .building{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1 !important;
  }

  .building img{
    position: absolute;
    top: 0;
    left: -13vw;
    width: 90vw;
    z-index: 1 !important;
  }
  
  .access_right_inner {
    float: right;
  }

  .access_right_inner h1{
    font-size: 2rem;
    margin:0 0 3rem;
  }
  
  .access_right {
    position: absolute;
    top: 35%;
    right: 0;
    width: 70%;
    padding: 20% 10% 10%;
    color: #FBFAF8;
    background-color: #295F4E;
    z-index: -1;
  }
  
  .map{
    display: flex;
    margin: 0 auto 5vw;
    width: 75vw;
    height: 30vh;
  }
  
  .access_right a {
    color: #FBFAF8;
  }
  
  .phonenumber {
    font-size: 14px;
    border-bottom: solid 1px #FBFAF8;
    width: fit-content;
    margin: 10px 0;
  }
  
  .sns {
    display: flex;
    margin: 20px 0;
  }
  
  .sns_image {
    width: 50px;
    height: 50px;
    margin: 15px;
  }
}

@media screen and (max-width: 375px) {
  .access {
    padding: 40px 0;
    background-color: #144d53;
    padding-top:80px;
    padding-bottom:100px;
    /* background: linear-gradient(
    160deg,
    #48816E 0%,
    #48816E 50%,
    #307672 0%,
    #307672 50%
  ); */
    position: relative;
  }
  
  .access_title {
    font-size: 20px;
    font-weight: bold;
  }
  
  .office {
    font-size: 14px;
    margin: 25px 0;
  }
  
  .office_train {
    font-size: 14px;
  }
  
  .access_contents {
    display: flex;
    justify-content: center;
    color: #FBFAF8;
    position: relative;
    width: auto;
    height:210vh;
  }
  
  .access_left {
    position: absolute;
    top: 0;
    left:8%;
    margin: auto 20px;
  }
  
  .building{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1 !important;
  }

  .building img{
    position: absolute;
    top: 0;
    left: -13vw;
    width: 80vw;
    z-index: 1 !important;
  }
  
  .access_right_inner {
    float: right;
  }

  .access_right_inner h1{
    font-size: 2rem;
    margin:0 0 3rem;
  }
  
  .access_right {
    position: absolute;
    top: 30%;
    right: 0;
    width: 70%;
    padding: 20% 10% 10%;
    color: #FBFAF8;
    background-color: #295F4E;
    z-index: -1;
  }
  
  .map{
    display: flex;
    margin: 0 auto 5vw;
    width: 75vw;
    height: 30vh;
  }
  
  .access_right a {
    color: #FBFAF8;
  }
  
  .phonenumber {
    font-size: 14px;
    border-bottom: solid 1px #FBFAF8;
    width: fit-content;
    margin: 10px 0;
  }
  
  .sns {
    display: flex;
    margin: 20px 0;
  }
  
  .sns_image {
    width: 50px;
    height: 50px;
    margin: 15px;
  }
}

/* アクセス スマホ用レスポンシブここまで*/

/* 問い合わせフォーム */

.privacy-inner {
  width: 100%;
}

.privacy .txtbox {
  height: 200px;
  overflow-y: scroll;
  font-weight: normal;
  border: 1px solid #ddd;
  padding: 1.5%;
  margin-bottom: 0px;
  text-align: left;
}

.privacy .txtbox p {
  margin-bottom: 15px;
  font-size: 14px;
}

.privacy ul {
  margin-bottom: 15px;
}

.contact{
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #FBFAF8;
  color: #434E48;
}

.contact a,select,input {
  color: #434E48;
  font-family: a-otf-ryumin-pr6n, serif;
}

#formWrap {
  width: 600px;
  margin: 40px auto;
  text-align: left;
  font-size: 16px;
  line-height: 2.0;
}

.contact_top {
  display: flex;
  justify-content: center;
  font-size: 18px;
  margin: 40px auto 50px;
}

.contact_top::after {
  background-color: #434E48;
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  margin: 100px auto 0;
  width: 150px;
  height: 2px;
  content: "";
}

.contact_text {
  display: flex;
  justify-content: center;
  font-size: 18px;
  margin: 40px auto 10px;
}


.contact_btns {
  display: flex;
  justify-content: center;
  margin:20px;
}

.contact_btns a {
  color: #fff;
  background-color: #144d53;
  padding: 20px 30px;
  margin: 0 auto 20px;
  color: #FBFAF8;
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: 200% auto;
  background-image: linear-gradient(to right, #144d53 0%, #144d53 50%, #333 50%, #333 100%);
  transition: color 0.4s, background-position 0.4s;
}

.contact_btns a:hover {
  background-position: 0 0;
}

.input_example {
  font-size: 14px;
  padding-left: 40px;
  margin-bottom: 20px;
}

@media screen and (max-width: 530px) {
  .contact_top {
    display: flex;
    justify-content: center;
    font-size: 12px;
    margin: 40px auto 50px;
  }

  .contact_text {
    display: flex;
    justify-content: center;
    font-size: 12px;
    margin: 40px auto 10px;
  }

  .contact_btns {
    display: flex;
    justify-content: center;
    margin:10px;
    align-items: center;
  }
  
  .contact_btns a {
    font-size: 12px;
    padding: 10px 20px;
    margin: 0 auto 20px;
  }
}

table.formTable{
  margin:0 auto;
  border-collapse:collapse;
  font-size:20px;
}

table.formTable td,table.formTable th{
  padding:10px;
  display:block;
}

table.formTable th{
  width:600px;
  font-weight:bold;
  text-align:left;
}

table.formTable td input{
    background-color: #fff !important;
  border:solid 1px #ccc !important;
}

input {
  margin: 10px;
  padding: 10px;
  font-size:20px;
}

.submitbtn input[type="submit"],.submitbtn input[type="reset"]{
  position: relative;
  padding: 15px 30px;
  font-size: 20px;
  color: #FBFAF8;
  border: none;
  background-color: #144d53;
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: 200% auto;
  background-image: linear-gradient(to right, #144d53 0%, #144d53 50%, #333 50%, #333 100%);
  transition: color 0.4s, background-position 0.4s;
}

.submitbtn input[type="submit"]:hover {
  background-position: 0 0;
}

.submitbtn input[type="reset"]:hover {
  background-position: 0 0;
}

select {
  background-color: #fff !important;
  border:solid 1px #ccc !important;
  padding: 10px;
  margin: 10px;
  font-size:20px;
}

textarea{
  background-color: #fff !important;
  border:solid 1px #ccc !important;
  width: 550px;
  padding: 10px;
  margin: 10px;
  font-size:20px;
  font-family: a-otf-ryumin-pr6n, serif;
}

.private {
  width: 650px;
  padding: 30px 0 20px 0;
  font-size:20px;
}

.private_info {
  display: flex;
  justify-content: center;
  font-size:20px;
  margin: 30px auto 20px;
  border-bottom: solid 1px #434E48;
  width: fit-content;
}

/*　問い合わせフォーム　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width:572px) {
#formWrap {
  width:90vw;
  font-size:14px;
  margin:0 auto;
}

table.formTable th, table.formTable td {
  width:auto;
  display:block;
}

table.formTable {
  width: 90vw;
}

table.formTable th {
  margin:5px 0 0 10px;
  border-bottom:0;
  font-weight: bold;
  font-size: 16px;
}

table.formTable td {
  font-size: 12px;
  width: fit-content;
}

table.formTable td p{
  width: 80vw;
}

form input[type="text"] {
  width:80%;
  padding:5px;
  font-size:14px;
  display:block;
}

.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
  width: 80vw;
}

form input[type="submit"], form input[type="reset"], form input[type="button"] {
  display:block;
  width:80%;
  height:40px;
}

textarea{
  font-size:12px;
  background-color: #fff !important;
  border:solid 1px #ccc !important;
  width: 300px;
}

.private {
  width: 300px;
  padding: 20px 10px 10px;
  font-size: 12px;
}

.submitbtn {
  width: 180px;
  margin: 20px auto;
  padding: 10px;
}

.submitbtn p{
  padding: 10px auto 20px;
}

.submitbtn input[type="submit"],.submitbtn input[type="reset"]{
  padding: 10px auto;
  height: 50px;
  font-size: 12px;
  text-align: center;
}

select {
  background-color: #FBFAF8 !important;
  border:solid 1px #ccc !important;
  padding: 10px;
  margin: 10px;
  font-size: 10px;
}

.privacy .txtbox {
  width: 80vw;
}
}

.select_time {
  font-size: 12px;
  text-align: left;
  float: right;
}

footer {
  display: flex;
  justify-content: center;
  font-size: 16px;
  padding: 50px;
  color: #FBFAF8;
  font-family: a-otf-ryumin-pr6n, serif;
  background-color: #144d53;
}

/* サンクスページ */

#thanks {
  height: 100%;
  font-family: a-otf-ryumin-pr6n, serif;
}

.thanks_page {
  padding:0;
}

.thankstext1 {
  font-size: 30px;
  text-align: center;
  color: #FBFAF8;
  margin: 80px;
}

.thankstext2 {
  font-size: 20px;
  text-align: center;
  color: #FBFAF8;
  margin: 40px;
}
/* サンクスページ ここまで*/


/* サンクスページ スマホ用レスポンシブ*/
@media screen and (max-width: 530px) {
#thanks {
  height: 100%;
}

.thanks_page {
  padding:0;
}

.thankstext1 {
  
  font-size: 22px;
  text-align: center;
  color: #FBFAF8;
  margin: 40px 0;
}

.thankstext2 {
  font-size: 18px;
  text-align: center;
  color: #FBFAF8;
  margin: 20px;
}
}
/* サンクスページ スマホ用レスポンシブ ここまで*/