@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

body {
  color: #333;
  font-family: "ヒラギノ明朝 ProN", "Helvetica", "Arial", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic";
}

img {
  max-width: 100%;
  height: auto;
  width: 100%;
}

.btn {
  padding: 16px 80px;
  color: white;
  background-color: #DD7A19;
  border: 2px solid #DD7A19;
  border-radius: 50px;
  font-weight: bold;
  display: inline-block;
  font-size: 16px;
}

.btn:hover {
  background-color: white;
  border: 2px solid #DD7A19;
  color: #DD7A19;
}

.btn.-active {
  background-color: #333;
  color: white;
}

.inner {
  padding-left: 40px;
  padding-right: 40px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1100px;
}

@media (max-width: 767px) {
  .inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.section-title {
  font-size: 40px;
  line-height: 68px;
  text-align: center;
  padding-top: 160px;
  margin-bottom: 80px;
  position: relative;
}

@media (max-width: 767px) {
  .section-title {
    padding-top: 96px;
    margin-bottom: 64px;
    font-size: 30px;
    line-height: 51px;
  }
}

.section-title::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 1px;
  background-color: #333;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
}

.separation-section {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 100px;
}

@media (max-width: 767px) {
  .separation-section {
    margin-top: 50px;
  }
}

.separation-section .bg_dot {
  display: block;
  background-color: #fff;
  background-repeat: repeat-x;
  background-size: auto 4px;
  background-position: 0 center;
  background-image: radial-gradient(#dab681 30%, transparent 30%);
  background-size: 15px 15px;
  text-align: center;
}

.separation-section .bg_dot .dot_span {
  background-color: #fff;
  padding: 3vw;
}

.separation-section .bg_dot .dot_span img {
  width: 100px;
  background-color: #fff;
  padding: 10px;
}

.img-section-title {
  margin-right: auto;
  margin-left: auto;
  padding-top: 100px;
  padding-bottom: 80px;
}

@media (max-width: 767px) {
  .img-section-title {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}

/*======================================================
header
=======================================================*/
.header {
  width: 100%;
  z-index: 10;
  height: 70px;
}

@media (max-width: 767px) {
  .header {
    height: 60px;
  }
}

.header .h__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .h__inner .h__logo {
  width: 15vw;
  height: auto;
  z-index: 20;
}

@media (max-width: 767px) {
  .header .h__inner .h__logo {
    width: 100px;
  }
}

.header .h__inner .h__logo img {
  margin-top: 25px;
}

@media (max-width: 767px) {
  .header .h__inner .h__logo img {
    margin-top: 20px;
  }
}

.header .h__inner .h__nav-wrapper {
  margin-left: auto;
}

.header .h__inner .h__nav-wrapper .h__nav-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767px) {
  .header .h__inner .h__nav-wrapper .h__nav-box {
    display: none;
  }
}

.header .h__inner .h__nav-wrapper .h__nav-box li {
  font-weight: bold;
  color: #333;
  font-size: 14px;
  padding-left: 48px;
  padding-top: 27px;
  padding-bottom: 27px;
  -webkit-transition: all 0.3;
  transition: all 0.3;
}

.header .h__inner .h__nav-wrapper .h__nav-box li a {
  position: relative;
  display: inline-block;
  letter-spacing: 1.6px;
  padding-bottom: 10px;
  font-weight: bold;
  color: #333;
}

.header .h__inner .h__nav-wrapper .h__nav-box li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #dfb784;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.header .h__inner .h__nav-wrapper .h__nav-box li a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

/*=========================================================
 トップページのメニュー①
=========================================================*/
.nav_toggle {
  display: none;
  position: relative;
  width: 1.75rem;
  height: 1.5rem;
  margin-left: auto;
  margin-right: 0;
  z-index: 100;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .nav_toggle {
    display: block;
  }
}

.nav_toggle i {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 10px;
  background-color: #DD7A19;
  position: absolute;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
}

.nav_toggle i:nth-child(1) {
  top: 0;
}

.nav_toggle i:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}

