@charset "UTF-8";
.sec01 .sec_title {
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", "YuMincho", "noto serif jp", serif;
  font-size: clamp(39px, 5.156vw, 66px);
  font-weight: 300;
  letter-spacing: 0.015em;
  line-height: 1.2;
  text-align: left;
  margin-bottom: clamp(53px, 7.031vw, 90px);
}
.sec01 .imagebox {
  position: relative;
  width: clamp(341px, 44.531vw, 570px);
  height: clamp(253px, 33.046vw, 423px);
  margin: 0 auto;
  padding-left: clamp(29px, 3.906vw, 50px);
  margin-top: clamp(-30px, -2.343vw, -17px);
}
.sec01 .imagebox .circle_box {
  box-sizing: border-box;
  width: clamp(341px, 44.531vw, 570px);
  height: clamp(341px, 44.531vw, 570px);
  position: relative;
  /* 各コンテンツの文字を上向きにする */
  /* 各コンテンツを回転させるアニメーション */
}
.sec01 .imagebox .circle_box .circle_outside {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  border-radius: 50%;
  border: 3px dotted #727171;
  background-image: repeating-conic-gradient(#727171 0% 0.1%, transparent 0.2% 0.5%);
  -webkit-mask-image: radial-gradient(transparent 68%, #727171 68% 70%, transparent 70%);
  mask-image: radial-gradient(transparent 68%, #727171 68% 69%, transparent 69%);
  width: clamp(341px, 44.531vw, 570px);
  height: clamp(341px, 44.531vw, 570px);
}
.sec01 .imagebox .circle_box .circle_inside {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-image: repeating-conic-gradient(#727171 0% 0.1%, transparent 0.2% 0.6%);
  -webkit-mask-image: radial-gradient(transparent 68%, #727171 68% 70%, transparent 70%);
  mask-image: radial-gradient(transparent 68%, #727171 68% 70%, transparent 70%);
  width: clamp(190px, 24.765vw, 317px);
  height: clamp(190px, 24.765vw, 317px);
}
.sec01 .imagebox .circle_box .circle_in_text {
  content: "";
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #0076ad;
  width: clamp(79px, 10.312vw, 132px);
  height: clamp(79px, 10.312vw, 132px);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.sec01 .imagebox .circle_box .circle_in_text p {
  font-size: clamp(6px, 0.859vw, 11px);
  color: #fff;
}
.sec01 .imagebox .circle_box .rotate {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(326px, 42.578vw, 545px);
  height: clamp(326px, 42.578vw, 545px);
}
.sec01 .imagebox .circle_box .rotate .rotate-ctn {
  position: relative;
  width: 100%;
  height: 100%;
  animation: 8s linear big-circle 0.33 forwards; /* 大枠を回転させているアニメーション */
}
.sec01 .imagebox .circle_box .rotate .box {
  position: absolute;
  width: clamp(125px, 16.406vw, 210px);
  height: 50%;
  border-radius: 50%;
  transform-origin: 50% 100%;
  border: 1px #92bac2;
}
.sec01 .imagebox .circle_box .rotate .box.box-1 {
  left: 50%;
  transform: translate(-50%, 0);
}
.sec01 .imagebox .circle_box .rotate .box.box-2 {
  left: 50%;
  transform: translate(-50%, 0) rotate(120deg);
}
.sec01 .imagebox .circle_box .rotate .box.box-3 {
  left: 50%;
  transform: translate(-50%, 0) rotate(240deg);
}
.sec01 .imagebox .circle_box .rotate .box .parts {
  box-sizing: border-box;
  position: relative;
  margin: 0 auto;
  padding: 20px 0;
  width: clamp(125px, 16.406vw, 210px);
  height: 80%;
  border-radius: 50%;
  background-color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.6;
  font-size: 9px, 1.25vw, 16px;
  font-feature-settings: "palt";
  text-align: center;
  text-wrap: nowrap;
}
.sec01 .imagebox .circle_box .rotate .box .parts .parts_top {
  padding-top: 20px;
}
.sec01 .imagebox .circle_box .rotate .box .parts .t_blue {
  font-size: 9px, 1.25vw, 16px;
  color: #0074aa;
}
.sec01 .imagebox .circle_box .rotate .box .parts .t_small {
  font-size: clamp(6px, 0.859vw, 11px);
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-align: center;
}
.sec01 .imagebox .circle_box .rotate .box.box-1 .parts {
  animation: 8s linear circle1 0.33 forwards;
}
.sec01 .imagebox .circle_box .rotate .box.box-2 .parts {
  animation: 8s linear circle2 0.33 forwards;
}
.sec01 .imagebox .circle_box .rotate .box.box-3 .parts {
  animation: 8s linear circle3 0.33 forwards;
}
@keyframes big-circle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes circle1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes circle2 {
  0% {
    transform: rotate(240deg);
  }
  100% {
    transform: rotate(-120deg);
  }
}
@keyframes circle3 {
  0% {
    transform: rotate(120deg);
  }
  100% {
    transform: rotate(-240deg);
  }
}
.sec01 .imagebox .line01 {
  content: "";
  position: absolute;
  z-index: -1;
  top: 338px;
  left: 290px;
  background-color: #0074aa;
  width: 0px;
  height: 2px;
  transform-origin: left bottom;
  transform: rotate(200deg);
  animation: line_anim1 3s ease-out forwards;
}
@keyframes line_anim1 {
  0% {
    width: 1px;
  }
  100% {
    width: 248px;
  }
}
@media screen and (max-width: 767px) {
  .sec01 {
    overflow: hidden;
  }
  .sec01 .sec_title {
    font-size: 7.25vw;
    font-weight: 300;
    letter-spacing: 0.015em;
    line-height: 1.8;
    text-align: left;
    margin-bottom: 13.8vw;
  }
  .sec01 .cont_text {
    text-align: justify;
  }
  .sec01 .imagebox {
    position: relative;
    width: 88.62vw;
    height: 88.62vw;
    margin: 0 auto;
    display: flex;
    padding-left: 0;
    margin-top: 8vw;
  }
  .sec01 .imagebox .circle_box {
    box-sizing: border-box;
    width: 90.62vw;
    height: 90.62vw;
    position: relative;
    left: -2vw;
    /* 各コンテンツの文字を上向きにする */
    /* 各コンテンツを回転させるアニメーション */
  }
  .sec01 .imagebox .circle_box .circle_outside {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    border-radius: 50%;
    border: 0.75vw dotted #727171;
    width: 92.62vw;
    height: 92.62vw;
  }
  .sec01 .imagebox .circle_box .circle_inside {
    content: "";
    position: absolute;
    z-index: 1;
    top: 52%;
    left: 52%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 0.75vw dotted #727171;
    width: 51.51vw;
    height: 51.51vw;
  }
  .sec01 .imagebox .circle_box .circle_in_text {
    content: "";
    position: absolute;
    z-index: 5;
    top: 52%;
    left: 52%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: #0076ad;
    width: 18.45vw;
    height: 18.45vw;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .sec01 .imagebox .circle_box .circle_in_text p {
    font-size: 2.75vw;
    color: #fff;
  }
  .sec01 .imagebox .circle_box .rotate {
    position: absolute;
    z-index: 2;
    top: 52%;
    left: 52%;
    transform: translate(-50%, -50%);
    width: 88.56vw;
    height: 88.56vw;
  }
  .sec01 .imagebox .circle_box .rotate .rotate-ctn {
    position: relative;
    width: 100%;
    height: 100%;
    animation: 8s linear big-circle 0.33 forwards; /* 大枠を回転させているアニメーション */
  }
  .sec01 .imagebox .circle_box .rotate .box {
    position: absolute;
    width: 34.12vw;
    height: 50%;
    border-radius: 50%;
    transform-origin: 50% 100%;
    border: 0.25vw #92bac2;
  }
  .sec01 .imagebox .circle_box .rotate .box.box-1 {
    left: 50%;
    transform: translate(-50%, 0);
  }
  .sec01 .imagebox .circle_box .rotate .box.box-2 {
    left: 50%;
    transform: translate(-50%, 0) rotate(120deg);
  }
  .sec01 .imagebox .circle_box .rotate .box.box-3 {
    left: 50%;
    transform: translate(-50%, 0) rotate(240deg);
  }
  .sec01 .imagebox .circle_box .rotate .box .parts {
    box-sizing: border-box;
    position: relative;
    margin: 0 auto;
    padding: 20px 0;
    width: 34.12vw;
    height: 77%;
    border-radius: 50%;
    background-color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    font-size: 3.5vw;
    line-height: 1.8;
    font-feature-settings: "palt";
    text-align: center;
    text-wrap: nowrap;
  }
  .sec01 .imagebox .circle_box .rotate .box .parts .parts_top {
    padding-top: 5vw;
  }
  .sec01 .imagebox .circle_box .rotate .box .parts .t_blue {
    color: #0074aa;
  }
  .sec01 .imagebox .circle_box .rotate .box .parts .t_small {
    font-size: 2.75vw;
    letter-spacing: 0.15em;
    line-height: 1.2;
    text-align: center;
  }
  .sec01 .imagebox .circle_box .rotate .box.box-1 .parts {
    animation: 8s linear circle1 0.33 forwards;
  }
  .sec01 .imagebox .circle_box .rotate .box.box-2 .parts {
    animation: 8s linear circle2 0.33 forwards;
  }
  .sec01 .imagebox .circle_box .rotate .box.box-3 .parts {
    animation: 8s linear circle3 0.33 forwards;
  }
  @keyframes big-circle {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  @keyframes circle1 {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(-360deg);
    }
  }
  @keyframes circle2 {
    0% {
      transform: rotate(240deg);
    }
    100% {
      transform: rotate(-120deg);
    }
  }
  @keyframes circle3 {
    0% {
      transform: rotate(120deg);
    }
    100% {
      transform: rotate(-240deg);
    }
  }
  .sec01 .imagebox .line01 {
    content: "";
    position: absolute;
    z-index: -1;
    top: 53.62vw;
    left: 47.12vw;
    background-color: #0074aa;
    width: 0;
    height: 0.5vw;
    transform-origin: left bottom;
    transform: rotate(200deg);
    animation: line_anim1 3s ease-out forwards;
  }
  @keyframes line_anim1 {
    0% {
      width: 0.25vw;
    }
    100% {
      width: 40.3vw;
    }
  }
}

.sec02 .sec_header {
  margin-bottom: clamp(17px, 2.343vw, 30px);
}
.sec02 .sec_text {
  margin-bottom: clamp(24px, 3.125vw, 40px);
}
.sec02 .title {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto clamp(29px, 3.906vw, 50px);
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", "YuMincho", "noto serif jp", serif;
  font-size: clamp(16px, 2.187vw, 28px);
  position: relative;
}
.sec02 .title::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: clamp(-150px, -11.718vw, -89px);
  border-bottom: #231815 0.5px solid;
  width: clamp(74px, 9.687vw, 124px);
}
.sec02 .title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: clamp(-150px, -11.718vw, -89px);
  border-bottom: #231815 0.5px solid;
  width: clamp(74px, 9.687vw, 124px);
}
.sec02 .service_title {
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", "YuMincho", "noto serif jp", serif;
  font-size: clamp(16px, 2.187vw, 28px);
  text-align: center;
  margin-bottom: clamp(29px, 3.906vw, 50px);
}
.sec02 .service_box {
  width: 100%;
  gap: clamp(41px, 5.468vw, 70px);
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: clamp(41px, 5.468vw, 70px);
}
.sec02 .service_box .item .title_box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: clamp(11px, 1.562vw, 20px);
}
.sec02 .service_box .item .title_box img {
  width: clamp(48px, 6.25vw, 80px);
  height: clamp(48px, 6.25vw, 80px);
}
.sec02 .service_box .item .title_box .item_title {
  padding-left: 1em;
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", "YuMincho", "noto serif jp", serif;
  font-size: clamp(15px, 2.031vw, 26px);
}
.sec02 .service_box .item .item_text {
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .sec02 .sec_header {
    margin-bottom: 7.5vw;
  }
  .sec02 .sec_text {
    margin-bottom: 6vw;
  }
  .sec02 .title {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 12.5vw;
    font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", "YuMincho", "noto serif jp", serif;
    font-size: 5.3vw;
    position: relative;
  }
  .sec02 .title::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -9vw;
    border-bottom: #231815 0.5px solid;
    width: 7vw;
  }
  .sec02 .title::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -9vw;
    border-bottom: #231815 0.5px solid;
    width: 7vw;
  }
  .sec02 .service_title {
    font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", "YuMincho", "noto serif jp", serif;
    font-size: 5.3vw;
    text-align: center;
    margin-bottom: 8vw;
  }
  .sec02 .service_box {
    width: 100%;
    gap: initial;
    row-gap: 13.8vw;
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 13.8vw;
  }
  .sec02 .service_box .item .title_box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 4.2vw;
  }
  .sec02 .service_box .item .title_box img {
    width: 20vw;
    height: 20vw;
  }
  .sec02 .service_box .item .title_box .item_title {
    padding-left: 1em;
    font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", "YuMincho", "noto serif jp", serif;
    font-size: 6vw;
  }
  .sec02 .service_box .item .item_text {
    text-align: justify;
  }
}

.sec03 {
  /* タブボタン */
  /* 選択されたタブ＋コンテンツ表示 */
}
.sec03 .tab-switch {
  --tab-color:#92bac2;
  display: flex;
  flex-wrap: wrap;
  max-width: 1180px;
  margin-inline: auto;
  gap: 0 0;
}
.sec03 .tab-switch input {
  /* ラジオ非表示 */
  display: none;
}
.sec03 .tab-switch label {
  box-sizing: border-box;
  width: clamp(127px, 16.562vw, 212px);
  height: clamp(127px, 16.562vw, 212px);
  padding: 0.7em 1em;
  border-radius: 15px;
  background: #fff;
  cursor: pointer;
  order: -1;
  text-align: center;
}
.sec03 .tab-switch label .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: clamp(14px, 1.953vw, 25px);
}
.sec03 .tab-switch label .box .title {
  padding-right: 1em;
  font-size: clamp(11px, 1.562vw, 20px);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #0076ad;
}
.sec03 .tab-switch label .box .photo {
  position: absolute;
  z-index: 3;
  top: clamp(-35px, -2.734vw, -20px);
  right: clamp(2px, 0.39vw, 5px);
  width: clamp(49px, 6.406vw, 82px);
  height: clamp(44px, 5.781vw, 74px);
}
.sec03 .tab-switch label .dc_place {
  font-size: clamp(9px, 1.25vw, 16px);
  letter-spacing: 0.12em;
  text-align: left;
  color: #231815;
}
.sec03 .tab-switch label .dc_name {
  font-size: clamp(13px, 1.718vw, 22px);
  letter-spacing: 0.02em;
  text-align: left;
  color: #231815;
}
.sec03 .tabbox:not(:last-of-type) {
  margin-right: clamp(7px, 0.937vw, 12px);
}
.sec03 .tab-content {
  /* コンテンツ非表示 */
  display: none;
  width: 100%;
  padding: 1.5em 0;
}
.sec03 .tab-switch input:checked + label {
  background: var(--tab-color);
  color: #727171;
}
.sec03 .tab-switch input:checked + label + .tab-content {
  display: block;
}
.sec03 .tab-content .title_box {
  display: flex;
  align-items: center;
  margin: clamp(17px, 2.343vw, 30px) 0;
}
.sec03 .tab-content .title_box .title {
  font-size: clamp(16px, 2.187vw, 28px);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #0076ad;
  padding-right: 1em;
}
.sec03 .tab-content .title_box .box {
  padding-right: 2em;
  border-right: 1px solid #0076ad;
  margin-right: 2em;
}
.sec03 .tab-content .title_box .box .dc_place {
  font-size: clamp(9px, 1.25vw, 16px);
  letter-spacing: 0.1em;
}
.sec03 .tab-content .title_box .box .dc_name {
  font-size: clamp(20px, 2.656vw, 34px);
  letter-spacing: 0.1em;
}
.sec03 .tab-content .title_box .dc_time {
  font-size: clamp(11px, 1.484vw, 19px);
  letter-spacing: 0.1em;
}
.sec03 .tab-content .dc_photo {
  margin-bottom: clamp(24px, 3.125vw, 40px);
}
.sec03 .tab-content .achievements_title {
  padding-left: clamp(29px, 3.906vw, 50px);
  font-size: clamp(17px, 2.343vw, 30px);
  letter-spacing: 0.1em;
  margin-bottom: clamp(11px, 1.562vw, 20px);
}
.sec03 .tab-content .achievements_list {
  box-sizing: border-box;
  padding: 0 clamp(29px, 3.906vw, 50px) clamp(41px, 5.468vw, 70px);
  display: grid;
  -moz-column-gap: clamp(11px, 1.562vw, 20px);
       column-gap: clamp(11px, 1.562vw, 20px);
  grid-template-columns: repeat(2, 1fr);
}
.sec03 .tab-content .achievements_list .service_box .title {
  font-size: clamp(13px, 1.796vw, 23px);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #0076ad;
  margin-bottom: clamp(20px, 2.734vw, 35px);
}
.sec03 .tab-content .achievements_list .service_box .list {
  padding-left: 1.2em;
}
.sec03 .tab-content .achievements_list .service_box .list .item {
  font-size: clamp(11px, 1.562vw, 20px);
  letter-spacing: 0.13em;
}
.sec03 .tab-content .achievements_list .service_box .list .item:not(:last-of-type) {
  margin-bottom: clamp(8px, 1.171vw, 15px);
}
.sec03 .tab-content .jisseki_box {
  width: 100%;
  height: clamp(49px, 6.484vw, 83px);
  border-radius: clamp(11px, 1.562vw, 20px);
  border: 1px solid #0076ad;
  background-color: #0076ad;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sec03 .tab-content .jisseki_box .left {
  width: 30%;
  height: 100%;
  height: clamp(48px, 6.328vw, 81px);
  margin-left: 1px;
  border-radius: clamp(11px, 1.562vw, 20px) 0 0 clamp(11px, 1.562vw, 20px);
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sec03 .tab-content .jisseki_box .left .title {
  font-size: clamp(13px, 1.718vw, 22px);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  color: #0076ad;
}
.sec03 .tab-content .jisseki_box .right {
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sec03 .tab-content .jisseki_box .right .text {
  padding-right: 2em;
  font-size: clamp(11px, 1.562vw, 20px);
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
}
.sec03 .tab-content .jisseki_box .right .text .num {
  font-size: clamp(19px, 2.5vw, 32px);
}
.sec03 .tab-content .jisseki_box .right .text span {
  font-size: clamp(8px, 1.093vw, 14px);
  letter-spacing: 0.1em;
}
.sec03 .tab-content .sample_box {
  margin: clamp(24px, 3.125vw, 40px) 0;
}
.sec03 .tab-content .sample_box img {
  width: 100vw;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec03 .tab-content .link_btn {
  margin-left: auto;
  margin-bottom: clamp(48px, 6.25vw, 80px);
  background-color: #0076ad;
}
.sec03 .tab-content .message_box {
  box-sizing: border-box;
  width: clamp(768px, 100vw, 1280px);
  min-height: clamp(227px, 29.687vw, 380px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(29px, 3.906vw, 50px);
  border-radius: clamp(17px, 2.343vw, 30px);
  background-color: #fff;
  position: relative;
}
.sec03 .tab-content .message_box .textbox .message_text {
  font-size: clamp(9px, 1.25vw, 16px);
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-align: justify;
}
.sec03 .tab-content .message_box .imagebox .dc_photo {
  content: "";
  position: absolute;
  bottom: clamp(-20px, -1.562vw, -11px);
  right: clamp(35px, 4.687vw, 60px);
  width: clamp(238px, 31.093vw, 398px);
}
.sec03 .tab-content .message_box .imagebox .dc_photo .item_name {
  padding-top: clamp(8px, 1.171vw, 15px);
  font-size: clamp(11px, 1.562vw, 20px);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec03 {
    /* タブボタン */
  }
  .sec03 .tab-switch {
    --tab-color:#92bac2;
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    margin-inline: auto;
    gap: 0 0;
  }
  .sec03 .tab-switch input {
    /* ラジオ非表示 */
    display: none;
  }
  .sec03 .tab-switch label {
    box-sizing: border-box;
    width: 42vw;
    height: 40vw;
    padding: 0.7em 2vw;
    border-radius: 3.75vw;
    background: #fff;
    cursor: pointer;
    order: -1;
    text-align: center;
    margin-right: 2.5w;
    margin-bottom: 8.2vw;
  }
  .sec03 .tab-switch label .box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 4.2vw;
  }
  .sec03 .tab-switch label .box .title {
    padding-right: 1em;
    font-size: 4.2vw;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #0076ad;
  }
  .sec03 .tab-switch label .box .photo {
    position: absolute;
    z-index: 3;
    top: -8.75vw;
    right: 1vw;
    width: 20.5vw;
    height: 18.5vw;
  }
  .sec03 .tab-switch label .dc_place {
    font-size: 3.5vw;
    letter-spacing: 0.12em;
    text-align: left;
    color: #231815;
  }
  .sec03 .tab-switch label .dc_name {
    font-size: 4.5vw;
    letter-spacing: 0.08em;
    text-align: left;
    color: #231815;
  }
  .sec03 .tab-content {
    /* コンテンツ非表示 */
    display: none;
    width: 100%;
    padding: 1.5em 0;
  }
  .sec03 .tab-content .title_box {
    display: block;
    align-items: center;
    margin: 4.2vw 0;
  }
  .sec03 .tab-content .title_box .title {
    font-size: 4.8vw;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #0076ad;
    padding-right: 0;
    width: -moz-fit-content;
    width: fit-content;
    border-bottom: 1px solid #0076ad;
    margin-bottom: 2.4vw;
  }
  .sec03 .tab-content .title_box .box {
    padding-right: 0;
    border-right: initial;
    margin-right: 0;
  }
  .sec03 .tab-content .title_box .box .dc_place {
    font-size: 4vw;
    letter-spacing: 0.1em;
  }
  .sec03 .tab-content .title_box .box .dc_name {
    font-size: 5.5vw;
    letter-spacing: 0.1em;
  }
  .sec03 .tab-content .title_box .dc_time {
    font-size: 4vw;
    letter-spacing: 0.1em;
  }
  .sec03 .tab-content .dc_photo {
    margin-bottom: 4.2vw;
  }
  .sec03 .tab-content .achievements_title {
    padding-left: 0;
    font-size: 4.8vw;
    letter-spacing: 0.1em;
    margin-bottom: 4.2vw;
  }
  .sec03 .tab-content .achievements_list {
    box-sizing: border-box;
    padding: 0 0 5.5vw;
    display: grid;
    -moz-column-gap: initial;
         column-gap: initial;
    row-gap: 8vw;
    grid-template-columns: repeat(1, 1fr);
  }
  .sec03 .tab-content .achievements_list .service_box .title {
    font-size: 4.8vw;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #0076ad;
    margin-bottom: 4.2vw;
  }
  .sec03 .tab-content .achievements_list .service_box .list {
    padding-left: 1.2em;
  }
  .sec03 .tab-content .achievements_list .service_box .list .item {
    font-size: 4vw;
    letter-spacing: 0.13em;
  }
  .sec03 .tab-content .achievements_list .service_box .list .item:not(:last-of-type) {
    margin-bottom: 2vw;
  }
  .sec03 .tab-content .jisseki_box {
    box-sizing: border-box;
    width: 100%;
    height: initial;
    border-radius: 5vw;
    border: 1px solid #0076ad;
    background-color: #0076ad;
    display: block;
    justify-content: center;
    align-items: center;
  }
  .sec03 .tab-content .jisseki_box .left {
    box-sizing: border-box;
    width: 100%;
    height: 12.5vw;
    margin-left: 0;
    border-radius: 5vw 5vw 0 0;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .sec03 .tab-content .jisseki_box .left .title {
    font-size: 4.8vw;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-align: center;
    color: #0076ad;
  }
  .sec03 .tab-content .jisseki_box .right {
    width: 100%;
    display: block;
  }
  .sec03 .tab-content .jisseki_box .right .text {
    padding-right: 1em;
    font-size: 4vw;
    letter-spacing: 0.1em;
    text-align: center;
    color: #fff;
  }
  .sec03 .tab-content .jisseki_box .right .text .num {
    font-size: 5.2vw;
  }
  .sec03 .tab-content .jisseki_box .right .text span {
    font-size: 14px;
    letter-spacing: 0.1em;
  }
  .sec03 .tab-content .sample_box {
    margin: 4.2vw 0;
  }
  .sec03 .tab-content .sample_box img {
    width: 100vw;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .sec03 .tab-content .link_btn {
    margin-left: initial;
    margin: 0 auto;
    margin-bottom: 13.8vw;
    background-color: #0076ad;
  }
  .sec03 .tab-content .message_box {
    box-sizing: border-box;
    margin-top: 50vw;
    width: 100%;
    min-height: 95vw;
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
    align-items: center;
    padding: 22.5vw 4vw 4vw;
    border-radius: 30px;
    background-color: #fff;
    position: relative;
  }
  .sec03 .tab-content .message_box .textbox .message_text {
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1.8;
    text-align: justify;
  }
  .sec03 .tab-content .message_box .imagebox .dc_photo {
    content: "";
    position: absolute;
    bottom: initial;
    top: -40vw;
    right: initial;
    left: 50%;
    transform: translateX(-50%);
    width: 59.7vw;
  }
  .sec03 .tab-content .message_box .imagebox .dc_photo .item_name {
    padding-top: 2.4vw;
    font-size: 4.2vw;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-align: center;
  }
}

.sec04 .sec_header .sec_title, .sec04 .sec_header .sec_subtitle {
  text-align: center;
}
.sec04 .qa_box {
  width: 100%;
}
.sec04 .qa_box .list .item .text_q {
  width: 100%;
  padding: 10px 15px;
  background-color: #fff;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
  position: relative;
}
.sec04 .qa_box .list .item .text_q::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2.8em;
  height: 100%;
  border-right: 1px solid;
}
.sec04 .qa_box .list .item .text_a {
  padding-left: 4em;
  letter-spacing: 0.1em;
  line-height: 1.8;
  font-size: 16px;
  text-align: justify;
}
.sec04 .qa_box .item:not(:last-of-type) {
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .sec04 {
    margin-bottom: 27.6vw;
  }
  .sec04 .qa_box {
    width: 100%;
  }
  .sec04 .qa_box .list .item .text_q {
    box-sizing: border-box;
    width: 100%;
    padding: 2.5vw 3.75vw;
    margin-bottom: 3.75vw;
    font-size: 4.8vw;
    padding-left: 3em;
    text-indent: -2.5em;
    position: relative;
  }
  .sec04 .qa_box .list .item .text_q::before {
    content: "";
    position: absolute;
    top: 0;
    left: 2.3em;
    height: 100%;
    border-right: 1px solid;
  }
  .sec04 .qa_box .list .item .text_a {
    box-sizing: border-box;
    padding-left: 0.5em;
    padding-right: 0.5em;
    letter-spacing: 0.1em;
    line-height: 1.8;
    font-size: 4vw;
    text-align: justify;
  }
  .sec04 .qa_box .item:not(:last-of-type) {
    margin-bottom: 6.25vw;
  }
}

.sec05 .member_image {
  margin-bottom: clamp(29px, 3.906vw, 50px);
}
.sec05 .member_image img {
  width: 100%;
}
.sec05 .contact_box {
  box-sizing: border-box;
  width: clamp(724px, 94.375vw, 1208px);
  max-width: 94%;
  margin: 0 auto;
  padding: clamp(50px, 6.562vw, 84px) clamp(53px, 7.031vw, 90px);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.sec05 .contact_box .textbox .sec_title {
  margin-bottom: clamp(29px, 3.906vw, 50px);
}
.sec05 .contact_box .textbox .text {
  margin-bottom: clamp(53px, 7.031vw, 90px);
}
.sec05 .contact_box .textbox .link_btn {
  margin-bottom: clamp(17px, 2.343vw, 30px);
}
.sec05 .contact_box .textbox .text_tel {
  font-size: clamp(32px, 4.296vw, 55px);
  font-weight: 200;
  letter-spacing: 0.06em;
}
.sec05 .contact_box .imagebox {
  position: relative;
}
.sec05 .contact_box .imagebox img {
  position: absolute;
  top: clamp(-20px, -1.562vw, -11px);
  left: clamp(96px, 12.5vw, 160px);
  width: clamp(329px, 42.968vw, 550px);
  height: clamp(344px, 44.921vw, 575px);
}
@media screen and (max-width: 767px) {
  .sec05 {
    overflow: hidden;
  }
  .sec05 .contact_box {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 5.5vw;
    display: block;
  }
  .sec05 .contact_box .textbox .sec_title {
    margin-bottom: clamp(29px, 3.906vw, 50px);
  }
  .sec05 .contact_box .textbox .text {
    font-size: 4vw;
    letter-spacing: 0.1em;
    line-height: 2;
    margin-bottom: 8vw;
    text-align: justify;
  }
  .sec05 .contact_box .textbox .link_btn {
    margin: 0 auto;
    margin-bottom: clamp(17px, 2.343vw, 30px);
  }
  .sec05 .contact_box .textbox .tel_btn {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .sec05 .contact_box .textbox .tel_btn .text_tel {
    font-size: 9.93vw;
    font-weight: 200;
    letter-spacing: 0.06em;
  }
  .sec05 .contact_box .imagebox {
    height: 61.16vw;
    position: relative;
  }
  .sec05 .contact_box .imagebox img {
    position: absolute;
    top: 0;
    left: 11vw;
    width: 103.46vw;
    height: 65.24vw;
    -o-object-fit: contain;
       object-fit: contain;
  }
}/*# sourceMappingURL=opening.css.map */