@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&family=Lora:wght@400;600&family=M+PLUS+Rounded+1c&family=Noto+Sans+JP:wght@400;800&family=Noto+Serif+JP:wght@400;600&family=Oswald:wght@400;700&family=Roboto:wght@300;400;900&display=swap');
/*
font-family: 'Noto Sans JP', sans-serif;
font-family: 'Noto Serif JP', serif;
font-family: "Oswald", sans-serif;
font-family: "Roboto", sans-serif;
font-family: "Kosugi Maru", sans-serif;
*/
* {
  box-sizing: border-box;
  /*word-break: break-all;*/
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
  font-size: 10px;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  color: #333;
  line-height: 1.7;
  /*text-align: justify;*/
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  letter-spacing: 0.05em;
}
/* header
------------------------------------------------------------*/
header {
  width: 100%;
  padding: 0px 1%;
  background-color: rgba(255, 255, 255, 1.00);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: sticky;
  top: 0;
  left: 0;
  transition: .3s;
  z-index: 100;
}
#navi {
  /*background-color: rgba(255, 255, 255, 1.0);*/
  position: fixed;
  padding: 10px 1%;
  top: 0;
  left: 0;
  /*height: 60px;*/
  transition: .3s;
  width: 100%;
}
@media screen and (max-width:575px) {
 #navi {
  background-color: rgba(255, 255, 255, 0.9);  
}
}
/* チェックボックスを非表示 */
#navi input {
  display: none;
}
/* 左上ロゴ */
.menu-left {
  float: left;
  /*line-height: 50px;*/
}
.menu-left img {
    vertical-align: middle;
    margin-left: 10px;
    width: 10vw;
}
/*@media screen and (max-width:767px) {
  .menu-left img {
    max-width: 280px;
	  width: 40vw;
  }
}*/
@media screen and (max-width:575px) {
  .menu-left img {
    max-width: 280px;
	  width: 50vw;
  }
}
/* 上部メニュー */
#menu {
  float: right;
  margin-right: 10px;
}
@media screen and (max-width:575px) {
#menu {
    float: none;
    margin-right: 0px;
    padding-top: 25%;
}
}
#menu li {
    position: relative;
    white-space: nowrap;
    color: #333;
    text-transform: uppercase;
}
#menu li span {
  color: #333;
}
#menu li a {
  display: block;
  color: #333;
}
#menu > li {
  float: left;
  margin: 0 12px;
  line-height: 60px;
  font-size: 15px;
  font-weight: bold;
}
@media screen and (max-width:575px) {
#menu > li {  
  margin: 0 0px;  
}
}
/* パソコンでは V を非表示 */
#menu > li .pd {
  display: none;
}
#menu-navibtn {
  display: none;
  cursor: pointer;
  cursor: hand;
}
/* スマホ用 */
@media screen and (max-width: 575px) {
  /* 基本非表示 */
  #menu {
    display: none;
  }
  #menu li {
    height: auto;
    width: 100%;
    padding: 0px 20px;
    border-bottom: 1px solid #DDD;
    white-space: nowrap;
  }
  #menu > li {
    margin-right: -20px;
  }
  /* V を表示 */
  #menu > li .pd {
    display: inline-block;
    width: 100%;
  }
  #menu li a {
    display: inline-block;
  }
  #menu li:first-child {
    border-top: 1px solid #DDD;
  }
  #menu li i {
    padding: 0px 6px;
  }
  /* メニューを移動させないため */
  #menu-navibtn:checked ~ #navi {
    position: fixed;
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100%;
  }
}
/* ドロップダウンメニュー */
#menu li ul {
  position: absolute;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