.nav_toggle i:nth-child(3) {
  bottom: 0;
}

.nav_toggle.show i:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
          transform: translateY(10px) rotate(-45deg);
}

.nav_toggle.show i:nth-child(2) {
  opacity: 0;
}

.nav_toggle.show i:nth-child(3) {
  -webkit-transform: translateY(-12px) rotate(45deg);
          transform: translateY(-12px) rotate(45deg);
}

nav {
  position: fixed;
  z-index: 99;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s, visibility 0.5s;
  transition: opacity 0.5s, visibility 0.5s;
  background: #ff8c1c;
  width: 270px;
}

nav a {
  color: #fff;
  font-size: 16px;
  padding: 10px;
  font-weight: bold;
}

.nav_menu_li {
  padding-top: 40px;
}

.nav.show {
  opacity: 0.7;
  visibility: visible;
}

.nav_toggle_indrawer i {
  background-color: white;
}

/*=========================================================
ブログページのメニュー2
===========================================================*/
.h2__nav-wrapper {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 767px) {
  .h2__nav-wrapper {
    display: none;
  }
}

.h2__nav-wrapper ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.h2__nav-wrapper ul a {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  font-weight: bold;
  color: #333;
}

.h2__nav-wrapper ul a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #dfb784;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.h2__nav-wrapper ul a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

/*======================================================
mv
=======================================================*/
.mv .mv__inner {
  padding-right: 10px;
  padding-left: 10px;
}

.mv .mv__img {
  text-align: right;
}

@media (max-width: 767px) {
  .mv .mv__img {
    text-align: center;
  }
}

.mv .mv__img .img-pc {
  display: inline-block;
}

@media (max-width: 767px) {
  .mv .mv__img .img-pc {
    display: none;
  }
}

.mv .mv__img .img-sp {
  display: none;
}

@media (max-width: 767px) {
  .mv .mv__img .img-sp {
    display: inline-block;
    max-width: 100%;
    height: auto;
    width: 100%;
  }
}

/*======================================================
concept
=======================================================*/
.concept .concept__wrapper,
.concept .concept3__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767px) {
  .concept .concept__wrapper,
  .concept .concept3__wrapper {
    display: block;
  }
}

.concept .concept2__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-top: 100px;
}

@media (max-width: 767px) {
  .concept .concept2__wrapper {
    display: block;
  }
}

.concept .concept2__wrapper .concept2__textbox {
  padding-right: 80px;
}

@media (max-width: 767px) {
  .concept .concept2__wrapper .concept2__textbox {
    padding-right: 0;
  }
}

.concept .concept3__wrapper {
  margin-top: 100px;
}

.concept .concept-title {
  max-width: 400px;
}

@media (max-width: 767px) {
  .concept .concept-title {
    max-width: 200px;
  }
}

.concept .concept__img {
  width: 50%;
}

@media (max-width: 767px) {
  .concept .concept__img {
    width: 100%;
  }
}

.concept .concept__textbox {
  padding-left: 80px;
  width: 50%;
}

@media (max-width: 767px) {
  .concept .concept__textbox {
    padding-left: 0;
    width: 100%;
  }
}

.concept .concept__textbox .concept__text {
  font-size: 25px;
  line-height: 1.7;
  font-weight: bold;
  padding-bottom: 48px;
}

@media (max-width: 767px) {
  .concept .concept__textbox .concept__text {
    font-size: 20px;
    padding-top: 40px;
    padding-bottom: 32px;
  }
}

.concept .concept__textbox .concept__desc {
  line-height: 27px;
}

.concept .concept2__textbox {
  width: 50%;
}

@media (max-width: 767px) {
  .concept .concept2__textbox {
    padding-left: 0;
    width: 100%;
  }
}

.concept .concept2__textbox .concept__text {
  font-size: 25px;
  line-height: 1.7;
  font-weight: bold;
  padding-bottom: 48px;
}

