@charset "UTF-8";

/*****************************
city_flex01
*****************************/
.city_flex01{
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-content: center;
justify-content: flex-start;
align-items: center;
}
.city_flex01 .left_area{
  width: 40%;
  padding: 10px;
}
.city_flex01 .right_area{
  width: 60%;
  padding: 10px;
}
@media only screen and (max-width: 820px) {
.city_flex01 .left_area{
  width: 500px;
  max-width: 100%;
  margin: 0 auto;
}
.city_flex01 .right_area{
  width: 100%;
  padding: 10px;
}
}

.city_flex01 .left_area img{
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}


.city_flex01 .right_area .catch_title{
  margin: 10px 0 20px;
  font-size: 22px;
  color: #555;
  position: relative;
}

@media only screen and (max-width: 1024px) {
.city_flex01 .right_area .catch_title{
  font-size: 20px;
}
}
@media screen and (max-width: 767px) {
.city_flex01 .right_area .catch_title{
  font-size: 18px;
}
}

.city_flex01 .right_area .catch_title:before {
    position: absolute;
    content: '';
    background: url(../images/common/title_type1-item01.webp) center / cover;
    width: 400px;
    aspect-ratio: 159 / 98;
    top: 50px;
    right: -50px;
    transform: translateY(-50%) translateX(-50%);
    z-index: 0;
    opacity: 0.5;
}
@media screen and (max-width: 767px) {
.city_flex01 .right_area .catch_title:before {
  width: 250px;
  top: 70px;
  right: -40%;
  transform: translateY(-50%) translateX(-50%);
}
}

.city_flex01 .right_area p{
 margin: 10px 0 30px;
font-size: 16px;
}


/*****************************
city_flex01
*****************************/
.city_flex02{
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-content: center;
justify-content: flex-start;
align-items: center;
}
.city_flex02 .left_area{
  width: 40%;
  padding: 10px;
}
.city_flex02 .right_area{
  width: 60%;
  padding: 10px;
}
@media only screen and (max-width: 820px) {
.city_flex02 .left_area{
  width: 500px;
  max-width: 100%;
  margin: 0 auto;
}
.city_flex02 .right_area{
  width: 100%;
  padding: 10px;
}
}
.city_flex02 .left_area img{
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}



.city_bg{
    position: relative;
    background-image: url(../images/common/city_bg_img001.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.city_bg::after {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    content: "";
    background: rgb(106, 57, 6, .7);
    z-index: 0;
}

.bg_inner_style{
  position: relative;
  z-index: 1;
  text-align: center;
  width: 500px;
  max-width: 100%;
  margin: 30px auto;
}
.bg_inner_style h3{
  color: #fff;
  font-size: 30px;
  margin-bottom: 30px;
}
.bg_inner_style p{
  color: #fff;
  position: relative;
  font-size: 18px;
  padding-left: 20px;
  text-align: left;
}
.bg_inner_style p::before {
    position: absolute;
    content: "";
    background: url(../images/common/sikaku02.png) no-repeat center / contain;
    width: 10px;
    height: 10px;
    top: 9px;
    left: 0;
    transition: .5s;
}


@media screen and (max-width: 767px) {
.bg_inner_style h3{
  font-size: 24px;
}
.bg_inner_style p{
  font-size: 16px;
}
}

.choosing_text_area{
  margin-bottom: 30px;
}
.choosing_text_area h3{
  position: relative;
  font-size: 22px;
  padding-left: 35px;
}
@media screen and (max-width: 767px) {
.choosing_text_area h3{
  font-size: 18px;
  padding-left: 35px;
}
}
.choosing_text_area h3::before {
  position: absolute;
  content: "";
  background: url(../images/common/icon_reef.png) no-repeat center / contain;
  width: 30px;
  height: 30px;
  top: 3px;
  left: 0;
}
@media screen and (max-width: 767px) {
.choosing_text_area h3::before {
  top: -2px;
  left: 0;
}
}
.choosing_text_area p{
  font-size: 16px;
  color: #565656;
}

.anchor {
  display: block;
  padding-top: 120px;
  margin-top: -120px;
  position: relative;
  z-index: -1;
}
.city_btn_flex{
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-content: center;
justify-content: flex-start;
align-items: center;
}
.city_btn_flex a{
    /* width: calc(100% / 7); */
    border: 1px solid #005735;
    background: #005735;
    color: #fff;
    padding: 5px 15px;
    border-radius: 10px;
    text-align: center;
    min-height: 30px;
    margin-right: 10px;
    letter-spacing: 2px;
    transition: 1s;
    margin-bottom: 15px;
}
.city_btn_flex a:last-child{
    margin-right: 0px;
}
.city_btn_flex a:hover{
  background: #fff;
  color: #005735;
  transition: 1s;
}
 @media screen and (max-width: 767px) {
.city_btn_flex a{
    padding: 5px 15px;
    font-size: 14px;
    margin-bottom: 10px;
}
 }