/* 子メニュー */
#menu > li > ul li {
  font-size: 14px;
  display: none;
  padding: 0px 20px;
  background-color: #FFF;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  border-bottom: 1px solid #DDD;
}
#menu > li > ul li a {
  color: #000;
}
#menu li ul li:first-child {
  border-top: 1px solid #000;
}
#menu li ul li:last-child {
  border-bottom: 1px solid #000;
}
#menu li ul li ul {
  top: -1px;
  left: 100%;
}
#menu li ul li ul li ul, #menu li:nth-child(n+3) ul li ul {
  left: inherit;
  right: 100%;
}
#menu > li > ul {
  margin-left: -40px;
  width: 10vw;
}
/* パソコン用 */
@media screen and (min-width: 575px) {
  #menu li a:hover {
    color: rgba(202,192,145,1.00);
  }
  #menu li ul li a:hover {
    color: rgba(202,192,145,1.00);
  }
  #menu > li:hover > ul > li, #menu li ul li:hover > ul > li {
    display: block;
  }
  /* 階層がある場合の誘導の印 */
  #menu li ul li ul:before, #menu li ul li ul li ul:before, #menu li:nth-child(n+3) ul li ul:before {
    position: absolute;
    top: 28px;
    content: "";
    border: 5px solid transparent;
    display: block;
  }
  /* 通常タイプ */
  #menu li ul li ul:before {
    left: -10px;
    border-left-color: #666;
  }
  /* 右側タイプ */
  #menu li ul li ul li ul:before, #menu li:nth-child(n+3) ul li ul:before {
    right: -10px;
    border-right-color: #666;
  }
}
/* スマホ用 */
@media screen and (max-width: 575px) {
  /* ハンバーガーメニューがクリックされた時 */
  #menu-navibtn:checked ~ * #menu {
    display: block;
  }
  #menu-navibtn:checked ~ * #menu > li {
    max-height: inherit;
    overflow-y: visible;
  }
  #menu > li ul {
    line-height: 50px;
  }
  #menu > li > label:hover {
    cursor: pointer;
    cursor: hand;
  }
  #menu li ul {
    position: static;
  }
  /* 子メニュー */
  #menu > li > ul {
    margin-left: initial;
    position: relative;
  }
  #menu li ul li:first-child {
    border-top: 1px solid #DDD;
  }
  #menu ul li:last-child {
    border-bottom: none;
  }
  #menu > li > ul li {
    border-left: 1px solid #FFF;
    border-right: 1px solid #FFF;
  }
  #menu li ul li ul {
    top: inherit;
    left: 0;
  }
  #menu li ul li:last-child {
    border-bottom: none;
    margin-bottom: 20px;
  }
  /* 子メニューがクリックされた時 */
  #menu input[type="checkbox"]:checked ~ label ~ ul > li {
    max-height: inherit;
    overflow-y: visible;
    display: block;
  }
  .angletoggle:before {
    content: "\f103";
  }
  #navi input[type="checkbox"]:checked ~ label .pd .angletoggle:before {
    content: "\f102";
  }
}
/* ハンバーガー */
#navi #navibtn {
  display: none;
}
@media screen and (max-width: 575px) {
  #navi #navibtn {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
  }
  #navibtn span {
    display: block;
    width: 40px;
    height: 40px;
    background-color: #333;
  }
  #navibtn span span {
    display: block;
    overflow: hidden;
    width: 1px;
    height: 1px;
  }
  #navibtn span span::before, #navibtn span span::after, #navibtn span::after {
    position: absolute;
    left: 10px;
    content: "";
    width: 20px;
    height: 3px;
    background-color: #FFF;
  }
  /* 上の棒 */
  #navibtn span span::before {
    top: 10px;
  }
  #menu-navibtn:checked ~ #navi label#navibtn span span::before {
    top: 19px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  /* 下の棒 */
  #navibtn span::after {
    bottom: 10px;
  }
  #menu-navibtn:checked ~ #navi label#navibtn > span::after {
    bottom: 18px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  }
  /* 中の棒 */
  #navibtn span span::after {
    top: 18px;
  }
  #menu-navibtn:checked ~ #navi label#navibtn span span::after {
    display: none;
  }

}