@media (max-width: 767px) {
  .concept .concept2__textbox .concept__text {
    font-size: 20px;
    padding-top: 40px;
    padding-bottom: 32px;
  }
}

.concept .concept2__textbox .concept__desc {
  line-height: 27px;
}

.concept__img {
  position: relative;
}

.concept__img::after,
.concept__img::before {
  content: '';
  position: absolute;
  -webkit-transform: rotate(-35deg);
          transform: rotate(-35deg);
  width: 70px;
  height: 25px;
  background-color: #fff;
  z-index: 1;
}

.concept__img::after {
  bottom: -10px;
  right: -25px;
  border-top: 1px solid #aaa;
}

.concept__img::before {
  top: -10px;
  left: -25px;
  border-bottom: 1px solid #aaa;
}

.contact-btn-inconcept {
  margin-top: 100px;
}

@media (max-width: 767px) {
  .contact-btn-inconcept {
    margin-top: 40px;
  }
}

/*======================================================
bread
=======================================================*/
.bread {
  text-align: center;
}

.bread .aboutus-title {
  max-width: 400px;
}

@media (max-width: 767px) {
  .bread .aboutus-title {
    max-width: 200px;
  }
}

.bread .bread__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 767px) {
  .bread .bread__wrapper {
    display: block;
  }
}

