@charset "UTF-8";
html {
  overflow-x: hidden;
}

body {
  background-image: url("../img/bg-pattern.jpg");
  background-repeat: repeat;
  background-size: 60vw auto;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: #fff;
  opacity: 0.8;
  pointer-events: none;
  z-index: -1;
}

.fv-wrapper {
  background-color: rgba(255, 217, 121, 0.4);
  overflow: hidden;
  padding-top: 140px;
}

.fv {
  text-align: center;
  padding: 0 20px 60px;
  min-height: 120vh;
  height: 185vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  z-index: 1;
}

/* キャッチ */
.fv-catch {
  font-size: 2vw;
  text-align: center;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
  letter-spacing: 7px;
  padding-top: 60px;
  position: relative;
  z-index: 5;
}

/* サブコピー */
.fv-sub {
  position: relative;
  font-size: 2vw;
  text-align: center;
  font-weight: bold;
  color: #005C8B;
  margin-top: 42px;
  margin-bottom: 50px;
  letter-spacing: 7px;
  z-index: 5;
}

.fv-donut {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 84vw;
  height: 84vw;
  border-radius: 50%;
  background: #FBDBAD;
  -webkit-mask: radial-gradient(circle, transparent 38%, black 39%);
  mask: radial-gradient(circle, transparent 49%, black 39%);
  z-index: 1;
}

.fv-donut-img {
  position: absolute;
  width: 84vw;
  height: 84vw;
  object-fit: contain;
  z-index: 0; /* テキストより背面 */
  pointer-events: none;
  overflow: hidden;
}

.fv-donut-img.left {
  top: -23vw;
  left: -25vw;
  width: 50%;
  z-index: 1;
}

.fv-donut-img.right {
  top: -34vw;
  right: 0;
  width: 35%;
  overflow: hidden;
  z-index: 1;
}

/* ロゴ円配置 */
.fv-icons {
  position: relative;
  width: 100%;
  height: 100%;
  list-style: none;
  z-index: 2;
  animation: spin-circle 20s linear infinite;
}

/* 円全体の大きさ基準 */
.fv-circle-area {
  position: relative;
  width: 50vw;
  height: auto;
  margin: 0 auto;
  z-index: 2;
}

/* アイコン共通設定 */
.fv-icons li {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8vmin;
  height: 8vmin;
  margin: -4vmin;
}

/* 円周配置（ドーナツ帯上） */
.fv-icons li:nth-child(1) {
  transform: rotate(0deg) translate(0, -39vw);
}

.fv-icons li:nth-child(2) {
  transform: rotate(45deg) translate(0, -39vw);
}

.fv-icons li:nth-child(3) {
  transform: rotate(90deg) translate(0, -39vw);
}

.fv-icons li:nth-child(4) {
  transform: rotate(135deg) translate(0, -39vw);
}

.fv-icons li:nth-child(5) {
  transform: rotate(180deg) translate(0, -39vw);
}

.fv-icons li:nth-child(6) {
  transform: rotate(225deg) translate(0, -39vw);
}

.fv-icons li:nth-child(7) {
  transform: rotate(270deg) translate(0, -39vw);
}

.fv-icons li:nth-child(8) {
  transform: rotate(315deg) translate(0, -39vw);
}

.fv-icons li img {
  width: 14vw;
  max-width: 226px;
}

@keyframes spin-circle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* 中央 */
.fv-center {
  position: absolute;
  inset: 0;
  margin: -55% auto;
  text-align: center;
  z-index: 3;
}

.fv-center img {
  width: 50%;
  margin-bottom: 10px;
}

.fv-text-main {
  font-weight: bold;
  color: #000;
  font-size: 2vw;
  letter-spacing: 1vw;
}

.fv-text-sub {
  font-weight: bold;
  color: #000;
  font-size: 2vw;
  letter-spacing: 1vw;
}

.fv-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 1em 2.5em;
  background: #DA7400;
  color: #fff;
  font-weight: bold;
  font-size: 1.5vw;
  text-decoration: none;
  border-radius: 100px;
  border: 2px solid #DA7400;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.fv-btn:hover {
  background: #fff;
  color: #DA7400;
}

section {
  scroll-margin-top: 140px;
}