/* footer */
footer {
    padding-bottom: 1%;
    padding-top: 5%;
    background-color: rgba(224,218,190,0.3);
    color: #333;
}
@media screen and (max-width: 575px) {
footer {
    padding: 5%;    
}
}
.footer_logo {
    margin-bottom: 10px;
}
@media screen and (max-width: 575px) {
.footer_logo {
    /*width: 60%; */
	padding-left: 20%;
	padding-right: 20%;
}
}
.footer_tx {
  font-size: 14px; 
    margin-top: 5px;
}
.footer_nav {
  display: flex;
    flex-wrap: wrap; /* 折返し可 */
}
@media screen and (max-width: 991px) {
.footer_nav {    
    margin-top: 30px;
}
}
.footer_nav li {
    font-size: 14px;
    padding-right: 20px;
    padding-bottom: 5px;
    line-height: 1.8;    
    /*width: 30%;*/
}
.footer_nav li:before{
  content:'\f111';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;  
  margin-right:5px;
	color: #333;
}
/*@media screen and (max-width: 1199px) {
.footer_nav li {    
    width: 48%;
}
}*/
.footer_nav li a {
    color: #333;
}
.footer_nav li a:hover {
    color: rgba(18, 150, 143, 1.0);
	transition : 1s;
}
.footer_copy {
    font-size: 14px;
    margin-top: 10%;
    text-align: center;
}

/* footer ボタン */
.footer-btn-s {
  display: none;
}
@media screen and (max-width: 991px) {
  .footer-btn-s.active {
    display: block;
    animation: UpAnime 0.5s forwards;
  }
  .footer-btn-s {
    position: fixed;
    width: 100%;
    /* right: 10px; */
    bottom: 0px;
    z-index: 92;
    transform: translateY(100px);
  }
  .footer-btn {
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer-btn a {
    color: #fff;
    font-size: 2.5vw;
  }
  .footer-btn li:first-of-type {
    width: 90%;
    background-color: rgba(202,192,145,1.00);
    padding: 10px 0;
    text-align: center;
    
  }
  .footer-btn li:nth-of-type(2) {
    width: 10%;
    background-color: rgb(24, 24, 24);
    padding: 10px 0;
    text-align: center;
    
  }
/*   .footer-btn li:nth-of-type(3) {
  width: 10%;
  background: rgb(24, 24, 24);
  padding: 10px 0;
  text-align: center;
  opacity: .9;  
} */
}
@media screen and (max-width: 768px) {

	.footer-btn a {
    color: #fff;
    font-size: 3.9vw;
  }
}

/* footer_tel ボタン */
  .footer-tel-s.active {
    display: block;
    animation: UpAnime 0.5s forwards;
  }
  .footer-tel-s {
    position: fixed;
    width: 50px;
     right: 5px; 
    bottom: 155px;
    z-index: 92;
    transform: translateY(100px);
  }


/* ページトップ */
#page-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    /*background-color: #0F1047;
    border-radius: 5px;
    width: 50px;
    height: 50px;
    color: #fff;*/
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    /* font-size:0.6rem; */
    transition: all 0.3s;
    font-size: 10px;
}
#page-top a:hover {
    /*background-color: #B12F00;*/
}
/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 92;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
/*　上に上がる動き　*/
#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);
  }
}

#page-top a i {
    font-size: 25px;
}



/*# 固定ナビ */

.contact_pc{
    position: fixed;
    top: 170px;
    right: 0;
    z-index: 101;
}

.contact_pc li{
    background-position: 0%;
    background-color: #E1E1E1;
    margin-bottom: 20px;
}
.contact_pc li img{
    width: 40px;    
}

/*
.contact_pc li:nth-child(2){
    background-color: #CE7F00;
}*/

.contact_pc li:hover{
    opacity: 0.95;
}


/*@media (max-width: 767px) {
.contact_pc {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0 auto;
    z-index: 101;
    top: auto;
}

.contact_pc li {
    float: left;
    width: 50.0%;
    background: #EC4E10;	
	text-align: center;
}*/

/*.contact_pc li:nth-child(2) {
    background-color: #CE7F00;
}*/

/*.contact_pc li:nth-child(3) {
    width: 12.8%;
    background: #062275;
}*/

