@charset "utf-8";

:root {
  /*カラー*/
  --main-color: #00913a;
  --text-color: #707070;
  --text-color-W: #fff;
  --background-navbar: rgba(55, 55, 55, 0.5);
  --background-gray: #f2f2f2;

  /*フォント*/
  --noto-sans-font-family: '游ゴシック体', YuGothic, '游ゴシック Medium',
    'Yu Gothic Medium', '游ゴシック', 'Yu Gothic', sans-serif;
  --arial-font-family: Arial, sans-serif;
  --Mincho-font-family: 'Noto Serif JP', serif;

  /*jp*/
  --paragraph-jp-md-font-family: var(--noto-sans-font-family);
  --font-size-3vw: 3vw;
  --font-size-XL: 2.3em;
  --font-size-L: 22px;
  --font-size-M: 18px;
  --font-size-S: 16px;
  --font-weight_M: 400;
  --font-weight_B: bold;
  --line-height_L: 2.5;
  --line-height_M: 2;
  --line-height_S: 1.5;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*共通----------------------------------------*/
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  padding: 0;
  margin: 0;
  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN',
    'Hiragino Sans', 'BIZ UDPGothic', Meiryo, sans-serif;
}
ol,
ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
input,
button,
textarea,
select {
  font: inherit;
}