.bread .bread__wrapper .b__card {
  display: inline-block;
  text-align: center;
  width: calc(25% - 20px * 3 / 4);
  height: auto;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .bread .bread__wrapper .b__card {
    width: 48%;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    margin-top: 48px;
  }
  .bread .bread__wrapper .b__card:first-child {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .bread .bread__wrapper .b__card:nth-child(4n) {
    margin-right: auto;
    margin-left: auto;
  }
}

.bread .bread__wrapper .b__card .b-img {
  width: 80%;
  height: auto;
}

@media (max-width: 767px) {
  .bread .bread__wrapper .b__card .b-img {
    margin-right: auto;
    margin-left: auto;
  }
}

.bread .bread__wrapper .b__card .b__card-text {
  font-weight: bold;
  line-height: 27px;
  color: #333;
}

.bread .bread__wrapper .b__card .b-btn {
  font-size: 12px;
  padding: 5px 10px;
}

.bread .bread__wrapper .b__card .b-btn::before {
  content: "›";
  width: 10px;
}

.btn-inbread {
  margin-top: 50px;
}

@media (max-width: 767px) {
  .btn-inbread {
    margin-top: 40px;
    margin-bottom: 50px;
  }
}

/*======================================================
News
=======================================================*/
.news__inner {
  max-width: 1120px;
  padding-left: 40px;
  padding-right: 40px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

@media (max-width: 767px) {
  .news__inner {
    padding-right: 33px;
    padding-left: 33px;
  }
}

.news__inner .news-title {
  max-width: 200px;
}

@media (max-width: 767px) {
  .news__inner .news-title {
    max-width: 100px;
  }
}

.news__inner .news__wrapper .news__item {
  position: relative;
  display: block;
  padding-bottom: 24px;
  margin-bottom: 22px;
  border-bottom: 1px solid #eeeeee;
}

.news__inner .news__wrapper .news__item:last-child {
  margin-bottom: 48px;
}

@media (max-width: 767px) {
  .news__inner .news__wrapper .news__item {
    width: 100%;
    margin-bottom: 30px;
  }
}

.news__inner .news__wrapper .news__item .news__img {
  width: 260px;
  height: auto;
}

@media (max-width: 767px) {
  .news__inner .news__wrapper .news__item .news__img {
    width: 100%;
  }
}

.news__inner .news__wrapper .news__item .news__img img {
  width: 260px;
}

@media (max-width: 767px) {
  .news__inner .news__wrapper .news__item .news__img img {
    width: 100%;
  }
}

.news__inner .news__wrapper .news__item .news__textbox {
  position: absolute;
  color: #333;
  left: 300px;
  top: 25px;
  text-align: left;
}

@media (max-width: 767px) {
  .news__inner .news__wrapper .news__item .news__textbox {
    position: static;
  }
}

.news__inner .news__wrapper .news__item .news__textbox .n-date {
  font-size: 14px;
  line-height: 24px;
}

@media (max-width: 767px) {
  .news__inner .news__wrapper .news__item .news__textbox .n-date {
    padding-top: 16px;
    padding-bottom: 8px;
  }
}

.news__inner .news__wrapper .news__item .news__textbox .n-title {
  font-size: 18px;
  line-height: 31px;
  font-weight: bold;
}

@media (max-width: 767px) {
  .news__inner .news__wrapper .news__item .news__textbox .n-title {
    padding-bottom: 10px;
  }
}

.news__inner .news__wrapper .news__item .news__textbox .n-desc {
  font-size: 14px;
  line-height: 24px;
  color: #8888;
}

.news__inner .news__wrapper .news__item .news__textbox p {
  line-height: 1.8;
}

/*======================================================
アクセス
=======================================================*/
.access .access-title {
  max-width: 200px;
  padding-top: 80px;
}

@media (max-width: 767px) {
  .access .access-title {
    max-width: 100px;
  }
}

.access .access__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 80px;
}

@media (max-width: 767px) {
  .access .access__wrapper {
    display: block;
    padding-bottom: 40px;
  }
}

.access .access__wrapper .access__textbox {
  background-color: #fafafa;
  border-radius: 6px;
  width: 50%;
  margin-left: 50px;
  padding: 50px;
}

@media (max-width: 767px) {
  .access .access__wrapper .access__textbox {
    width: 100%;
    margin: 0 auto;
    padding: 50px 30px;
    margin-top: 30px;
  }
}

.access .access__wrapper .access__textbox .data {
  padding-bottom: 30px;
}

@media (max-width: 767px) {
  .access .access__wrapper .access__textbox .data {
    padding-top: 20px;
    padding-bottom: 0;
  }
}

.access .access__wrapper .access__textbox .data:nth-child(1) {
  padding-top: 0;
}

.access .access__wrapper .access__textbox .dt {
  float: left;
  font-weight: bold;
}

.access .access__wrapper .map_box {
  width: 50%;
}

@media (max-width: 767px) {
  .access .access__wrapper .map_box {
    width: 100%;
  }
}

.contact-btn {
  text-align: center;
  padding-bottom: 80px;
}

/*======================================================
footer
=======================================================*/
.footer {
  background-color: #333;
}

.footer .footer__inner .footer-logo {
  max-width: 90px;
  height: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.footer .footer__inner .footer-text {
  text-align: center;
  padding-top: 20px;
}

.footer .footer__inner .footer-text a {
  color: white;
  font-size: 12px;
}

.footer .footer__inner .footer-text a:hover {
  opacity: 0.7;
}

.footer .footer__inner .footer-text .privacy-policy {
  padding-right: 32px;
}

.footer .footer__inner .copyright {
  color: white;
  text-align: center;
  padding-bottom: 20px;
  font-size: 12px;
  padding-top: 20px;
}

/*======================================================
footer
=======================================================*/
.footer {
  background-color: #333;
}

.footer .footer__inner .footer-logo {
  max-width: 90px;
  height: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.footer .footer__inner .footer-text {
  text-align: center;
  padding-top: 20px;
}

.footer .footer__inner .footer-text a {
  color: white;
  font-size: 12px;
}

.footer .footer__inner .footer-text a:hover {
  opacity: 0.7;
}

.footer .footer__inner .footer-text .privacy-policy {
  padding-right: 32px;
}

.footer .footer__inner .copyright {
  color: white;
  text-align: center;
  padding-bottom: 20px;
  font-size: 12px;
  padding-top: 20px;
}

/*======================================================
個別投稿ページ
=======================================================*/
.post-article .post-article-title {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  padding: 100px 0;
}

.post-article .article-text {
  text-align: center;
  line-height: 1.7;
  padding-bottom: 50px;
}

/*======================================================
最新記事
=======================================================*/
.topnews-wrapper{
	display:block;
	padding:20px;
}

@media (max-width: 767px) {
	.topnews-wrapper{
	display:block;
	padding:20px;
		margin-top:60px;
}
}

.topnews-wrapper li{
	max-width: 1080px;
	margin-right: auto;
    margin-left: auto;
	border: 3px solid #e2e0e0;
	margin-top:60px;
	border-radius:16px;
}

.topnews-wrapper li .txtA{
	background-color:#e08f00;
	font-size:24px;
	color:#fff;
	font-weight:bold;
	padding:10px;
	display:none;
}
.topnews-wrapper li .txtB a{
	font-size:24px;
	color:#333;
	line-height:1.6;
	font-weight:bold;
	padding:24px 10px;
	display: inline-block;
}
.topnews-wrapper li p:nth-child(4){
	font-size:16px;
	color:#333;
	line-height:1.85;
	padding:0px 10px 30px 10px;
}

@media (max-width: 767px) {
	.news-wrapper li .txtA{
	background-color:#e08f00;
	font-size:18px;
	color:#fff;
	font-weight:bold;
	padding:10px;
}
.topnews-wrapper li .txtB a{
	font-size:18px;
	color:#333;
	line-height:1.6;
	font-weight:bold;
	padding:14px 10px;
	padding-bottom: 8px;
	display: inline-block;
}
.topnews-wrapper li p:nth-child(4){
	font-size:14px;
	color:#333;
	line-height:1.85;
	padding:0px 10px 30px 10px;
}
	.topnews-wrapper li {
    margin-top: 0px;
}
}

/* ここから */
* {
  font-family: "M PLUS Rounded 1c", sans-serif;
}

body {
  background-color: #fafafa;
}

.fv {
  width: 100%;
  height: 500px;
  position: relative;
  border-bottom: 3px solid #e2e0e0;
}
.fv::after {
  content: "";
  position: absolute;
/*   background-color: #000; */
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 0.16;
  z-index: -1;
}
.fv::before {
  content: "";
  position: absolute;
  background-image: url(http://tamotsunopan.com/wp-content/uploads/2023/02/fb-bg5.png);
  width: 100%;
  height: 100%;
background-position: center;
	top: 50%;
  background-size: contain;
	transform: translateY(-50%);
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 600px) {
  .fv::before {
  content: "";
  position: absolute;
  background-image: url(http://tamotsunopan.com/wp-content/uploads/2023/02/fb-bg5.png);
  width: 100%;
  height: 340px;
	  top: 50%;
	  transform: translateY(-50%);
background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
}

.logo-img {
  max-width: 350px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 100px;
}

.logo-img img {
  width: 100%;
  height: auto;
}

.header-nav-width {
  text-align: center;
  z-index: 10;
}
.header-nav-width .header-nav {
  margin-top: 100px;
  background-color: #fff;
  border: 3px solid #e2e0e0;
  border-radius: 30px;
  display: inline-block;
}
.header-nav-width .header-nav .header-list {
  display: flex;
}
.header-nav-width .header-nav .header-list .header-item:first-child a {
  padding-left: 40px;
}
.header-nav-width .header-nav .header-list .header-item:last-child a {
  padding-right: 40px;
}
.header-nav-width .header-nav .header-list .header-item a {
  color: #333333;
  font-weight: bold;
  padding: 20px;
  display: inline-block;
}
.header-nav-width .header-nav .header-list .header-item a:hover span {
  position: relative;
}
.header-nav-width .header-nav .header-list .header-item a:hover span::before {
  position: absolute;
  content: "";
  background-color: #f27f0c;
  width: 6px;
  height: 6px;
  border-radius: 4px;
  left: 50%;
  bottom: -6px;
}

@media screen and (max-width: 768px) {
  .header-nav-width {
    padding: 0 14px;
  }
  .header-nav-width .header-nav {
    margin-top: 100px;
    background-color: #fff;
    border: 3px solid #e2e0e0;
    border-radius: 30px;
    display: inline-block;
  }
  .header-nav-width .header-nav .header-list {
    display: flex;
    flex-wrap: wrap;
    padding: 14px;
  }
  .header-nav-width .header-nav .header-list .header-item:first-child a {
    padding-left: 10px;
  }
  .header-nav-width .header-nav .header-list .header-item:last-child a {
    padding-right: 0px;
  }
  .header-nav-width .header-nav .header-list .header-item a {
    font-size: 14px;
    padding: 10px;
  }
  .header-nav-width .header-nav .header-list .header-item a:hover span {
    position: relative;
  }
  .header-nav-width .header-nav .header-list .header-item a:hover span::before {
    position: absolute;
    content: "";
    background-color: #f27f0c;
    width: 6px;
    height: 6px;
    border-radius: 4px;
    left: 50%;
    bottom: -6px;
  }
}
.section-title-block {
  margin-top: 120px;
  margin-bottom: 80px;
}
.section-title-block .section-title-h2 {
  margin-top: 16px;
  font-size: 40px;
  text-align: center;
  font-weight: 500;
}
.section-title-block .section-sub-title {
  text-align: center;
}

.concept-img {
  max-width: 520px;
}
.concept-img img {
  border-radius: 10px;
  width: 100%;
  height: auto;
}

.concept .concept__wrapper {
  align-items: center;
}

.concept .concept2__wrapper {
  align-items: center;
}

.concept .concept3__wrapper {
  align-items: center;
}

.concept .concept__textbox .concept__text, .concept .concept2__textbox .concept__text, .concept .concept__textbox .concept__text {
  font-size: 22px;
  line-height: 1.6;
  font-weight: bold;
  padding-bottom: 20px;
}

.concept .concept__textbox .concept__desc, .concept .concept2__textbox .concept__desc {
  line-height: 2;
}

.separation-section .bg_dot {
  display: block;
  background-color: #fafafa;
  background-repeat: repeat-x;
  background-size: auto 4px;
  background-position: 0 center;
  background-image: radial-gradient(#dab681 30%, transparent 30%);
  background-size: 15px 15px;
  text-align: center;
}

.separation-section .bg_dot .dot_span {
  background-color: #fafafa;
  padding: 3vw;
}

.separation-section .bg_dot .dot_span img {
  width: 100px;
  background-color: #fafafa;
  padding: 10px;
}

.news-wrapper {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 70px;
}
.news-wrapper .news-item {
  text-align: left;
  border-top: 1px solid #e2e0e0;
  padding-top: 30px;
  padding-bottom: 30px;
}
.news-wrapper .news-item:last-child {
  border-bottom: 1px solid #e2e0e0;
}
.news-wrapper .news-item a {
  color: #333333;
}
.news-wrapper .news-item a .title {
  position: relative;
  display: inline-block;
}
.news-wrapper .news-item a .title:hover::after {
  position: absolute;
  content: "";
  height: 3px;
  width: 100%;
  background-color: #e2e0e0;
  left: 0;
  bottom: -4px;
  border-radius: 4px;
}
.news-wrapper .news-item .date {
  font-size: 12px;
}
.news-wrapper .news-item .title {
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 10px;
}
.news-wrapper .news-item .desc {
  font-size: 16px;
  line-height: 1.8;
}

.access .access__wrapper {
  display: flex;
  padding-bottom: 80px;
  align-items: center;
}

@media screen and (max-width: 600px) {
  .access .access__wrapper {
    display: block;
  }
  .access .access__wrapper .access__textbox {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0px;
    margin-top: 30px;
  }
}

.section-title-block .section-sub-title {
   color: #ffa50096;
}


/*# sourceMappingURL=style.css.map */