/*.contact_pc li a img {
    max-height: 60px;
    vertical-align: middle;
    margin-top: 15px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 10px;
}
}*/

/*# 各ページhead */
.head_area {
    width: 100%;
    /*height: 70vh;*/
    padding-top: 0%;
    padding-bottom: 2%;
    color: #808080;
    position: relative;
}

@media screen and (max-width:575px) {
.head_area {
    padding-top: 50px;
	padding-left: 20px;
	padding-right: 20px;
    
}	
}
.head_area2 {
    width: 100%;
    /*height: 70vh;*/
    padding-top: 15%;
    padding-bottom: 2%;
    color: #808080;
}

@media screen and (max-width:767px) {
.head_area2 {
    padding-top: 120px;
	padding-left: 20px;
	padding-right: 20px;
    
}	
}
@media screen and (max-width:575px) {
.head_area2 {
    padding-top: 20px;
	padding-left: 20px;
	padding-right: 20px;
    
}	
}
@media screen and (max-width:991px) {
.head_ttlarea {
    padding-top: 50px;
    
}	
}
.head_ttl {
    font-size: 2.6rem;
    letter-spacing: 0.2em;
    margin-top: 15vh;
    margin-bottom: 10px;
}
@media screen and (max-width:575px) {
.head_ttl {
    margin-top: 35vh;
	text-shadow: 
		#fff 1px 1px 0, #fff -1px -1px 0,/*右下、左上*/
		#fff -1px 1px 0, #fff 1px -1px 0,/*右上、左下*/
        #fff 0px 1px 0, #fff  0-1px 0,/*右、左*/
        #fff -1px 0 0, #fff 1px 0 0;/*上、下*/
    
}	
}
.head_subttl {
    font-size: 1.2rem;
    text-transform: capitalize;
}
@media screen and (max-width:575px) {
.head_subttl {
	text-shadow: 
		#fff 1px 1px 0, #fff -1px -1px 0,/*右下、左上*/
		#fff -1px 1px 0, #fff 1px -1px 0,/*右上、左下*/
        #fff 0px 1px 0, #fff  0-1px 0,/*右、左*/
        #fff -1px 0 0, #fff 1px 0 0;/*上、下*/
    
}	
}
.head_photo {
    border-bottom-left-radius: 100px;   
}

.head_imgttl {
    font-size: 10vw;
    letter-spacing: 0.01em;
    position: absolute;
    bottom: 0;
    left: 10px;
    color: rgba(202,192,145,0.1);
    text-transform: uppercase;
    overflow-x: hidden;
    font-weight: bold;
}
@media screen and (max-width: 767px) {
.head_imgttl {    
    position: static;
    bottom: 0;
    margin-left: 10vw;    
}
}
.head_imgttl2 {
    font-size: 10vw;
    letter-spacing: 0.01em;
    position: absolute;
    top: 5vh;
    right: 0;
    color: rgba(202,192,145,0.1);
    text-transform: uppercase;
    overflow-x: hidden;
    font-weight: bold;
    width: 50vw;
    text-align: right;
}
@media screen and (max-width: 767px) {
.head_imgttl2 {
    position: static;
    bottom: 0;
    margin-left: 10vw;
    display: none;
}
}

/*# パンくず */
.pan_area {
	font-size: 12px;
	text-transform: uppercase;
	margin-top: 10px;
	margin-bottom: 10px;
}
@media screen and (max-width:575px) {
.pan_area {
	padding-left: 20px;
	padding-right: 20px;
    
}	
}
.pan_area ul li {
    display: inline-block;
    margin-right: 5px;
}
.pan_area ul li a:after {
    content: "＞";
    margin-left: 5px;
}
.pan_area2 {
	font-size: 12px;
	text-transform: uppercase;
	margin-top: 15%;
	margin-bottom: 10px;
}

.pan_area2 ul li {
    display: inline-block;
    margin-right: 5px;
}
.pan_area2 ul li a:after {
    content: "＞";
    margin-left: 5px;
}