section h2 {
  font-family: var(--noto-sans-font-family);
  font-weight: var(--font-weight_B);
  font-size: var(--font-size-XL);
  text-align: center;
  margin: 2rem auto 2rem;
  position: relative;
}
iframe {
  padding: 10px 0;
}
/* .wrap{
  position: relative;
  width: 100%;
} */
h2.title_green {
  position: relative;
  display: block;
  margin-bottom: 2em;
  text-align: center;
  color: var(--main-color);
  font-size: var(--font-size-XL);
  font-weight: bold;
}
h2.title_green:before {
  content: '';
  position: absolute;
  bottom: -20px;
  display: inline-block;
  width: 60px;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: var(--main-color);
  border-radius: 2px;
}
/*下からフェードイン 上の画像*/
.fade-in-bottom {
  opacity: 0;
  animation-name: fadein-bottom;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
@keyframes fadein-bottom {
  0% {
    opacity: 0;
    transform: translateY(0px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*header-------------------------------------------*/
header {
  position: sticky;
  top: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 5;
}
a.top_logo {
  margin: auto;
  text-align: center;
  display: block;
}
a.top_logo img {
  width: 40%;
}
/*nav---------------------*/
.menu_wrap {
  width: 100%;
}
nav {
  margin: 0;
  padding: 0;
}
.list_nav_header {
  display: grid;
  width: 100%;
  grid-template-columns: 2fr 2fr 2fr;
  gap: 2px;
  color: var(--text-color-W);
  margin: 10px auto 0;
}
.list_nav_header li {
  margin: 0 auto;
  text-align: center;
  background-color: #00913a;
  width: 100%;
  padding: 15px;
  font-size: 0.8em;
}

.main_img img {
  width: 100%;
}
.main_img .pc {
  display: none;
}
.main_img .sp {
  display: block;
}
/*------------------------------------------------------
message-sp
-------------------------------------------------------*/
.container {
  padding: 3% 0 1%;
}
.container.message {
  width: 100%;
  margin: 0 auto;
  background-image: url(../images/message_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 5%;
}

section#message h2 {
  position: relative;
  display: block;
  margin-bottom: 1em;
  text-align: center;
  color: #fff;
  font-size: var(--font-size-XL);
  font-weight: bold;
  font-family: var(--Mincho-font-family);
}
section#message h2::before {
  content: '';
  position: absolute;
  bottom: -20px;
  display: inline-block;
  width: 60px;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 2px;
}

.comment {
  margin: 0.5rem auto;
  line-height: var(--line-height_M);
  padding: 0 5%;
  text-align: justify;
}

.comment p {
  text-align: left;
  margin-top: 10px;
  font-family: var(--Mincho-font-family);
  font-style: normal;
  color: #fff;
}
.photo {
  margin: 20px auto;
}
figure {
  text-align: center;
}

figure .name {
  font-size: var(--font-size-XL);
  font-weight: var(--font-weight_B);
  text-align: center;
}
figcaption {
  margin: 10px auto;
}

/*------------------------------------------------------
support-sp
-------------------------------------------------------*/
#support h2.bg_green {
  background-color: #00913a;
  padding: 20px;
  color: #fff;
  margin: 0 auto 30px;
  font-size: var(--font-size-M);
}
h2.bg_green.br {
  display: block;
}
.support_area {
  margin: 25px auto;
}
.support_area h3 {
  font-size: var(--font-size-L);
  text-align: center;
  font-weight: bold;
  margin: 20px 0;
  position: relative;
  color: #333;
  text-shadow: 0 0 2px white;
  text-align: left;
  padding-left: 2%;
}
.support_area h3:before {
  content: '';
  position: absolute;
  background: #9de5ff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: 50%;
  /* border: dashed 1px white; */
  /* left: -15px; */
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}
.support_area .comment {
  font-family: var(--Mincho-font-family);
}
/*名前*/
.name {
  text-align: right;
  display: block;
}
.br {
  display: block;
}
/*------------------------------------------------------
policy-sp
-------------------------------------------------------*/
.policy_bg_img {
  width: 100%;
  background-image: url(../images/policy_bg_img.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 0;
  padding-top: 49%;
  text-align: center;
  position: relative;
}
.policy_btn {
  position: absolute;
  bottom: 35%;
  left: 0;
  width: 100%;
}
.policy_btn ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}
.policy_btn li {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  width: calc(100% / 4)- 2px;
}

.policy_btn li a {
  padding: 10px;
  border-radius: 5px;
}

/* .policy_btn li a:hover {
  margin-top: 3px;
} */
/* .policy_btn .btn--shadow {
  margin-top: 3px;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
} */
/*policy_btn 観光-----------------------------*/
.btn_blue a {
  color: #fff;
  background-color: #0189be;
  border-bottom: solid 3px #01638a;
}
.btn_blue a:hover {
  color: #fff;
  background: rgba(1, 137, 190, 0.5);
  border-bottom: solid 3px rgba(1, 137, 190, 0.7);
}
/*policy_btn 少子化-----------------------------*/
.btn_pink a {
  color: #fff;
  background-color: #b72478;
  border-bottom: solid 3px #7a1850;
}
.btn_pink a:hover {
  color: #fff;
  background: rgba(183, 36, 120, 0.5);
  border-bottom: solid 3px rgba(183, 36, 120, 0.7);
}
/*policy_btn 企業-----------------------------*/
.btn_orange a {
  color: #fff;
  background-color: #e58200;
  border-bottom: solid 3px rgb(131, 82, 18)
}
.btn_orange a:hover {
  color: #fff;
  background: rgba(229, 130, 0, 0.5);
  border-bottom: solid 3px rgba(229,130,0.7);
}
/*policy_btn 移住-----------------------------*/
.btn_green a {
  color: #fff;
  background-color: #34770e;
  border-bottom: solid 3px #1a3b07;
}
.btn_green a:hover {
  color: #fff;
  background: rgba(52, 119, 14, 0.5);
  border-bottom: solid 3px rgba(52, 119, 14, 0.7);
}

.policy_area {
  padding: 20px 0;
}
.policy_area h3 {
  text-align: center;
  font-size: var(--font-size-L);
  font-weight: bold;
  padding: 5% 0;
  margin-top: 5%;
}
.policy_area img {
  width: 100%;
  max-width: 960px;
}
.policy .policy_text {
  line-height: var(--line-height_S);
  padding: 0 2%;
  text-align: justify;
}

.policy_inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 2%;
}
/*緑のeffect----------------------------*/
.effect {
  background-color: #27bf77;
  display: block;
  width: 200px;
  text-align: center;
  margin: 2% auto;
  color: #fff !important;
  padding: 2% 0 !important;
}
.effect_box {
  padding: 1.5em 1em;
  margin: 2em 2%;
  color: #5d627b;
  background: white;
  border-top: solid 5px #27bf77;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
}
/*水色のeffect----------------------------*/
.box_effect {
  margin: 2em auto;
  background: #dcefff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
  width: 96%;
  max-width: 960px;
}
.box_effect .box-title {
  font-size: 1.2em;
  background: #5fb3f5;
  padding: 10px 0;
  text-align: center;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.box_effect p {
  padding: 15px 20px;
  margin: 0;
  line-height: var(--line-height_S);
}
/*水色のeffect ここまで----------------------------*/

/*policy-01------------------------*/
.policy_area.policy_01 {
  background: linear-gradient(
    90deg,
    rgba(156, 214, 243, 0.5),
    rgba(255, 255, 255, 1)
  );
  background-size: cover;
  padding-top: 20px;
}
.policy_01 h3 {
  margin: 10px; /* デフォルトCSS打ち消し */
  font-size: 1.1em; /* 文字サイズ指定 */
  position: relative; /* 位置調整 */
  font-weight: var(--font-weight_B);
  background-color: #0189be;
  color: #fff;
  padding: 10px; /* 余白指定 */
  margin-bottom: 15px; /* 周りの余白指定 */
  border-radius: 2px; /* 角丸指定 */
}
.policy_01 span {
  margin-top: 2%;
  font-size: 0.8em;
  display: block;
  font-weight: normal;
}

/*policy-02------------------------*/
.policy_area.policy_02 {
  background: linear-gradient(
    90deg,
    rgba(241, 177, 205, 0.5),
    rgba(255, 255, 255, 1)
  );
  background-size: cover;
  padding-top: 20px;
}
.policy_02 h3 {
  margin: 10px; /* デフォルトCSS打ち消し */
  font-size: 1.1em; /* 文字サイズ指定 */
  position: relative; /* 位置調整 */
  font-weight: var(--font-weight_B);
  background-color: #b72478;
  color: #fff;
  padding: 10px; /* 余白指定 */
  margin-bottom: 15px; /* 周りの余白指定 */
  border-radius: 2px; /* 角丸指定 */
}
.policy_02 span {
  margin-top: 2%;
  font-size: 0.8em;
  display: block;
  font-weight: normal;
}
/*policy-03------------------------*/
.policy_area.policy_03 {
  background: linear-gradient(
    90deg,
    rgba(242, 173, 141, 0.5),
    rgba(255, 255, 255, 1)
  );
  background-size: cover;
  padding-top: 20px;
}
.policy_03 h3 {
  margin: 10px; /* デフォルトCSS打ち消し */
  font-size: 1.1em; /* 文字サイズ指定 */
  position: relative; /* 位置調整 */
  font-weight: var(--font-weight_B);
  background-color: #e58200;
  color: #fff;
  padding: 10px; /* 余白指定 */
  margin-bottom: 15px; /* 周りの余白指定 */
  border-radius: 2px; /* 角丸指定 */
}
.policy_03 span {
  margin-top: 2%;
  font-size: 0.8em;
  display: block;
  font-weight: normal;
}
/*policy-04------------------------*/
.policy_area.policy_04 {
  background: linear-gradient(
    90deg,
    rgba(189, 219, 171, 0.5),
    rgba(255, 255, 255, 1)
  );
  background-size: cover;
  padding-top: 20px;
}
.policy_04 h3 {
  margin: 10px; /* デフォルトCSS打ち消し */
  font-size: 1.1em; /* 文字サイズ指定 */
  position: relative; /* 位置調整 */
  font-weight: var(--font-weight_B);
  background-color: #34770e;
  color: #fff;
  padding: 10px; /* 余白指定 */
  margin-bottom: 15px; /* 周りの余白指定 */
  border-radius: 2px; /* 角丸指定 */
}
.policy_04 span {
  margin-top: 2%;
  font-size: 0.8em;
  display: block;
  font-weight: normal;
}
.other_cathc {
  width: 100%;
}
.other {
  text-align: center;
  padding: 5%;
}
.other_catch img{
  width: 100%;
  max-width: 480px;
}

.other img {
  width: 100%;
}
.other_area {
  padding: 1em;
  margin-bottom:10px;
  background-color: #eef9f2;
}
h3.other_title {
  font-size: 1.2rem;
  text-align: left;
  margin-bottom: 20px;
  font-weight: bold;
  position: relative;
  padding: 1.5rem 1rem;
  color: #255927;
}
h3.other_title::before {
 content: "";
 display: inline-block;
 background-image: url(../images/finger.png);
 background-size: cover;
 background-repeat: no-repeat;
width: 1.5em;
 height: 1.2em;
 margin-right: 10px;
}
h3.other_title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: '';
  background-image: -webkit-repeating-linear-gradient(135deg, #000, #000 1px, transparent 2px, transparent 5px);
  background-image: repeating-linear-gradient(-45deg, #000, #000 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.ohter_area ul {
  list-style-type: disc;
  padding-left: 5px;

}
 .other_li {
  list-style-type: disc;
  text-align:justify;
  line-height: 1.8;
  margin-left:20px;
}
/*------------------------------------------------------
acrivity-sp
-------------------------------------------------------*/
.bg_GR {
  min-height: 100%;
  background-color: #ddf5e6;
  padding-bottom: calc(8vw + 10px);
  position: relative;
  overflow: hidden;
}
.bg_GR::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 10vw solid #b6dfc6; /* 三角 */
  border-left: 100vw solid transparent;
}

.pdf_inner {
  margin-bottom: 0.8em;
  margin-left: 0.8em;
}
.pdf_text {
  margin: 0 auto;
  padding: 0.5em 1em 0.5em 1.5em;
  line-height: 1.6;
}
.pdf_blue {
  position: relative;
  margin: 0 auto;
  padding: 0.5em 1em 0.5em 1.5em;
  color: #000;
  font-size: 1.5em;
  font-weight: bold;
  background: #8ce0ff;
  width: 80%;
}
.pdf_blue a {
  display: block;
}
.pdf_blue:before {
  line-height: 1.6em;
  position: absolute;
  top: 50%;
  left: -0.8em;
  display: inline-block;
  width: 1.7em;
  height: 1.7em;
  padding: 0;
  content: '';
  transform: translateY(-50%);
  text-align: center;
  border: solid 3px #fafcfc;
  border-radius: 50%;
  background: #29a7de;
  transform: translateY(-50%);
  border-radius: 50%;
}
/*pdf_green*/
.pdf_green {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding: 0.5em 1em 0.5em 1.5em;
  color: #000;
  font-size: 1.5em;
  font-weight: bold;
  background: #b6dfc6;
  width: 80%;
}
.pdf_green a {
  display: block;
}
.pdf_green:before {
  line-height: 1.6em;
  position: absolute;
  top: 50%;
  left: -0.8em;
  display: inline-block;
  width: 1.7em;
  height: 1.7em;
  padding: 0;
  content: '';
  transform: translateY(-50%);
  text-align: center;
  border: solid 3px #fafcfc;
  border-radius: 50%;
  background: #88c23f;
  transform: translateY(-50%);
  border-radius: 50%;
}
/*pdf_orange*/
.pdf_orange {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding: 0.5em 1em 0.5em 1.5em;
  color: #000;
  font-size: 1.5em;
  font-weight: bold;
  background: #f7e48e;
  width: 80%;
}
.pdf_orange a {
  display: block;
}
.pdf_orange:before {
  line-height: 1.6em;
  position: absolute;
  top: 50%;
  left: -0.8em;
  display: inline-block;
  width: 1.7em;
  height: 1.7em;
  padding: 0;
  content: '';
  transform: translateY(-50%);
  text-align: center;
  border: solid 3px #fafcfc;
  border-radius: 50%;
  background: #d68c46;
  transform: translateY(-50%);
  border-radius: 50%;
}
.point_area {
  background: #ff0e0e;
  color: #fff;
  display: inline-block;
  padding: 0 1em;
  margin-bottom: 5px;
}
/*------------------------------------------------------
profile-sp
-------------------------------------------------------*/
.anchor {
  content: '';
  display: block;
  padding-top: 3%;
  margin-top: 3%;
}
.profile_left {
  padding: 0 5%;
}
.profile_box {
  margin-top: 20px;
}
.profile_box .bg_green,
.hobby_box .bg_green {
  background-color: #00913a;
  padding: 10px;
  color: #fff;
  margin: 0 auto 30px;
  font-size: var(--font-size-L);
  text-align: center;
  width: 350px;
  max-width: 100%;
}

.post_list {
  list-style: disc !important;
  margin-left: 2%;
}
.post_list span {
  margin-left: 2%;
}
.profile_text {
  margin: 5%;
}
.profile_text ul li {
  margin: 0 4%;
  line-height: 1.7;
}
.profile_text .profile_td {
  line-height: 1.7;
  list-style: disc !important;
  margin-left: 2%;
}
/*自己紹介sp----*/
table {
  margin: 0 4%;
}
tr.profile_table th {
  line-height: 1.7;
  width: 38%;
  font-weight: normal;
  letter-spacing: -0.08em;
  font-size: 0.95em;
}
tr.profile_table td {
  line-height: 1.7;
  width: 65%;
  letter-spacing: -0.08em;
  font-size: 1em;
}

/*趣味・特技sp----*/
.hobby_box {
  margin-top: 20px;
  margin: 2% 4%;
  line-height: 1.7;
}
.profile_td {
  width: 50px;
  max-width: 100%;
}
.hobby_box .profile_text ul li {
  list-style: disc !important;
  margin: 4%;
}
.profile_list {
  list-style: disc !important;
  padding-left: 2%;
}
.profile_list span {
  list-style: disc !important;
}
.sp {
  display: none;
}

/*------------------------------------------------------
info-sp footer
-------------------------------------------------------*/

footer {
  background: url(../images/message_bg.jpg) no-repeat top center;
  background-size: cover;
  padding: 10rem 0;
  color: var(--text-color-W);
  text-align: center;
  position: relative;
}
/* footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom:0;
} */
.footer {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
}
.footer h1 {
  font-size: var(--font-size-XL);
  font-weight: bold;
  margin-bottom: 20px;
}
.footer_text {
  font-size: var(--font-size-M);
  padding: 20px 0;
}
/*info----------------*/
.info {
  width: 100%;
  padding: 1rem 0;
  margin: auto;
}
.info_inner {
  margin: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column-reverse;
}
.info_area {
  border: solid 5px #fff;
  padding: 1.5rem 1rem;
  margin: 10px auto;
  width: 95%;
}
.tel {
}
/*スマホだけリンク有効--------------*/
@media (min-width: 751px) {
  a[href*='tel:'] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.copyright {
  height: 20px;
  margin-top: 50px;
}

/* Page-top -------------------------------*/
#page-top a {
  background-color: #00913a;
  bottom: 0;
  color: var(--text-color-W);
  padding: 20px;
  position: fixed;
  right: 0;
  border-radius: 50%;
  width: 75px;
  height: 75px;
}
#page-top a:hover {
  background-color: rgba(0, 145, 58, 0.5);
}
/*tablet policy------------------------------------------------------------------*/
@media screen and (min-width: 475px) and (max-width: 767px) {
  .policy_bg_wrap {
    padding-top: 20px;
  }
  .policy_bg_img {
    height: 0;
    padding-top: 50%;
  }
}
/*-PC------------------------------------------------------------------*/
@media (min-width: 768px) {
  a.top_logo img {
    width: 90%;
  }
  .main_img {
    background-image: url(../images/top_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    /* background-color: #fcda9c; */
    text-align: center;
    margin: auto;
    width: 100%;
  }
  .main_img img {
    width: 90%;
    max-width: 1200px;
    height: auto;
  }
  .main_img .sp {
  display: none;
}
  .main_img .pc {
  display: block;
  margin: 0 auto;
}

  header {
    position: relative;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 5;
    height: auto;
  }
  header .top_logo {
    width: 250px;
  }

  /*nav---------------------*/
  .menu {
    position: fixed;
    width: 100%;
    height: 100px;
    left: 0;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    background-color: #fff;
  }
  .menu_wrap {
    width: auto;
  }

  .list_nav_header {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    color: var(--text-color-W);
    margin: auto;
    width: 100%;
    max-width: 980px;
    background-color: #fff;
  }

  .list_nav_header li {
    font-weight: bold;
    color: var(--main-color);
    white-space: nowrap;
    background-color: #fff;
  }
  .list_nav_header li a {
    display: block;
    position: relative;
    padding: 10px 0;
    font-size: 1.1em;
  }
  .list_nav_header li a::after {
    position: absolute;
    bottom: -5px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #00913a;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
    margin-bottom: 10px;
  }
  .list_nav_header li a:hover:after {
    transform: scale(1, 1);
  }
  .main_img {
    padding-top: 100px;
  }

  .comment {
    margin: 2rem auto;
    padding: 0 1rem;
    width: 100%;
    /* order: 2; */
  }
  .photo {
    width: 30%;
    order: 3;
  }
  .photo:last-child {
    width: 30%;
    order: 1;
  }

  /*message PC------------------------------------*/
  .container .message {
    max-width: 100%;
  }
  #message {
    padding-top: 100px;
    margin-top: -100px;
  }
  section#message .comment {
    width: 960px;
    max-width: 100%;
    font-size: var(--font-size-M);
    margin-top: 50px;
  }
  .support_area h3 {
    text-align: center;
  }
  /*support PC------------------------------------*/
  .support {
    margin-bottom: -5%;
  }
  #support h2.bg_green {
    width: 960px;
    max-width: 100%;
    font-size: var(--font-size-XL);
  }

  #support .br {
    display: inline;
  }
  .support_area {
    margin: 50px 0;
  }

  section#support h3 {
    padding: 0;
  }
  section#support .comment {
    width: 960px;
    max-width: 100%;
  }

  /*activity_PC-----------------------------------------*/
  #activity {
    padding-top: 80px;
    /* margin-top: -80px; */
  }
  #activity .comment {
    text-align: center;
    font-weight: bold;
    font-size: var(--font-size-L);
  }
  .activity {
    display: flex;
    flex-direction: row;
    margin: 2em auto;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 1200px;
    max-width: 100%;
  }
  .pdf_area {
    width: 30%;
  }
  .pdf_green,
  .pdf_blue,
  .pdf_orange {
    width: 100%;
    font-size: 1.2em;
  }

  /*policy_PC-------------------------------------*/
  .policy {
    margin: auto;
  }
  .policy_bg_wrap {
    background-color: #f1f1f1;
    padding: 2% 0 0;
  }
  .policy_bg_img {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background-image: url(../images/policy_bg_img.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
    padding-top: 35%;
  }
  /*画像上ボタン----------------*/
  .policy_btn {
    position: absolute;
    bottom: 40%;
    left: 0;
    width: 100%;
  }
  .policy_btn ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 560px;
    max-width: 100%;
    margin: 0 auto;
  }
  .policy_btn li {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: calc(100% / 4)- 2px;
  }
  .policy_btn li a {
    transition: all 0.3s 0.1s ease-in-out;
    width: 120px;
  }

  .policy_inner h3 {
    width: 100%;
    margin: 20px auto; /* デフォルトCSS打ち消し */
    font-size: 1.1em; /* 文字サイズ指定 */
    padding: 10px; /* 余白指定 */
    margin-bottom: 15px; /* 周りの余白指定 */
    border-radius: 8px; /* 角丸指定 */
    text-align: left;
  }
  /* #sightseeing,
  #child,
  #company,
  #life {
    margin-top: 5px;
    padding-top: -5px;
  } */
  .policy_01 span,
  .policy_02 span,
  .policy_03 span,
  .policy_04 span,
  .policy_05 span {
    margin-top: 0;
    margin-left: 2%;
    font-size: 0.8em;
    display: inline;
  }
  h3.effect {
    margin: 50px auto 20px !important;
    padding: 20px 0 !important;
  }
  .policy_area.policy_01,
  .policy_area.policy_02,
  .policy_area.policy_03,
  .policy_area.policy_04 {
    padding: 100px 0;
    text-align: center;
  }

  .policy .policy_text {
    max-width: 960px;
    width: 100%;
    margin: auto;
  }

  .other_catch  {
    width: 100%;
    text-align: center;
      padding-top: 50px;
  }
  .other_catch img {
    width: 100%;
    max-width: 980px;
  }

  .other img {
      width: 100%;
      max-width: 1200px;
      margin-bottom: 30px;
    }

  .other {
    padding: 0 50px 0 0;
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
  }

  .other_area {
    max-width: 980px;
    padding: 2em;
}
h3.other_title {
  font-size: 1.5rem;
  padding: 1.1em 0;
}
.other_li {
  line-height: 2.1;
}

  /*水色のeffect ねらう効果----------------------------*/
  .box_effect {
    margin: 2em auto;
    width: 100%;
    max-width: 960px;
  }
  .box_effect .box-title {
    font-size: 1.2em;
    background: #5fb3f5;
    padding: 10px 0;
    text-align: center;
    color: #fff;
    font-weight: bold;
    letter-spacing: 0.05em;
  }
  .box_effect p {
    padding: 15px 20px;
    margin: 0;
    text-align: left;
  }
  /*水色のeffect ここまで----------------------------*/

  /*profile PC---------------------------------*/
  #profile {
    padding-top: 100px;
    /* margin-top: -100px; */
  }
  #profile.bg_GR {
    min-height: 100%;
    background-color: #fff9f1;
    padding-bottom: calc(10vw + 10px);
    position: relative;
    overflow: hidden;
  }
  #profile.bg_GR::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 10vw solid #f5dbc8; /* 三角 */
    border-left: 100vw solid transparent;
  }
  .profile_area {
    width: 960px;
    max-width: 100%;
    margin: 0 auto;
  }
  .profile_box {
    display: flex;
    justify-content: space-around;
    margin-top: 0;
    margin-bottom: 20px;
    padding: 20px 0;
  }
  .profile {
    display: flex;
    justify-content: space-around;
    margin-top: 0;
  }

  .profile_text {
    margin: 0;
  }
  .profile_text ul li {
    margin-left: 20px;
  }
  .sp {
    display: block;
  }
  .pc_none {
    display: none;
  }
  /*hobby 趣味・特技　PC-------------------*/
  .hobby_box .profile_text ul li {
    margin: 4%;
  }
  /*footer info---------------------------------*/
  .text {
    font-size: 2vw;
    color: var(--text-color-W);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }

  .info_inner {
    margin: 2rem auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 1200px;
    max-width: 100%;
  }
  .info_area {
    width: calc((100% - 20px) / 2);
  }
  .name_area {
    font-size: var(--font-size-L);
    text-align: center;
    margin-bottom: 1.2rem;
    padding: 0.8rem 0;
  }
  .mail_area p a {
    margin-top: 10px;
    font-size: 1.2vw;
  }
  .tel_area {
    font-size: var(--font-size-L);
  }
}