@media (min-width: 2000px) {
  .fv-donut {
    mask: radial-gradient(circle, transparent 52%, black 39%);
  }
  .fv-donut-img.right {
    width: 30%;
    top: -46vw;
    right: 0;
  }
  .fv-donut-img.left {
    top: -23vw;
    left: -33vw;
  }
}
@media (min-width: 1600px) {
  .fv-center {
    margin: -43% auto;
  }
}
@media (max-width: 1950px) {
  .fv-donut-img.left {
    left: -30vw;
  }
  .fv-donut-img.right {
    top: -42vw;
  }
}
@media (max-width: 1500px) {
  .fv {
    height: 160vh;
  }
  .fv-donut {
    width: 86vw;
    height: 86vw;
    mask: radial-gradient(circle, transparent 30vw, black 39%);
  }
  .fv-icons li:nth-child(1) {
    transform: rotate(0deg) translate(0, -40vw);
  }
  .fv-icons li:nth-child(2) {
    transform: rotate(45deg) translate(0, -40vw);
  }
  .fv-icons li:nth-child(3) {
    transform: rotate(90deg) translate(0, -40vw);
  }
  .fv-icons li:nth-child(4) {
    transform: rotate(135deg) translate(0, -40vw);
  }
  .fv-icons li:nth-child(5) {
    transform: rotate(180deg) translate(0, -40vw);
  }
  .fv-icons li:nth-child(6) {
    transform: rotate(225deg) translate(0, -40vw);
  }
  .fv-icons li:nth-child(7) {
    transform: rotate(270deg) translate(0, -40vw);
  }
  .fv-icons li:nth-child(8) {
    transform: rotate(315deg) translate(0, -40vw);
  }
  .fv-center img {
    width: 60%;
  }
  .fv-icons li img {
    width: 12vw;
  }
}
@media (max-width: 1400px) {
  .fv {
    height: 165vh;
  }
  .fv-icons li:nth-child(1) {
    transform: rotate(0deg) translate(0, -39.3vw);
  }
  .fv-icons li:nth-child(2) {
    transform: rotate(45deg) translate(0, -39.3vw);
  }
  .fv-icons li:nth-child(3) {
    transform: rotate(90deg) translate(0, -39.3vw);
  }
  .fv-icons li:nth-child(4) {
    transform: rotate(135deg) translate(0, -39.3vw);
  }
  .fv-icons li:nth-child(5) {
    transform: rotate(180deg) translate(0, -39.3vw);
  }
  .fv-icons li:nth-child(6) {
    transform: rotate(225deg) translate(0, -39.3vw);
  }
  .fv-icons li:nth-child(7) {
    transform: rotate(270deg) translate(0, -39.3vw);
  }
  .fv-icons li:nth-child(8) {
    transform: rotate(315deg) translate(0, -39.3vw);
  }
}
@media (max-width: 1300px) {
  .fv {
    padding-top: 0;
    height: 120vh;
  }
  .fv-donut {
    width: 88vw;
    height: 88vw;
    mask: radial-gradient(circle, transparent 30vw, black 43%);
  }
  .fv-icons li:nth-child(1) {
    transform: rotate(0deg) translate(0, -40vw);
  }
  .fv-icons li:nth-child(2) {
    transform: rotate(45deg) translate(0, -40vw);
  }
  .fv-icons li:nth-child(3) {
    transform: rotate(90deg) translate(0, -40vw);
  }
  .fv-icons li:nth-child(4) {
    transform: rotate(135deg) translate(0, -40vw);
  }
  .fv-icons li:nth-child(5) {
    transform: rotate(180deg) translate(0, -40vw);
  }
  .fv-icons li:nth-child(6) {
    transform: rotate(225deg) translate(0, -40vw);
  }
  .fv-icons li:nth-child(7) {
    transform: rotate(270deg) translate(0, -40vw);
  }
  .fv-icons li:nth-child(8) {
    transform: rotate(315deg) translate(0, -40vw);
  }
  .fv-circle-area {
    width: 40vw;
    height: 23vw;
  }
  .fv-center {
    margin-top: -50%;
  }
  .fv-text-main {
    font-size: 2vw;
    letter-spacing: 0.7vw;
  }
  .fv-text-sub {
    font-size: 2vw;
    letter-spacing: 0.7vw;
  }
  .fv-btn {
    font-size: 1.5vw;
  }
  .fv-center img {
    width: 70%;
  }
}
@media (max-width: 768px) {
  .fv-wrapper {
    padding-top: 125px;
  }
  section {
    scroll-margin-top: 80px;
  }
}
@media (max-height: 700px) {
  .fv {
    padding-top: 0;
    height: 200vh;
  }
  .fv-center img {
    width: 60%;
  }
  .fv-btn {
    font-size: 2vw;
    margin-top: 36px;
  }
}
@media (max-width: 1300px) and (max-height: 830px) {
  .fv {
    padding-top: 0;
    height: 160vh;
  }
  .fv-center img {
    width: 80%;
  }
  .fv-btn {
    font-size: 2vw;
  }
  .fv-icons li:nth-child(1) {
    transform: rotate(0deg) translate(0, -40vw);
  }
  .fv-icons li:nth-child(2) {
    transform: rotate(45deg) translate(0, -40vw);
  }
  .fv-icons li:nth-child(3) {
    transform: rotate(90deg) translate(0, -40vw);
  }
  .fv-icons li:nth-child(4) {
    transform: rotate(135deg) translate(0, -40vw);
  }
  .fv-icons li:nth-child(5) {
    transform: rotate(180deg) translate(0, -40vw);
  }
  .fv-icons li:nth-child(6) {
    transform: rotate(225deg) translate(0, -40vw);
  }
  .fv-icons li:nth-child(7) {
    transform: rotate(270deg) translate(0, -40vw);
  }
  .fv-icons li:nth-child(8) {
    transform: rotate(315deg) translate(0, -40vw);
  }
}
@media (max-width: 1024px) {
  .fv-icons li:nth-child(1) {
    transform: rotate(0deg) translate(0, -39vw);
  }
  .fv-icons li:nth-child(2) {
    transform: rotate(45deg) translate(0, -39vw);
  }
  .fv-icons li:nth-child(3) {
    transform: rotate(90deg) translate(0, -39vw);
  }
  .fv-icons li:nth-child(4) {
    transform: rotate(135deg) translate(0, -39vw);
  }
  .fv-icons li:nth-child(5) {
    transform: rotate(180deg) translate(0, -39vw);
  }
  .fv-icons li:nth-child(6) {
    transform: rotate(225deg) translate(0, -39vw);
  }
  .fv-icons li:nth-child(7) {
    transform: rotate(270deg) translate(0, -39vw);
  }
  .fv-icons li:nth-child(8) {
    transform: rotate(315deg) translate(0, -39vw);
  }
}
@media (max-width: 1300px) and (max-height: 700px) {
  .fv {
    height: 190vh;
  }
}
@media (max-width: 1024px) and (min-height: 800px) {
  .fv-center {
    margin-top: -30%;
  }
}
@media (max-height: 600px) {
  .fv {
    padding-top: 0;
    height: 215vh;
  }
  .fv-center {
    margin-top: -40%;
  }
  .fv-icons li:nth-child(1) {
    transform: rotate(0deg) translate(0, -41vw);
  }
  .fv-icons li:nth-child(2) {
    transform: rotate(45deg) translate(0, -41vw);
  }
  .fv-icons li:nth-child(3) {
    transform: rotate(90deg) translate(0, -41vw);
  }
  .fv-icons li:nth-child(4) {
    transform: rotate(135deg) translate(0, -41vw);
  }
  .fv-icons li:nth-child(5) {
    transform: rotate(180deg) translate(0, -41vw);
  }
  .fv-icons li:nth-child(6) {
    transform: rotate(225deg) translate(0, -41vw);
  }
  .fv-icons li:nth-child(7) {
    transform: rotate(270deg) translate(0, -41vw);
  }
  .fv-icons li:nth-child(8) {
    transform: rotate(315deg) translate(0, -41vw);
  }
  .fv-center img {
    width: 70%;
  }
  .fv-btn {
    font-size: 2vw;
  }
}
@media (max-height: 500px) {
  .fv {
    padding-top: 34%;
  }
  .fv-wrapper {
    padding-top: 108px;
  }
}
@media (max-width: 900px) {
  .fv {
    padding-top: 15%;
  }
  .fv-icons li:nth-child(1) {
    transform: rotate(0deg) translate(0, -40vw);
  }
  .fv-icons li:nth-child(2) {
    transform: rotate(45deg) translate(0, -40vw);
  }
  .fv-icons li:nth-child(3) {
    transform: rotate(90deg) translate(0, -40vw);
  }
  .fv-icons li:nth-child(4) {
    transform: rotate(135deg) translate(0, -40vw);
  }
  .fv-icons li:nth-child(5) {
    transform: rotate(180deg) translate(0, -40vw);
  }
  .fv-icons li:nth-child(6) {
    transform: rotate(225deg) translate(0, -40vw);
  }
  .fv-icons li:nth-child(7) {
    transform: rotate(270deg) translate(0, -40vw);
  }
  .fv-icons li:nth-child(8) {
    transform: rotate(315deg) translate(0, -40vw);
  }
  .fv-center {
    margin-top: -35%;
  }
  .fv-catch {
    font-size: 3.5vw;
  }
  .fv-sub {
    font-size: 3.5vw;
  }
}
@media (max-width: 900px) and (min-height: 700px) {
  .fv {
    padding-top: 0;
    min-height: 90vh;
  }
  .fv-catch {
    font-size: 3.5vw;
  }
  .fv-sub {
    font-size: 3.5vw;
  }
}
@media (max-width: 900px) and (min-height: 1000px) {
  .fv {
    padding-top: 0;
    min-height: 70vh;
  }
  .fv-donut-img.left {
    top: -13vw;
  }
  .fv-donut-img.right {
    top: -20vw;
  }
  .fv-catch {
    font-size: 3.5vw;
  }
  .fv-sub {
    font-size: 3.5vw;
  }
  .fv-icons li:nth-child(1) {
    transform: rotate(0deg) translate(0, -39vw);
  }
  .fv-icons li:nth-child(2) {
    transform: rotate(45deg) translate(0, -39vw);
  }
  .fv-icons li:nth-child(3) {
    transform: rotate(90deg) translate(0, -39vw);
  }
  .fv-icons li:nth-child(4) {
    transform: rotate(135deg) translate(0, -39vw);
  }
  .fv-icons li:nth-child(5) {
    transform: rotate(180deg) translate(0, -39vw);
  }
  .fv-icons li:nth-child(6) {
    transform: rotate(225deg) translate(0, -39vw);
  }
  .fv-icons li:nth-child(7) {
    transform: rotate(270deg) translate(0, -39vw);
  }
  .fv-icons li:nth-child(8) {
    transform: rotate(315deg) translate(0, -39vw);
  }
}
@media (max-width: 1100px) and (min-height: 1000px) {
  .fv {
    padding-top: 0;
    height: 75vh;
    min-height: 75vh;
  }
  .fv-catch {
    font-size: 3.5vw;
  }
  .fv-sub {
    font-size: 3.5vw;
  }
  .fv-center {
    margin-top: -35%;
  }
  .fv-circle-area {
    width: 53vw;
  }
  .fv-text-main {
    font-size: 2.5vw;
  }
  .fv-text-sub {
    font-size: 2.5vw;
  }
  .fv-btn {
    font-size: 2vw;
  }
}
@media (max-width: 1100px) and (min-height: 1300px) {
  .fv-donut-img.right {
    top: -20vh;
  }
}
@media (max-width: 500px) {
  .fv {
    min-height: 50vh;
    height: 50vh;
  }
  .fv-wrapper {
    padding-top: 55px;
  }
  .fv-btn {
    font-size: 2vw;
    margin-top: 10px;
  }
  .fv-circle-area {
    width: 50vw;
  }
  .fv-donut-img.left {
    top: -15vw;
    left: -25vw;
    width: 60%;
  }
  .fv-donut-img.right {
    top: -15vw;
    right: 0;
    width: 35%;
  }
  .fv-center img {
    margin-bottom: 0;
  }
  .fv-text-main {
    font-size: 2.5vw;
  }
  .fv-text-sub {
    font-size: 2.5vw;
  }
  .fv-icons li:nth-child(1) {
    transform: rotate(0deg) translate(0, -39vw);
  }
  .fv-icons li:nth-child(2) {
    transform: rotate(45deg) translate(0, -39vw);
  }
  .fv-icons li:nth-child(3) {
    transform: rotate(90deg) translate(0, -39vw);
  }
  .fv-icons li:nth-child(4) {
    transform: rotate(135deg) translate(0, -39vw);
  }
  .fv-icons li:nth-child(5) {
    transform: rotate(180deg) translate(0, -39vw);
  }
  .fv-icons li:nth-child(6) {
    transform: rotate(225deg) translate(0, -39vw);
  }
  .fv-icons li:nth-child(7) {
    transform: rotate(270deg) translate(0, -39vw);
  }
  .fv-icons li:nth-child(8) {
    transform: rotate(315deg) translate(0, -39vw);
  }
  .fv-catch {
    letter-spacing: 3px;
    font-size: 4vw;
  }
  .fv-sub {
    letter-spacing: 3px;
    margin-top: 15px;
    font-size: 4vw;
    margin-bottom: 10px;
  }
}
@media (max-width: 400px) {
  .fv {
    min-height: 55vh;
  }
  .fv-center img {
    width: 70%;
  }
}/*# sourceMappingURL=fv.css.map */