/*# contact_area */
.contact_area {
    position: relative;
    margin-left: 0px;
    margin-right: 0px;
    padding-bottom: 10%;
    padding-top: 10%;
    background-image: url(../img/contact_bg.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 50% auto;
}
@media (max-width: 575px) {
.contact_area {    
    background-image: none;    
}
}
.contact_read {
    font-size: 18px; 
    margin-top: 20px;
	margin-bottom: 20px;
    text-align: center;
}
.contact_tel {
    font-size: 40px;
    margin-bottom: 10px;
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
}
.contact_tel a {
    color: #333;
}
.contact_tel img {
    vertical-align: middle;
    margin-right: 10px;
}
.contact_time {
    font-size: 14px; 
    text-align: center;
}
.contact_list {
    display: flex;
    flex-wrap: wrap; /* 折返し可 */
    justify-content: center;
    justify-items: center;
    margin-top: 5%;
}


/* 子要素 */
.contact_list li {
    width: 35%;
    margin-left: 3%;
	margin-right: 3%;
}
@media all and (max-width: 1399px) {
.contact_list li {
    width: 44%; 
    margin-left: 3%;
	margin-right: 3%;
}
}
@media all and (max-width: 575px) {
.contact_list li {
    width: 94%;
    margin-left: 3%;
    margin-right: 3%;
    margin-bottom: 20px;
}
}

/*# リンクボタン */
.btn-bc a {
    text-decoration: none;
    text-transform: uppercase;
    background:rgb(96, 98, 171);	
    color: rgb(255, 255, 255);
    padding: 10px 20px;
    display: block;
    letter-spacing: 2px;
    transition : 1s;
    font-size: 16px;
    text-align: center;
    max-width: 400px;
    margin-right: auto;
    margin-left: auto;
	border-radius: 10px;
}

.btn-bc a:hover {
	background-color: rgb(142, 143, 195);
	box-shadow:0px 0px 10px #666;
	transition : 1s;
}
.btn-bc2 a {
    text-decoration: none;
    text-transform: uppercase;
    background:rgb(237, 76, 89);	
    color: rgb(255, 255, 255);
    padding: 10px 20px;
    display: block;
    letter-spacing: 2px;
    transition : 1s;
    font-size: 16px;
    text-align: center;
    max-width: 400px;
    margin-right: auto;
    margin-left: auto;
	border-radius: 10px;
}
.btn-bc2 a:hover {
	background-color: rgb(242, 127, 136);
	box-shadow:0px 0px 10px #666;
	transition : 1s;
}
.btn-bc3 a {
    text-decoration: none;
    text-transform: uppercase;
    background-color: #8DBBE4;
    color: rgb(255, 255, 255);
    padding: 10px 20px;
    display: block;
    letter-spacing: 2px;
    transition : 1s;
    font-size: 16px;
    text-align: center;
    max-width: 400px;
    margin-right: auto;
    margin-left: auto;
    border-radius: 10px;
}
.btn-bc3 a:hover {
    background-color: #5A9CD8;
    box-shadow: 0px 0px 10px #666;
    transition : 1s;
}
.contact_arrow {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 1px;
    margin-top: 9.9px;
    border-radius: 9999px;
    background-color: #fff;
    margin-left: 10px;
}

.contact_arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #fff;
  transform: rotate(45deg);
  transform-origin: calc(100% - 0.5px) 50%;
}

/* タイトル
---------------------------------*/
.h2ttl {
    font-size: 30px;
    color: #333;
    font-weight: bold;
}
@media screen and (max-width: 767px) {
  .h2ttl {
    font-size: 24px; 
  }
}
.h2ttl_c {
    font-size: 30px;
    color: #333;
    text-align: center;
    font-weight: bold;
}
@media screen and (max-width: 767px) {
  .h2ttl_c {
    font-size: 14px; 
  }
}
.h2ttl_cw {
  font-size: 20px;  
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .h2ttl_cw {
    font-size: 14px;
  }
}
.h2ttl_en {
    font-size: 1.3rem;
    color: rgba(202,192,145,1.00);
    font-family: 'Noto Serif JP', serif;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}
@media screen and (max-width: 575px) {
.h2ttl_en {
    font-size: 1.0rem;    
}
}
.h2ttlsub_c {
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  font-family: 'Noto Serif JP', serif;
}
.h3ttl {
    font-size: 24px;
    color: rgba(202,192,145,1.00);
    font-family: "Kosugi Maru", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
	margin-top: 5%;
}
.head_read {
    font-size: 30px;
    line-height: 1.9;
    font-feature-settings: "palt";
    color: rgba(202,192,145,1.00);
    padding-right: 15px;
	font-family: "Kosugi Maru", sans-serif;
	/*font-weight: bold;*/
}
@media screen and (max-width: 575px) {
.head_read {
    font-size: 20px;    
    padding-right: 0px;
}
}
.head_tx {
    font-size: 16px;
    line-height: 1.9;
    font-feature-settings: "palt";
    margin-top: 2%;	
	padding-right: 15px;
}
@media screen and (max-width: 575px) {
.head_tx {
    font-size: 14px; 
}
}
.heading_tx {
    font-size: 16px;
    line-height: 1.9;
    font-feature-settings: "palt";
    margin-top: 5px;	
}
@media screen and (max-width: 575px) {
.heading_tx {
    font-size: 14px; 
}
}
.heading_tx_s {
    font-size: 16px;
    line-height: 1.9;
    font-feature-settings: "palt";
    margin-top: 5%;
	text-shadow: #ffffff 2px 0px 0px, #ffffff -2px 0px 0px, #ffffff 0px -2px 0px, #ffffff 0px 2px 0px, #ffffff 2px 2px 0px, #ffffff -2px 2px 0px, #ffffff 2px -2px 0px, #ffffff -2px -2px 0px, #ffffff 1px 2px 0px, #ffffff -1px 2px 0px, #ffffff 1px -2px 0px, #ffffff -1px -2px 0px, #ffffff 2px 1px 0px, #ffffff -2px 1px 0px, #ffffff 2px -1px 0px, #ffffff -2px -1px 0px, #ffffff 1px 1px 0px, #ffffff -1px 1px 0px, #ffffff 1px -1px 0px, #ffffff -1px -1px 0px;
}

.contents_area {
    position: relative;
    margin-left: 0px;
    margin-right: 0px;
    padding-bottom: 0%;
    padding-top: 5%;
    /*color: #727171;*/
}
@media (max-width: 575px) {
.contents_area {    
    margin-left: 10px;
    margin-right: 10px;
}	
}
.btn a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 360px;
    height: 54px;
    background-color: rgba(183,170,106,0.2);
    border-radius: 6px;
    padding-left: 27px;
    padding-right: 12px;
    font-size: 16px;
    font-weight: bold;
    font-feature-settings: "palt";
    letter-spacing: 0.07em;
    position: relative;
    z-index: 1;
    margin-top: 5%;
    border: 2px solid rgba(241,241,241,1.00);
}
@media screen and (max-width: 767px) {
  .btn a {
    width: 50vw;
    height: 56px;
    font-size: 15px;
    border-radius: 3px;
  }
}
@media screen and (max-width: 575px) {
  .btn a {
    width: 80vw;
  }
}
.btn a::before {
    content: "";
    display: block;
    width: 36px;
    height: 36px;
    background-color: rgba(183,170,106,0.3);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    z-index: -1;
    transition: 0.4s;
}
.btn a::after {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background: rgba(183,170,106,1.00);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%) scale(0);
  z-index: -1;
  transition: 0.4s;
}
.btn a i {
  display: block;
  position: relative;
  width: 36px;
  height: 36px;
}
.btn a i::before {
  content: "";
  display: block;
  width: 15px;
  height: 12px;
  background: url("../img/arrow_b.svg") no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.btn a i::after {
  content: "";
  display: block;
  width: 15px;
  height: 12px;
  background: url("../img/arrow_w.svg") no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  .btn a:hover {
    background: #e4e9ee;
  }
  .btn a:hover i::after {
    opacity: 1;
  }
  .btn a:hover::before {
    transform: translateY(-50%) scale(0);
  }
  .btn a:hover::after {
    transform: translateY(-50%) scale(1);
  }
}
.btn2 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*width: 360px;*/
  width: auto;
  height: 74px;
  background: #eaeff3;
  border-radius: 6px;
  padding-left: 27px;
  padding-right: 12px;
  font-size: 19px;
  font-weight: bold;
  font-feature-settings: "palt";
  letter-spacing: 0.07em;
  position: relative;
  z-index: 1;
  margin-top: 5%;
  border: 2px solid rgba(255, 255, 255, 1.00);
}
@media screen and (max-width: 1699px) {
  .btn2 a {
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .btn2 a {
    height: 56px;
    font-size: 15px;
    border-radius: 3px;
  }
}
.btn2 a::before {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  z-index: -1;
  transition: 0.4s;
}
.btn2 a::after {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #12968f, #0c97ae);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%) scale(0);
  z-index: -1;
  transition: 0.4s;
}
.btn2 a i {
  display: block;
  position: relative;
  width: 36px;
  height: 36px;
}
.btn2 a i::before {
  content: "";
  display: block;
  width: 15px;
  height: 12px;
  background: url("../img/arrow_b.svg") no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.btn2 a i::after {
  content: "";
  display: block;
  width: 15px;
  height: 12px;
  background: url("../img/arrow_w.svg") no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  .btn2 a:hover {
    background: #e4e9ee;
  }
  .btn2 a:hover i::after {
    opacity: 1;
  }
  .btn2 a:hover::before {
    transform: translateY(-50%) scale(0);
  }
  .btn2 a:hover::after {
    transform: translateY(-50%) scale(1);
  }
}
/*左から徐々に表示するアニメーション*/
.img-wrap {
  overflow: hidden;
  position: relative;
	opacity: 0;
}

.img-animation {
  animation: img-opacity 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  overflow: hidden;
  position: relative;
}

.img-animation::before {
  animation: img-animation 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #fff;
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

@keyframes img-opacity {
  100% {
    opacity: 1;
  }
}

@keyframes img-animation {
  100% {
    transform: translateX(100%);
  }
}

/*　コンテンツ　*/
.contents_area {
  padding-top: 5%;
  padding-bottom: 1%;
}
.contents_area2 {
  padding-top: 5%;
  padding-bottom: 1%;
  background-color: rgba(18, 150, 143, 0.04);
}
.contents_lastarea {
  padding-top: 5%;
  padding-bottom: 5%;
}
.contents_lastarea2 {
  padding-top: 5%;
  padding-bottom: 1%;
  margin-bottom: 4%;
  background-color: rgba(18, 150, 143, 0.04);
}
@media only screen and (max-width: 1199px) {
  .contents_area {
    padding-right: 20px;
    padding-left: 20px;
  }
  .contents_area2 {
    padding-right: 20px;
    padding-left: 20px;
  }
  .contents_lastarea {
    padding-right: 20px;
    padding-left: 20px;
  }
  .contents_lastarea2 {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.contents_ttl {
  position: relative;
  padding: 0.8rem 0;
  margin-bottom: 2.8rem;
  overflow: hidden;
  font-weight: bold;
  font-size: 30px;
}
@media screen and (max-width: 1199px) {
  .contents_ttl {
    font-size: 24px;
  }
}
@media screen and (max-width: 575px) {
  .contents_ttl {
    font-size: 20px;
    margin-bottom: 1.8rem;
  }
}
.contents_ttl:before, .contents_ttl:after {
  position: absolute;
  width: 100%;
  bottom: 0;
  content: '';
}
.contents_ttl:before {
  border-bottom: 1px solid rgba(202,192,145,1.00);
}
.contents_ttl:after {
    border-bottom: 1px solid #E8E8E8;
}
.contents_read {
  font-size: 18px;
}
.contents_tx {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 2%;
}
@media screen and (max-width: 575px) {
  .contents_tx {
    font-size: 14px;
  }
}