@charset "UTF-8";
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

ul li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

/* change colors to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colors to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border color to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

.js-slideUp {
  opacity: 0;
}

.scrollin {
  -webkit-animation: fadeUpAnime 0.5s forwards;
  animation: fadeUpAnime 0.5s forwards;
  -webkit-animation-name: scrollin;
  animation-name: scrollin;
}

@-webkit-keyframes scrollin {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes scrollin {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/*js-slideLeft 左から出てくる */
.js-slideLeft {
  opacity: 0;
}

.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
  animation-name: fadeLeftAnime;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
/*js-slideRight 右から出てくる */
.js-slideRight {
  opacity: 0;
}

.fadeRight {
  -webkit-animation-name: fadeRightAnime;
  animation-name: fadeRightAnime;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.button {
  display: inline-block;
  position: relative;
  width: 150px;
  padding: 0 2%;
}
.button:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .button {
    width: 125px;
    padding: 0;
  }
}
@media screen and (max-width: 480px) {
  .button {
    width: 90px;
  }
}
.button::before {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 15px;
  top: 6px;
  right: 0;
  border-top: solid 3px #333;
  border-right: solid 3px #333;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 480px) {
  .button::before {
    top: 4px;
    width: 12px;
    height: 12px;
    border-top: solid 2px #333;
    border-right: solid 2px #333;
  }
}
.button::after {
  content: "";
  position: absolute;
  display: block;
  width: 28px;
  height: 3px;
  background-color: #333;
  top: 14px;
  right: 0;
}
@media screen and (max-width: 480px) {
  .button::after {
    top: 10px;
    width: 20px;
    height: 2px;
  }
}
.button a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 2;
  font-size: 1.2rem;
}

.button1 {
  display: inline-block;
  position: relative;
  width: 110px;
  padding: 0 2%;
}
.button1:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .button1 {
    width: 125px;
    padding: 0;
  }
}
@media screen and (max-width: 480px) {
  .button1 {
    width: 90px;
  }
}
.button1::before {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 15px;
  top: 6px;
  right: 0;
  border-top: solid 3px #333;
  border-right: solid 3px #333;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 480px) {
  .button1::before {
    top: 4px;
    width: 12px;
    height: 12px;
    border-top: solid 2px #333;
    border-right: solid 2px #333;
  }
}
.button1::after {
  content: "";
  position: absolute;
  display: block;
  width: 28px;
  height: 3px;
  background-color: #333;
  top: 14px;
  right: 0;
}
@media screen and (max-width: 480px) {
  .button1::after {
    top: 10px;
    width: 20px;
    height: 2px;
  }
}
.button1 a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 2;
  font-size: 1.2rem;
}

.btntextchange {
  /*テキストの基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  border: 1px solid #555;
  border-radius: 25px;
  min-width: 210px;
  padding: 20px;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  color: #333;
  outline: none;
  /*アニメーションの指定*/
  transition: all 0.2s;
}

/*hoverした際の変化*/
.btntextchange:hover {
  background: #333;
  color: #fff;
}

.btntextchange span {
  /*絶対配置でテキストの位置を決める*/
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  /*アニメーションの指定*/
  transition: all 0.5s;
  /*ブロック要素にしてテキスト折り返しなし*/
  display: block;
  white-space: nowrap;
}

/*差し替わるテキストの設定*/
.btntextchange span:nth-child(2) {
  opacity: 0;
  /*透過0に*/
}

/*hoverするとテキストが入れ替わる設定*/
.btntextchange:hover span:nth-child(1) {
  opacity: 0;
  /*透過0に*/
}

.btntextchange:hover span:nth-child(2) {
  opacity: 1;
  /*不透明に*/
}

.arr {
  /*矢印と下線の基点とするためrelativeを指定*/
  position: relative;
  /*形状*/
  display: inline-block;
  padding: 0 45px;
  color: #333;
  text-decoration: none;
  outline: none;
}
.arr:hover {
  color: #54b844ab;
}

/*矢印と下線の形状*/
.arr::before {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 15px;
  top: 6px;
  right: 0;
  border-top: solid 3px #333;
  border-right: solid 3px #333;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.arr::after {
  content: "";
  position: absolute;
  display: block;
  width: 28px;
  height: 3px;
  background-color: #333;
  top: 14px;
  right: 0;
}

/*hoverした際の移動*/
.arr:hover::before {
  right: -11px;
  transition: all 0.4s;
}

.arr:hover::after {
  right: -11px;
  transition: all 0.4s;
}

.arr1 {
  /*矢印と下線の基点とするためrelativeを指定*/
  position: relative;
  /*形状*/
  display: inline-block;
  padding: 0 45px;
  color: #333;
  text-decoration: none;
  outline: none;
}
.arr1:hover {
  opacity: 50%;
}

.arr1::before {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 15px;
  top: 6px;
  right: 0;
  border-top: solid 3px #333;
  border-right: solid 3px #333;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.arr1::after {
  content: "";
  position: absolute;
  display: block;
  width: 28px;
  height: 3px;
  background-color: #333;
  top: 14px;
  right: 0;
}

/*hoverした際の移動*/
.arr1:hover::before {
  right: -11px;
  transition: all 0.4s;
}

.arr1:hover::after {
  right: -11px;
  transition: all 0.4s;
}

.btn05 {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  display: inline-block;
  color: #333;
  padding: 10px 20px;
  background: #eee;
  text-decoration: none;
  outline: none;
  /*アニメーションの指定*/
  transition: all 0.3s;
  transition-delay: 0.7s;
  /*0.7秒遅れてアニメーション*/
}

/*hoverした際の、ボタンの背景とテキスト色の変更*/
.btn05:hover {
  background: #333;
  color: #fff;
}

/*線の設定*/
.btn05 span {
  display: block;
}

/*横線の設定*/
.btn05::before,
.btn05::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  /*線の形状*/
  width: 0;
  height: 1px;
  background: #333;
  /*アニメーションの指定*/
  transition: all 0.2s linear;
}

/*縦線の設定*/
.btn05 span::before,
.btn05 span::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  /*線の形状*/
  width: 1px;
  height: 0;
  background: #333;
  /*アニメーションの指定*/
  transition: all 0.2s linear;
}

/*hoverした際、線が縦横100%伸びる*/
.btn05:hover::before,
.btn05:hover::after {
  width: 100%;
}

.btn05:hover span::before,
.btn05:hover span::after {
  height: 100%;
}

/*== 左下⇒右下⇒右上⇒左上⇒左下に枠線が伸びて塗りに */
/*左下から右下へ伸びる横線*/
.underbar::after {
  left: 0;
  bottom: 0;
}

/*右下から上へ伸びる縦線*/
.underbar span::after {
  right: 0;
  bottom: 0;
  transition-delay: 0.2s;
}

/*右上から左上へ伸びる横線*/
.underbar::before {
  right: 0;
  top: 0;
  transition-delay: 0.4s;
}

/*左上から左下へ伸びる横線*/
.underbar span::before {
  left: 0;
  top: 0;
  transition-delay: 0.6s;
}

.header {
  font-family: #339BE0;
}
.header_box {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_boxLeft {
  width: 25%;
}
.header_boxLeftWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_boxLeftWrap img {
  width: 30%;
}
.header_boxRight {
  width: 50%;
}

.nav_list {
  position: relative;
  font-family: #339BE0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav_listItem span:hover {
  padding-bottom: 2px;
  border-bottom: solid 2px #339BE0;
  opacity: 60%;
}
.nav_listItemEnd {
  width: 20%;
  text-align: center;
  box-shadow: 2px 5px 0 #333;
  background-color: #339BE0;
  transition: all 0.4s;
}
.nav_listItemEnd span {
  display: block;
  line-height: 3;
  color: #fff;
}
.nav_listItemEnd span:hover {
  color: #339BE0;
}
.nav_listItemEnd:hover {
  box-shadow: none;
  transform: translateY(5px);
  background: #fff;
  border: solid 1px #339BE0;
}

.header {
  font-family: #339BE0;
}
.header_re {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_reLeft {
  width: 25%;
}
.header_reLeftWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_reLeftWrap img {
  width: 30%;
}

.openbtn4 {
  position: relative;
  /*ボタン内側の基点となるためrelativeを指定*/
  background: #333;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
}

/*ボタン内側*/
.openbtn4 span {
  display: inline-block;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 5px;
  background: #fff;
  width: 45%;
}

.openbtn4 span:nth-of-type(1) {
  top: 13px;
}

.openbtn4 span:nth-of-type(2) {
  top: 19px;
}

.openbtn4 span:nth-of-type(3) {
  top: 25px;
}

.openbtn4 span:nth-of-type(3)::after {
  content: "Menu";
  /*3つ目の要素のafterにMenu表示を指定*/
  position: absolute;
  top: 5px;
  left: -2px;
  color: #fff;
  font-size: 0.6rem;
  text-transform: uppercase;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
.openbtn4.active span:nth-of-type(1) {
  top: 14px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn4.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn4.active span:nth-of-type(3) {
  top: 26px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.openbtn4.active span:nth-of-type(3)::after {
  content: "Close";
  /*3つ目の要素のafterにClose表示を指定*/
  transform: translateY(0) rotate(-45deg);
  top: 5px;
  left: 4px;
}

/*========= 中身 ===============*/
#g-nav.panelactive {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  height: 100vh;
}

/*丸の拡大*/
.circle-bg {
  position: fixed;
  z-index: 3;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #333;
  /*丸のスタート位置と形状*/
  transform: scale(0);
  /*scaleをはじめは0に*/
  right: -50px;
  top: -50px;
  transition: all 0.6s;
  /*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive {
  transform: scale(50);
  /*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list {
  display: none;
  /*はじめは表示なし*/
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list {
  display: block;
  /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
  opacity: 0;
  /*はじめは透過0*/
  /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
  opacity: 1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li {
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: 0.2s;
  /*0.2 秒遅らせて出現*/
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*リストのレイアウト設定*/
#g-nav li {
  text-align: center;
  list-style: none;
}

#g-nav li a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn4 {
  position: fixed;
  right: 10px;
  z-index: 9999;
  /*ボタンを最前面に*/
  cursor: pointer;
  width: 50px;
  height: 50px;
}

/*×に変化*/
.openbtn4 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  width: 45%;
}

/* 375px〜599px：SP横
------------------------------ */
@media screen and (min-width: 375px) and (max-width: 599px) {
  .header_box {
    display: none;
  }

  .header_re {
    width: 90%;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header_reLeft {
    width: 90%;
  }

  .header_reLeftWrap img {
    width: 20%;
  }
}
/* 600px〜959px：タブレット
------------------------------ */
@media screen and (min-width: 600px) and (max-width: 959px) {
  .header_box {
    display: none;
  }

  .header_re {
    justify-content: space-between;
    margin-right: 20%;
  }

  .header_reLeft {
    width: 90%;
  }

  .header_reLeftWrap img {
    width: 20%;
  }
}
/* 960px〜1279px：小型PC
------------------------------ */
@media screen and (min-width: 960px) and (max-width: 1279px) {
  .header_box {
    width: 95%;
    padding: 1%;
  }

  .header_boxRight {
    width: 70%;
  }

  .header_re {
    display: none;
  }
}
/* 1280px〜：大型PC
------------------------------ */
@media screen and (min-width: 1280px) {
  .header_re {
    display: none;
  }
}
html {
  font-size: 62.5%;
}

.contact {
  font-family: "Inter", sans-serif;
}
.contact_inner {
  background-image: url(../img/fu.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.contact_box {
  margin-left: 10%;
}
.contact_ttl {
  width: 25%;
  text-align: left;
  font-size: 6.4rem;
  font-family: "Lora", serif;
  border-bottom: solid 1px #333;
  line-height: 1.5;
}
.contact_sub {
  margin-top: 1.5%;
  font-size: 2rem;
}
.contact_button {
  margin-left: 10%;
  width: 30%;
}
.contact_button :hover {
  box-shadow: none;
  transform: translateY(5px);
  background: rgba(0, 0, 0, 0.366);
  color: #fff;
}
.contact_button a {
  width: 100%;
  text-align: center;
  display: inline-block;
  line-height: 3;
  background-color: #fff;
  font-size: 3.2rem;
  box-shadow: 0 5px 0 #333;
  transition: all 0.4s;
}

.footer {
  background: #333;
}
.footer_inner {
  width: 80%;
  margin: auto;
}
.footer_nav {
  margin: auto;
  padding-top: 10%;
}
.footer_navItem span {
  display: block;
  color: #fff;
  font-size: 1.6rem;
}
.footer_navItem span:hover {
  color: #949393;
  padding-bottom: 4px;
  border-bottom: solid 2px #fff;
}
.footer_navAll {
  display: flex;
  justify-content: space-evenly;
  width: 60%;
  margin: auto;
}
.footer_add {
  margin-top: 10%;
}
.footer_addLeft {
  width: 20%;
}
.footer_addLeft img {
  width: 100%;
}
.footer_add {
  margin: 10% auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.footer_addRight {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 135px;
  margin-top: 5%;
  margin-left: 5%;
}
.footer_addRightTtl {
  padding-bottom: 5%;
  font-size: 1.8rem;
  color: #fff;
}
.footer_addRightCode {
  color: #fff;
  font-size: 1.6rem;
}
.footer_addRightMain {
  color: #fff;
  font-size: 1.6rem;
}
.footer_addRightTel {
  color: #fff;
  font-size: 1.6rem;
}
.footer_addRightMail {
  color: #fff;
  font-size: 1.6rem;
}

.privacy {
  text-align: center;
  padding: 2%;
}
.privacy a {
  color: #fff;
}

.copyright {
  padding-bottom: 5%;
  text-align: center;
}
.copyright p {
  color: #fff;
}

/* 480px〜599px：SP横
------------------------------ */
@media screen and (min-width: 375px) and (max-width: 599px) {
  .contact_inner {
    background-image: url(../img/resupo.png);
    background-position: bottom;
  }

  .contact_ttl {
    width: 63%;
    font-size: 4.5rem;
  }

  .contact_sub {
    font-size: 1.2rem;
  }

  .contact_button {
    width: 80%;
  }

  .footer_navAll {
    display: none;
  }

  .footer_add {
    flex-direction: column;
  }

  .footer_addLeft {
    width: 40%;
  }

  .footer_addRight {
    margin-top: 20%;
  }

  .footer_addRightTtl {
    font-size: 1.6rem;
  }

  .footer_addRightCode {
    font-size: 1.4rem;
  }

  .footer_addRightMain {
    font-size: 1.4rem;
  }

  .footer_addRightTel {
    font-size: 1.4rem;
  }

  .footer_addRightMail {
    font-size: 1.4rem;
  }

  .privacy a {
    font-size: 1.2rem;
  }

  .copyright p {
    font-size: 1.2rem;
  }
}
/* 600px〜959px：タブレット
------------------------------ */
@media screen and (min-width: 600px) and (max-width: 959px) {
  .contact_inner {
    background-image: url(../img/resupo.png);
    background-position: bottom;
    height: 700px;
  }

  .contact_ttl {
    width: 63%;
    font-size: 4.8rem;
  }

  .contact_sub {
    font-size: 1.6rem;
  }

  .contact_button {
    width: 80%;
  }

  .footer_navAll {
    display: none;
  }

  .footer_add {
    flex-direction: column;
  }

  .footer_addLeft {
    width: 40%;
  }

  .footer_addRight {
    margin-top: 20%;
  }

  .footer_addRightTtl {
    font-size: 1.8rem;
  }

  .footer_addRightCode {
    font-size: 1.6rem;
  }

  .footer_addRightMain {
    font-size: 1.6rem;
  }

  .footer_addRightTel {
    font-size: 1.6rem;
  }

  .footer_addRightMail {
    font-size: 1.6rem;
  }

  .privacy a {
    font-size: 1.4rem;
  }

  .copyright p {
    font-size: 1.4rem;
  }
}
/* 960px〜1279px：小型PC
------------------------------ */
@media screen and (min-width: 960px) and (max-width: 1279px) {
  .contact_inner {
    background-position: bottom;
  }
}
/* 1280px〜：大型PC
------------------------------ */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #333;
}

html {
  font-size: 62.5%;
}

body {
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.fv {
  height: 90vh;
}
.fv_inner {
  position: relative;
  height: 100%;
}
.fv_txt {
  position: absolute;
  top: 65%;
  left: 40%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: left;
  width: 50%;
}
.fv_txtItem1 {
  background: url(../img/item1.png) no-repeat;
  color: #fff;
  font-weight: bold;
  font-size: clamp(2rem, 5vw, 4rem);
  padding-left: 10%;
  line-height: 2;
  margin-bottom: 5%;
}
.fv_txtItem2 {
  background: url(../img/item2.png) no-repeat;
  color: #fff;
  font-weight: bold;
  font-size: 4rem;
  padding-left: 10%;
  line-height: 2;
}

.top_img {
  height: 100%;
}

.problem_inner {
  width: 80%;
  margin: auto;
}
.problem_ttl {
  text-align: center;
  font-size: 4.6rem;
  margin-top: 10%;
}
.problem_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-top: 5%;
}
.problem_box_Right {
  width: 100%;
}
.problem_box_Right img {
  width: 100%;
}
.problem_list {
  width: 100%;
}
.problem_listItem {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 2rem;
  line-height: 1.5;
}
.problem_listItem ::before {
  content: "";
  display: inline-block;
  width: 2%;
  height: 15px;
  position: absolute;
  background: url(../img/1-3.png) no-repeat;
  background-size: contain;
  left: -4%;
  top: 25%;
}

.about_ttl {
  margin-left: 10%;
  display: inline-block;
  text-align: left;
  font-size: 6.4rem;
  font-weight: lighter;
  font-family: "Lora", serif;
  margin-top: 10%;
  padding-bottom: 1%;
  border-bottom: solid 2px #152453;
}
.about_sub {
  margin-left: 10%;
  line-height: 4;
  font-size: 2rem;
  font-family: "Lancelot", cursive;
}
.about_box {
  margin-top: 5%;
}
.about_boxAll {
  position: relative;
  margin-top: 15%;
  height: auto;
  background-color: #e0e0e0;
}
.about_boxRigth {
  position: absolute;
  width: 60%;
  bottom: 67%;
  left: 45%;
}
.about_boxRigth img {
  width: 100%;
}
.about_boxRigth2 {
  width: 55%;
}
.about_boxRigth2 img {
  width: 100%;
}
.about_boxLeft {
  position: absolute;
  padding: 5% 5% 10%;
  width: 40%;
  bottom: 90%;
  left: 25%;
  transform: translate(-50%, 50%);
  -webkit-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  border: solid 1px #333;
  background: #fff;
  box-shadow: #666 5px 5px;
  z-index: 2;
}
.about_boxLeft h4 {
  font-size: 2.4rem;
  font-weight: normal;
  margin-bottom: 5%;
}
.about_boxLeft p {
  line-height: 1.5;
}
.about_boxReverse {
  position: relative;
  padding-top: 45%;
}
.about_boxLeft2 {
  position: absolute;
  padding: 5% 5% 10%;
  width: 40%;
  bottom: 22%;
  left: 65%;
  transform: translate(-50%, 50%);
  -webkit-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  border: solid 1px #333;
  background: #fff;
  box-shadow: #666 5px 5px;
  z-index: 2;
}
.about_boxLeft2 h4 {
  font-size: 2.4rem;
  font-weight: normal;
  margin-bottom: 5%;
}
.about_boxLeft2 p {
  line-height: 1.5;
}
.about_button {
  display: flex;
  justify-content: flex-end;
  width: 85%;
  margin-top: 10%;
  font-size: 2.4rem;
  font-weight: 600;
  padding-bottom: 10%;
}

.service_inner {
  width: 80%;
  margin: auto;
}
.service_ttl {
  display: inline-block;
  text-align: left;
  font-size: 6.4rem;
  font-weight: lighter;
  font-family: "Lora", serif;
  margin-top: 10%;
  padding-bottom: 1%;
  border-bottom: solid 2px #152453;
}
.service_sub {
  line-height: 4;
  font-size: 2rem;
  font-family: "Lancelot", cursive;
}
.service_box {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.service_boxAll {
  margin-top: 5%;
}
.service_boxItem {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 22%;
  padding-bottom: 5%;
  background: #15245360;
}
.service_boxItemTtl {
  padding-top: 15%;
  font-size: 1.8rem;
}
.service_boxItemImg1 {
  width: 80%;
  margin: 10%;
}
.service_boxItemImg1 img {
  width: 100%;
}
.service_boxItemImg2 {
  width: 80%;
  margin: 10%;
}
.service_boxItemImg2 img {
  width: 100%;
}
.service_boxItemImg3 {
  width: 80%;
  margin: 20%;
}
.service_boxItemImg3 img {
  width: 100%;
}
.service_boxItemImg4 {
  width: 80%;
  margin: -13%;
}
.service_boxItemImg4 img {
  width: 100%;
}
.service_boxItemText {
  width: 80%;
  font-size: 2rem;
  line-height: 1.5;
}
.service_boxItemButton {
  display: inline-block;
  width: 50%;
  margin-top: 10%;
  font-size: 2.4rem;
}
.service_button {
  display: flex;
  justify-content: flex-end;
  width: 90%;
  margin-top: 10%;
  font-size: 2.4rem;
}
.service_ttlSub {
  margin-top: 10%;
  font-size: 4.2rem;
  font-weight: lighter;
}
.service_forte {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 10%;
}
.service_forteItem {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding-top: 10%;
  padding-bottom: 10%;
  width: 25%;
  height: 100px;
  border: solid 1px #333;
  border-radius: 20px;
  text-align: center;
  font-size: 2.4rem;
}
.service_forteItem::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 15%;
  left: 45%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  background: url(../img/1-10.png) no-repeat;
}
.service_forteItem2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding-top: 10%;
  padding-bottom: 10%;
  width: 25%;
  height: 100px;
  border: solid 1px #333;
  border-radius: 20px;
  text-align: center;
  font-size: 2.4rem;
}
.service_forteItem2::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 15%;
  left: 45%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  background: url(../img/1-11.png) no-repeat;
}
.service_forteItem3 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding-top: 10%;
  padding-bottom: 10%;
  width: 25%;
  height: 100px;
  border: solid 1px #333;
  border-radius: 20px;
  text-align: center;
  font-size: 2.4rem;
}
.service_forteItem3::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 15%;
  left: 45%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  background: url(../img/1-13.png) no-repeat;
}
.service_ttlSub {
  margin-top: 10%;
  font-size: 4.2rem;
  font-weight: lighter;
}
.service_flowAll {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
  margin-top: 10%;
}
.service_flowItem {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 220px;
  height: 220px;
  text-align: center;
  border: solid 1px #b5a217;
  background: #b5a21781;
  border-radius: 120px;
}
.service_flowItem p {
  font-size: 2rem;
}
.service_flowArro {
  width: 4%;
}
.service_flowArro img {
  width: 100%;
}

.faq_inner {
  width: 80%;
  margin: auto;
}
.faq_ttl {
  display: inline-block;
  text-align: left;
  font-size: 6.4rem;
  font-weight: lighter;
  font-family: "Lora", serif;
  margin-top: 10%;
  padding-bottom: 1%;
  border-bottom: solid 2px #152453;
}
.faq_sub {
  line-height: 4;
  font-size: 2rem;
  font-family: "Lancelot", cursive;
}
.faq_list {
  margin-top: 2%;
  display: flex;
  flex-direction: column;
}
.faq_listItem {
  margin-top: 2%;
}
.faq_listItemQ {
  font-size: 2rem;
  font-weight: bold;
}
.faq_listItemQ span {
  padding-right: 1%;
  font-size: 2.4rem;
  color: #B5A217;
}
.faq_listItemA {
  margin-top: 1%;
  font-size: 2rem;
  line-height: 1.5;
}

.blog_inner {
  width: 80%;
  margin: auto;
}
.blog_ttl {
  display: inline-block;
  text-align: left;
  font-size: 6.4rem;
  font-weight: lighter;
  font-family: "Lora", serif;
  margin-top: 10%;
  padding-bottom: 1%;
  border-bottom: solid 2px #152453;
}
.blog_sub {
  line-height: 4;
  font-size: 2rem;
  font-family: "Lancelot", cursive;
}
.blog_img {
  width: 100%;
}
.blog_img img {
  width: 100%;
}
.blog_button {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10%;
  width: 90%;
  margin-top: 10%;
  font-size: 2.4rem;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {
  height: 100%;
  margin-inline: auto;
  overflow: hidden;
  /* 画像がはみ出ないようにする */
}

.top_img img {
  width: 100%;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
    /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

/*==================================================
じわっ
===================================*/
/* ぼかしから出現 */
.blur {
  animation-name: blurAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.blurTrigger {
  opacity: 0;
}

/*==================================================
にゅーん
===================================*/
/* 滑らかに変形して出現 */
.smooth {
  animation-name: smoothAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  transform-origin: left;
  opacity: 0;
}

@keyframes smoothAnime {
  from {
    transform: translate3d(0, 100%, 0) skewY(12deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.smoothTrigger {
  opacity: 0;
}

/*==================================================
くるっ
===================================*/
/* X 軸（縦へ） */
.rotateX {
  animation-name: rotateXAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes rotateXAnime {
  from {
    transform: rotateX(0);
    opacity: 0;
  }
  to {
    transform: rotateX(-360deg);
    opacity: 1;
  }
}
.rotateXTrigger {
  opacity: 0;
}

/*==================================================
ボンッ、ヒュッ
===================================*/
/* 拡大 */
.zoomIn {
  animation-name: zoomInAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* 縮小 */
.zoomOut {
  animation-name: zoomOutAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes zoomOutAnime {
  from {
    transform: scale(1.2);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time05 {
  animation-delay: 0.5s;
}

.delay-time1 {
  animation-delay: 1s;
}

.delay-time15 {
  animation-delay: 1.5s;
}

.delay-time2 {
  animation-delay: 2s;
}

.delay-time25 {
  animation-delay: 2.5s;
}

/* 480px〜599px：SP横
------------------------------ */
@media screen and (min-width: 375px) and (max-width: 599px) {
  .fv_txt {
    width: 90%;
    top: 75%;
    left: 45%;
  }

  .fv_txtItem1 {
    font-size: 1.8rem;
    background-size: contain;
  }

  .fv_txtItem2 {
    font-size: 2rem;
    background-size: contain;
  }

  .problem_ttl {
    margin-top: 20%;
    font-size: 2rem;
  }

  .problem_box {
    flex-direction: column-reverse;
    align-items: center;
  }

  .problem_list {
    margin-top: 10%;
  }

  .problem_listItem {
    font-size: 1.5rem;
  }

  .problem_listItem ::before {
    width: 4%;
    height: 25px;
    left: -6%;
  }

  .about_ttl {
    margin-top: 40%;
    font-size: 5rem;
  }

  .about_sub {
    font-size: 1.5rem;
  }

  .about_boxRigth {
    width: 100%;
    bottom: 74%;
    left: 0%;
  }

  .about_boxLeft {
    width: 80%;
    bottom: 70%;
    left: 60%;
  }

  .about_boxRigth2 {
    width: 100%;
    margin-top: 110%;
  }

  .about_boxLeft2 {
    width: 80%;
    bottom: -7%;
    left: 59%;
  }

  .about_button {
    margin-top: 60%;
  }

  .service_ttl {
    font-size: 5rem;
    margin-top: 25%;
  }

  .service_sub {
    font-size: 1.5rem;
  }

  .service_box {
    flex-direction: column;
  }

  .service_boxItem {
    margin-bottom: 10%;
  }

  .service_boxItem {
    width: 100%;
  }

  .service_boxItemImg4 {
    margin: 15%;
  }

  .service_ttlSub {
    margin-top: 40%;
  }

  .service_forte {
    margin-top: 25%;
    flex-direction: column;
  }

  .service_forteItem {
    width: 90%;
    height: 60vw;
    margin-bottom: 40%;
  }

  .service_forteItem2 {
    width: 90%;
    height: 60vw;
    margin-bottom: 40%;
    line-height: 1.5;
  }

  .service_forteItem3 {
    width: 90%;
    height: 60vw;
    margin-bottom: 40%;
    line-height: 1.5;
  }

  .service_flowAll {
    flex-direction: column;
    margin-top: 20%;
  }

  .service_flowArro {
    width: 10%;
    transform: rotate(90deg);
    margin: 5%;
  }

  .faq_ttl {
    font-size: 5rem;
    margin-top: 40%;
  }

  .faq_sub {
    font-size: 1.5rem;
  }

  .faq_list {
    margin-top: 10%;
  }

  .faq_listItem {
    margin-bottom: 5%;
  }

  .faq_listItemQ {
    font-size: 1.5rem;
  }

  .faq_listItemA {
    font-size: 1.2rem;
  }

  .blog_ttl {
    font-size: 5rem;
  }

  .blog_sub {
    font-size: 1.5rem;
  }
}
/* 600px〜959px：タブレット
------------------------------ */
@media screen and (min-width: 600px) and (max-width: 959px) {
  .fv_txt {
    top: 73%;
    left: 46%;
    width: 90%;
  }

  .fv_txtItem1 {
    font-size: clamp(2rem, 0.329rem + 4.46vw, 3rem);
    background-size: contain;
  }

  .fv_txtItem2 {
    font-size: clamp(2rem, 0.329rem + 4.46vw, 3rem);
    background-size: contain;
  }

  .problem_ttl {
    font-size: 3.6rem;
  }

  .problem_box {
    flex-direction: column-reverse;
    align-items: center;
  }

  .problem_listItem ::before {
    width: 4%;
    height: 25px;
    left: -6%;
  }

  .about_ttl {
    font-size: 4.8rem;
  }

  .about_sub {
    padding-bottom: 10%;
  }

  .about_boxRigth {
    width: 59%;
    bottom: 74%;
    left: 41%;
  }

  .about_boxLeft {
    width: 50%;
    bottom: 87%;
    left: 28%;
  }

  .about_boxRigth2 {
    width: 70%;
    margin-top: 10%;
  }

  .about_boxLeft2 {
    width: 50%;
    bottom: 24%;
    left: 74%;
  }

  .service_ttl {
    font-size: 4.8rem;
  }

  .service_boxItem {
    width: 45%;
    margin-bottom: 10%;
  }

  .service_forte {
    flex-direction: column;
    margin-top: 20%;
  }

  .service_forteItem {
    width: 60%;
    height: 40vw;
    margin-bottom: 10%;
    font-size: 2rem;
  }

  .service_forteItem2 {
    width: 60%;
    height: 40vw;
    margin-bottom: 10%;
    font-size: 2rem;
  }

  .service_forteItem3 {
    width: 60%;
    height: 40vw;
    margin-bottom: 10%;
    font-size: 2rem;
  }

  .service_flowItem {
    width: 50%;
    height: 17vw;
  }
  .service_flowItem p {
    font-size: 1.6rem;
  }

  .service_flowArro {
    width: 10%;
  }

  .faq_ttl {
    font-size: 4.8rem;
    margin-top: 20%;
  }

  .faq_listItem {
    margin-bottom: 10%;
  }

  .blog_ttl {
    font-size: 4.8rem;
  }
}
/* 960px〜1279px：小型PC
------------------------------ */
@media screen and (min-width: 960px) and (max-width: 1279px) {
  .fv_txt {
    width: 90%;
    top: 80%;
  }

  .fv_txtItem1 {
    font-size: clamp(3rem, -0.009rem + 5.02vw, 4rem);
  }

  .fv_txtItem2 {
    font-size: clamp(3rem, -0.009rem + 5.02vw, 4rem);
  }

  .problem_box {
    flex-direction: column-reverse;
    align-items: center;
  }

  .problem_listItem ::before {
    content: "";
    height: 15px;
    left: -4%;
  }

  .about_boxRigth {
    width: 60%;
    bottom: 70%;
    left: 35%;
  }

  .about_boxLeft {
    width: 46%;
    bottom: 86%;
    left: 27%;
  }

  .about_boxRigth2 {
    width: 60%;
  }

  .about_boxLeft2 {
    width: 46%;
    bottom: 24%;
    left: 70%;
  }

  .service_forte {
    flex-direction: row;
  }

  .service_boxItem {
    width: 40%;
    margin: 1%;
    flex-direction: column;
  }

  .service_forteItem {
    width: 25%;
    height: 19vw;
    font-size: 2rem;
  }
  .service_forteItem::before {
    content: "";
    bottom: 24%;
    left: 30%;
  }

  .service_forteItem2 {
    width: 25%;
    height: 19vw;
    font-size: 2rem;
  }
  .service_forteItem2::before {
    content: "";
    bottom: 24%;
    left: 30%;
  }

  .service_forteItem3 {
    width: 25%;
    height: 19vw;
    font-size: 2rem;
  }
  .service_forteItem3::before {
    content: "";
    bottom: 24%;
    left: 30%;
  }

  .service_flowItem {
    width: 170px;
    height: 170px;
  }

  .faq_listItem {
    margin-bottom: 5%;
  }
}
/* 1280px〜：大型PC
------------------------------ */
@media screen and (min-width: 1280px) {
  .fv_txt {
    top: 80%;
    left: 24%;
  }

  .about_boxRigth {
    position: absolute;
    width: 50%;
    bottom: 77%;
    left: 45%;
  }

  .about_boxLeft {
    bottom: 92%;
    left: 29%;
  }

  .faq_listItem {
    margin-bottom: 5%;
  }
}
html {
  font-size: 62.5%;
  font-family: "Inter", sans-serif;
}

body {
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.about1_topInner {
  background-color: #152453;
  background-repeat: no-repeat;
  background-size: cover;
  height: 20vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about1_topTtl {
  font-size: 3.2rem;
}
.about1_topTtl h1 {
  color: #fff;
  font-weight: lighter;
}

.about1_profileInner {
  position: relative;
  width: 80%;
  margin: auto;
}
.about1_profileInner::before {
  content: "";
  position: absolute;
  right: 6%;
  bottom: 35%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 100%;
  height: 50%;
  background: url(../img/2-2.png);
  background-repeat: no-repeat;
  background-size: auto;
}
.about1_profileWrap {
  display: flex;
  justify-content: space-between;
  margin-top: 15%;
  margin-bottom: 10%;
}
.about1_profileImg {
  width: 50%;
}
.about1_profileImg img {
  width: 100%;
}
.about1_profileBox {
  width: 50%;
  margin-left: 2%;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}
.about1_profileTtl {
  font-size: 2.4rem;
}
.about1_profileTtl h3 {
  font-weight: normal;
}
.about1_profileTxt {
  line-height: 1.5;
}
.about1_profileTxt h4 {
  font-size: 2rem;
}
.about1_profileTxt p {
  font-size: 2rem;
}
.about1_profileWrap1 {
  display: flex;
  flex-direction: row-reverse;
}
.about1_profileImg1 {
  width: 50%;
}
.about1_profileImg1 img {
  width: 100%;
}
.about1_profileBox1 {
  width: 80%;
  margin-top: 5%;
  margin-right: 2%;
  height: 200px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}
.about1_summaryInner {
  width: 80%;
  margin: auto;
  margin-top: 10%;
  margin-bottom: 10%;
}
.about1_summaryTtl {
  margin-bottom: 2%;
  font-size: 2.4rem;
}
.about1_summaryTtl h3 {
  font-weight: lighter;
}
.about1_summaryWrap {
  display: flex;
  flex-direction: column;
}
.about1_summaryBox {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 40%;
  padding-top: 2%;
  padding-bottom: 2%;
  padding-left: 2%;
  margin-left: -2%;
  border-bottom: solid 1px #e0e0e0;
}
.about1_summaryTxt {
  margin-left: 5%;
  font-size: 1.6rem;
  line-height: 2;
}
.about1_summaryTxt p {
  display: inline-block;
  width: 30%;
  font-size: 1.2rem;
}
.about1_summaryTxt2 {
  margin-left: 7.3%;
  font-size: 1.6rem;
  line-height: 2;
}
.about1_summaryTxt2 p {
  display: inline-block;
  width: 30%;
  font-size: 1.2rem;
}
.about1_summaryTxt3 {
  margin-left: 10%;
  font-size: 1.6rem;
  line-height: 2;
}
.about1_summaryTxt3 p {
  display: inline-block;
  width: 30%;
  font-size: 1.2rem;
}
.about1_summaryTxt4 {
  margin-left: 7.3%;
  font-size: 1.6rem;
  line-height: 2;
}
.about1_summaryTxt4 p {
  display: inline-block;
  width: 30%;
  font-size: 1.2rem;
}

/* 375px〜599px：SP横
  ------------------------------ */
@media screen and (min-width: 375px) and (max-width: 599px) {
  .about1_profileInner::before {
    bottom: 27%;
  }

  .about1_profileWrap {
    flex-direction: column;
    align-items: center;
  }

  .about1_profileImg {
    width: 73%;
  }

  .about1_profileBox {
    width: 100%;
    margin-top: 10%;
  }

  .about1_profileTtl {
    margin-top: 20%;
  }

  .about1_profileTxt {
    margin-top: 10%;
  }

  .about1_profileWrap1 {
    flex-direction: column;
    margin-top: 30%;
    height: 95vh;
  }

  .about1_summaryWrap {
    margin-top: 10%;
    margin-bottom: 20%;
  }

  .about1_summaryBox {
    width: 100%;
  }
}
/* 600px〜959px：タブレット
  ------------------------------ */
@media screen and (min-width: 600px) and (max-width: 959px) {
  .about1_profileInner {
    height: 200vh;
  }

  .about1_profileWrap {
    justify-content: space-around;
    flex-wrap: wrap;
  }

  .about1_profileInner::before {
    height: 46%;
  }

  .about1_profileImg {
    width: 85%;
  }

  .about1_profileBox {
    width: 100%;
    margin: 10%;
  }

  .about1_profileTtl {
    margin-bottom: 8%;
  }

  .about1_profileWrap1 {
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .about1_profileBox1 {
    width: 90%;
  }

  .about1_summaryInner {
    width: 75%;
    margin: auto;
    margin-top: 10%;
    margin-bottom: 10%;
  }

  .about1_summaryBox {
    width: 100%;
  }
}
/* 960px〜1279px：小型PC
  ------------------------------ */
@media screen and (min-width: 960px) and (max-width: 1279px) {
  .about1_profileWrap {
    justify-content: space-evenly;
  }

  .about1_profileBox {
    width: 40%;
  }

  .about1_profileInner {
    height: 120vh;
  }

  .about1_profileBox1 {
    width: 70%;
  }

  .about1_summaryBox {
    width: 70%;
  }
}
/* 1280px〜：大型PC
  ------------------------------ */
@media screen and (min-width: 1280px) {
  .about1_profileBox {
    width: 40%;
  }

  .about1_profileWrap {
    justify-content: space-evenly;
  }

  .about1_profileTtl {
    margin-bottom: 5%;
  }

  .about1_summaryInner {
    margin-top: 15%;
  }
}
html {
  font-size: 62.5%;
  font-family: "Inter", sans-serif;
}

body {
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.service1_topInner {
  background: #152453;
  background-repeat: no-repeat;
  background-size: cover;
  height: 20vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.service1_topTtl {
  font-size: 3.2rem;
}
.service1_topTtl h1 {
  color: #fff;
  font-weight: lighter;
}
.service1_buttonInner {
  position: relative;
  width: 80%;
  margin: auto;
  height: 300px;
}
.service1_buttonInner::before {
  content: "";
  position: absolute;
  right: 6%;
  bottom: -30%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 100%;
  height: 110%;
  background: url(../img/3-1.png);
  background-repeat: no-repeat;
}
.service1_buttonWrap {
  display: flex;
  justify-content: space-evenly;
  margin-top: 10%;
}
.service1_buttonButton {
  display: inline-block;
  width: 15%;
  text-align: center;
  line-height: 4;
  background-color: #152453;
  z-index: 2;
  box-shadow: 2px 5px 0 #333;
  transition: all 0.4s;
}
.service1_buttonButton:hover {
  box-shadow: none;
  transform: translateY(5px);
  background: #fff;
  border: solid 1px #152453;
}
.service1_buttonButton a {
  display: block;
  color: #fff;
}
.service1_buttonButton a:hover {
  color: #152453;
}
.service1_buttonButton span {
  width: 100%;
  color: #fff;
}

.procedure_inner {
  width: 90%;
  margin: auto;
}
.procedure_ttl {
  display: inline-block;
  font-size: 2.8rem;
  line-height: 2;
  font-weight: lighter;
  border-bottom: solid 1px #152453;
}
.procedure_wrap {
  display: flex;
  align-items: flex-start;
}
.procedure_box {
  width: 100%;
  margin-top: 10%;
  margin-right: 5%;
}
.procedure_subttle {
  font-size: 2.8rem;
  font-weight: lighter;
}
.procedure_text {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-top: 5%;
}
.procedure_img {
  width: 80%;
}
.procedure_img img {
  width: 100%;
}
.procedure_contentsTtl {
  margin-top: 5%;
  font-size: 2.4rem;
  font-weight: lighter;
}
.procedure_contentsSubttl {
  margin-top: 3%;
  margin-bottom: 3%;
  padding-left: 1%;
  font-size: 2rem;
  font-weight: lighter;
}
.procedure_contentsWrap {
  display: flex;
  align-items: flex-start;
  padding-left: 1%;
}
.procedure_contentsImg {
  width: 50%;
}
.procedure_contentsImg img {
  width: 100%;
}
.procedure_contentsBox {
  width: 100%;
  margin-left: 5%;
}
.procedure_contentsText {
  margin-bottom: 5%;
  font-size: 1.6rem;
  line-height: 1.5;
}
.procedure_contentsSubttl2 {
  margin-bottom: 3%;
  font-size: 2rem;
}
.procedure_contentsSubttl3 {
  margin-top: 5%;
  margin-left: 5%;
  margin-bottom: 3%;
  font-size: 2rem;
}
.procedure_contentsText3 {
  margin-left: 5%;
  margin-bottom: 5%;
  font-size: 1.6rem;
  line-height: 1.5;
}

.rules_inner {
  width: 90%;
  margin: auto;
}
.rules_ttl {
  display: inline-block;
  font-size: 2.8rem;
  line-height: 2;
  font-weight: lighter;
  border-bottom: solid 1px #152453;
}
.rules_wrap {
  display: flex;
  align-items: flex-start;
}
.rules_box {
  width: 100%;
  margin-top: 5%;
  margin-right: 5%;
}
.rules_subttle {
  font-size: 2.8rem;
  font-weight: lighter;
}
.rules_text {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-top: 5%;
}
.rules_img {
  width: 50%;
}
.rules_img img {
  width: 100%;
}
.rules_contentsTtl {
  margin-top: 10%;
  font-size: 2.4rem;
  font-weight: lighter;
}
.rules_contentsTtl2 {
  margin-top: 3%;
  margin-bottom: 3%;
  padding-left: 1%;
  font-size: 2.4rem;
  font-weight: lighter;
}
.rules_contentsWrap {
  display: flex;
  align-items: flex-start;
  padding-left: 1%;
}
.rules_contentsImg {
  width: 50%;
}
.rules_contentsImg img {
  width: 100%;
}
.rules_contentsBox {
  width: 100%;
  margin-top: 3%;
  margin-left: 5%;
}
.rules_contentsText {
  width: 100%;
  margin-bottom: 5%;
  font-size: 1.6rem;
  line-height: 1.5;
}
.rules_contentsSubttl2 {
  margin-top: 5%;
  margin-left: 5%;
  margin-bottom: 3%;
  font-size: 2.4rem;
}
.rules_contentsText2 {
  margin-left: 5%;
  margin-bottom: 5%;
  font-size: 1.6rem;
  line-height: 1.5;
}

.control_inner {
  width: 90%;
  margin: auto;
}
.control_ttl {
  display: inline-block;
  font-size: 2.8rem;
  line-height: 2;
  font-weight: lighter;
  border-bottom: solid 1px #152453;
}
.control_wrap {
  display: flex;
  align-items: flex-start;
}
.control_box {
  width: 100%;
  margin-top: 5%;
  margin-right: 5%;
}
.control_subttle {
  font-size: 2.8rem;
  font-weight: lighter;
}
.control_text {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-top: 5%;
}
.control_img {
  width: 80%;
}
.control_img img {
  width: 100%;
}
.control_pointTtl {
  font-size: 2.4rem;
  font-weight: lighter;
}
.control_pointBox {
  margin-top: 5%;
}
.control_pointSubttl {
  margin-bottom: 3%;
  font-size: 2.4rem;
  font-weight: lighter;
}
.control_pointText {
  margin-bottom: 5%;
  font-size: 1.6rem;
  line-height: 1.5;
}
.control_making {
  margin-top: 10%;
}
.control_makingTtl {
  margin-bottom: 2%;
  font-size: 2.4rem;
  font-weight: lighter;
}
.control_makingText {
  width: 100%;
  margin-bottom: 5%;
  font-size: 1.6rem;
  line-height: 1.5;
}

.salary_inner {
  width: 90%;
  margin: auto;
  margin-bottom: 10%;
}
.salary_ttl {
  display: inline-block;
  font-size: 2.8rem;
  line-height: 2;
  font-weight: lighter;
  border-bottom: solid 1px #152453;
}
.salary_wrap {
  display: flex;
  align-items: flex-start;
}
.salary_box {
  width: 100%;
  margin-top: 5%;
  margin-right: 5%;
}
.salary_subttle {
  font-size: 2.4rem;
  font-weight: lighter;
}
.salary_text {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-top: 5%;
}
.salary_img {
  width: 50%;
}
.salary_img img {
  width: 100%;
}

/* 375px〜599px：SP横
------------------------------ */
@media screen and (min-width: 375px) and (max-width: 599px) {
  .service1_buttonWrap {
    flex-wrap: wrap;
  }

  .service1_buttonButton {
    width: 60%;
    margin-bottom: 5%;
  }

  .service1_buttonInner::before {
    content: "";
    top: 48%;
  }

  .procedure_inner {
    margin-top: 15%;
  }

  .procedure_wrap {
    flex-direction: column-reverse;
  }

  .procedure_img {
    width: 100%;
  }

  .procedure_subttle {
    font-size: 2rem;
  }

  .procedure_contentsTtl {
    margin-top: 15%;
    font-size: 2rem;
  }

  .procedure_contentsSubttl {
    margin-top: 10%;
    font-size: 1.8rem;
    text-align: center;
  }

  .procedure_contentsWrap {
    flex-direction: column;
    margin-top: 15%;
  }

  .procedure_contentsImg {
    width: 100%;
  }

  .procedure_contentsBox {
    margin: auto;
    width: 100%;
    margin-top: 15%;
  }

  .procedure_contentsSubttl2 {
    margin-bottom: 10%;
    margin-top: 10%;
  }

  .procedure_contentsText {
    font-size: 1.4rem;
  }

  .rules_inner {
    margin-top: 15%;
  }

  .rules_wrap {
    align-items: center;
    margin-top: 15%;
    flex-direction: column-reverse;
  }

  .rules_img {
    width: 100%;
  }

  .rules_box {
    width: 100%;
    margin-top: 15%;
  }

  .rules_subttle {
    font-size: 2rem;
  }

  .rules_text {
    margin-top: 10%;
  }

  .rules_contentsTtl {
    margin-top: 15%;
    font-size: 2rem;
    text-align: center;
  }

  .rules_contentsTtl2 {
    margin-top: 10%;
    margin-bottom: 10%;
    font-size: 1.8rem;
    text-align: center;
  }

  .rules_contentsWrap {
    align-items: center;
    flex-direction: column;
    margin-top: 15%;
  }

  .rules_contentsImg {
    width: 100%;
  }

  .rules_contentsBox {
    width: 100%;
    margin-top: 15%;
  }

  .rules_contentsSubttl {
    margin-top: 10%;
    font-size: 2rem;
  }

  .rules_contentsText {
    margin-top: 10%;
  }

  .rules_contentsSubttl2 {
    margin-top: 10%;
    margin-bottom: 10%;
    text-align: center;
    font-size: 2rem;
  }

  .control_inner {
    margin-top: 15%;
  }

  .control_wrap {
    margin-top: 10%;
    align-items: center;
    flex-direction: column-reverse;
  }

  .control_img {
    width: 100%;
  }

  .control_subttle {
    font-size: 2rem;
  }

  .control_text {
    margin-top: 10%;
  }

  .control_pointTtl {
    margin-top: 15%;
    font-size: 2rem;
  }

  .control_pointBox {
    margin-top: 10%;
  }

  .control_pointSubttl {
    margin-bottom: 6%;
    font-size: 1.8rem;
  }

  .control_makingTtl {
    margin-bottom: 5%;
    margin-top: 10%;
    font-size: 2rem;
  }

  .salary_inner {
    margin-top: 15%;
    margin-bottom: 20%;
  }

  .salary_wrap {
    align-items: center;
    flex-direction: column-reverse;
    text-align: center;
    margin-top: 10%;
  }

  .salary_img {
    width: 100%;
  }

  .salary_subttle {
    font-size: 2rem;
  }

  .salary_text {
    margin-top: 8%;
    text-align: start;
  }

  .salary_box {
    margin-top: 15%;
  }
}
/* 600px〜959px：タブレット
------------------------------ */
@media screen and (min-width: 600px) and (max-width: 959px) {
  .service1_buttonInner {
    margin-top: 20%;
  }

  .service1_buttonWrap {
    flex-wrap: wrap;
  }

  .service1_buttonButton {
    width: 40%;
    margin-bottom: 5%;
  }

  .procedure_contentsTtl {
    margin-top: 10%;
  }

  .procedure_contentsSubttl {
    margin-top: 10%;
    margin-bottom: 10%;
  }

  .procedure_contentsBox {
    margin-top: 0%;
  }

  .rules_inner {
    margin-top: 10%;
  }

  .rules_wrap {
    margin-top: 10%;
  }

  .rules_box {
    margin-top: 0%;
  }

  .rules_contentsWrap {
    margin-top: 15%;
  }

  .control_pointTtl {
    margin-top: 10%;
  }

  .control_pointSubttl {
    margin-top: 10%;
  }

  .control_makingTtl {
    margin-top: 10%;
  }

  .salary_inner {
    margin-top: 10%;
  }

  .salary_subttle {
    margin-top: 10%;
  }
}
/* 960px〜1279px：小型PC
------------------------------ */
@media screen and (min-width: 960px) and (max-width: 1279px) {
  .service1_buttonWrap {
    flex-wrap: wrap;
  }

  .service1_buttonInner::before {
    top: 36%;
  }

  .service1_buttonButton {
    width: 40%;
    margin-bottom: 5%;
  }

  .control_pointTtl {
    font-size: 2.4rem;
    font-weight: lighter;
    margin-top: 5%;
  }
}
/* 1280px〜：大型PC
------------------------------ */
@media screen and (min-width: 1280px) {
  .service1_buttonWrap {
    flex-wrap: wrap;
  }

  .service1_buttonButton {
    width: 35%;
    margin-bottom: 5%;
  }

  .service1_buttonInner::before {
    top: 27%;
  }
}
html {
  font-size: 62.5%;
  font-family: "Inter", sans-serif;
}

body {
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.contact1_topInner {
  background:#152453;
  background-repeat: no-repeat;
  background-size: cover;
  height: 20vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact1_topTtl {
  font-size: 3.2rem;
}
.contact1_topTtl h1 {
  color: #fff;
  font-weight: lighter;
}
.contact1_form {
  margin: auto;
  margin-top: 10%;
  margin-bottom: 10%;
  max-width: 1000px;
}
.contact1_formInner {
  position: relative;
  width: 80%;
  margin: auto;
}
.contact1_formInner::before {
  content: "";
  position: absolute;
  right: 105%;
  bottom: -10%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 20%;
  height: 80%;
  background: url(../img/5-1.png);
  background-repeat: no-repeat;
}
.contact1_formBox {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 40px;
}

.contact1_form .contact1_formItem {
  display: flex;
  flex-direction: column;
}

.contact1_form .contact2_formItem {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: auto;
}
.contact1_form .contact2_formItem a {
  border-bottom: solid 1px #333;
}

.contact1_formItem label {
  line-height: 2;
  margin-bottom: 5px;
  font-weight: bold;
}
.contact1_formItem label span {
  display: inline-block;
  width: 5%;
  text-align: center;
  margin-left: 3%;
  background: #54b844;
  color: #fff;
}

.contact1_formItem input,
.contact1_formItem textarea {
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.contact1_formItem input[type=submit] {
  background-color: #54b844;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 10px 20px;
  line-height: 3;
  font-size: 2.3rem;
  font-weight: bold;
  border-radius: 50px;
  width: 50%;
  margin: auto;
  box-shadow: 2px 5px 0 #333;
  transition: all 0.4s;
}

.contact1_formItem input[type=submit]:hover {
  box-shadow: none;
  transform: translateY(5px);
  background: #fff;
  border: solid 1px #54b844;
  color: #54b844;
}

.contact1_formItem p {
  font-weight: bold;
}

.contact_formItem_check {
  margin-top: 5px;
}

.contact_formItem_check input[type=checkbox] {
  margin-right: 10px;
}

.contact2_formItem input[type=checkbox] {
  margin-right: 10px;
}

/* 375px〜599px：SP横
------------------------------ */
@media screen and (min-width: 375px) and (max-width: 599px) {
  .contact1_formInner::before {
    right: 70%;
    bottom: -17%;
    width: 35%;
    z-index: -1;
  }

  .contact1_formBox {
    grid-template-columns: 80%;
    justify-content: space-evenly;
  }

  .contact1_formItem label span {
    width: 20%;
  }

  .contact1_formItem input[type=submit] {
    width: 100%;
  }
}
/* 600px〜959px：タブレット
------------------------------ */
@media screen and (min-width: 600px) and (max-width: 959px) {
  .contact1_formInner::before {
    right: 89%;
    bottom: -16%;
  }

  .contact1_formBox {
    display: grid;
    grid-template-columns: 80%;
    grid-row-gap: 40px;
    justify-content: space-evenly;
  }

  .contact1_formItem label span {
    width: 20%;
  }
}
/* 960px〜1279px：小型PC
------------------------------ */
@media screen and (min-width: 960px) and (max-width: 1279px) {
  .contact1_formInner::before {
    right: 90%;
    bottom: -13%;
    z-index: -1;
  }

  .contact1_formBox {
    grid-template-columns: 80%;
    justify-content: space-evenly;
  }

  .contact1_formItem label span {
    width: 12%;
  }
}
/* 1280px〜：大型PC
------------------------------ */
html {
  font-size: 62.5%;
  font-family: "Inter", sans-serif;
}

body {
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.blog1_topInner {
  background: #152453;
  background-repeat: no-repeat;
  background-size: cover;
  height: 20vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.blog1_topTtl {
  font-size: 3.2rem;
}
.blog1_topTtl h1 {
  color: #fff;
  font-weight: lighter;
}
.blog1_topSubttl {
  margin-top: 0.5%;
}
.blog1_topSubttl p {
  font-size: 1.6rem;
  color: #fff;
}
.blog1_gallery {
  background: url(../img/4-2.png);
  background-repeat: no-repeat;
}
.blog1_galleryInner {
  position: relative;
  width: 80%;
  height: 100vh;
  margin: auto;
  text-align: center;
  padding-top: 3%;
}
.blog1_galleryInner::before {
  content: "";
  position: absolute;
  right: 6%;
  bottom: 20%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 100%;
  height: 50%;
  background: url(../img/4-1.png);
  background-repeat: no-repeat;
}
.blog1_galleryInner a {
  color: #333;
}
.blog1_galleryWrap {
  background: url(../img/blog2.png);
  background-size: cover;
  background-repeat: no-repeat;
  height: 60vh;
}

/* 375px〜599px：SP横
------------------------------ */
@media screen and (min-width: 375px) and (max-width: 599px) {
  .blog1_galleryWrap {
    background-size: contain;
    background-position: bottom;
  }
}
/* 600px〜959px：タブレット
------------------------------ */
@media screen and (min-width: 600px) and (max-width: 959px) {
  .blog1_galleryWrap {
    background-size: contain;
    background-position: bottom;
  }
}
/* 960px〜1279px：小型PC
------------------------------ */
/* 1280px〜：大型PC
------------------------------ */
html {
  font-size: 62.5%;
  font-family: "Inter", sans-serif;
}

body body {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
}

.privacy_summaryInner {
  width: 90%;
  margin: auto;
  margin-top: 5%;
  margin-bottom: 5%;
}
.privacy_summaryText {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 5%;
}
.privacy_box {
  margin-bottom: 5%;
}
.privacy_userTtl {
  font-size: 2.4rem;
  font-weight: lighter;
  margin-bottom: 2%;
}
.privacy_userText {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-left: 5%;
  margin-bottom: 5%;
}
.privacy_userSubttl {
  font-size: 2rem;
  font-weight: lighter;
  margin-bottom: 2%;
}
.privacy_userSubtext {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-left: 5%;
  margin-bottom: 5%;
}
.privacy_objectiveTtl {
  font-size: 2.4rem;
  font-weight: lighter;
  margin-bottom: 2%;
}
.privacy_objectiveText {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-left: 5%;
  margin-bottom: 2%;
}
.privacy_objectiveSubtext {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-left: 5%;
  margin-bottom: 5%;
}
.privacy_suspensionTtl {
  font-size: 2.4rem;
  font-weight: lighter;
  margin-bottom: 2%;
}
.privacy_suspensionText {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-left: 5%;
  margin-bottom: 2%;
}
.privacy_suspensionSubtext {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-left: 5%;
  margin-bottom: 5%;
}
.privacy_thirdTtl {
  font-size: 2.4rem;
  font-weight: lighter;
  margin-bottom: 2%;
}
.privacy_thirdText {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-left: 5%;
  margin-bottom: 2%;
}
.privacy_thirdSubtext {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-left: 5%;
  margin-bottom: 5%;
}
.privacy_thirdDetails {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-left: 5%;
  margin-bottom: 5%;
}
.privacy_safetyTtl {
  font-size: 2.4rem;
  font-weight: lighter;
  margin-bottom: 2%;
}
.privacy_safetyText {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-left: 5%;
  margin-bottom: 2%;
}
.privacy_safetySubtext {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-left: 5%;
  margin-bottom: 5%;
}
.privacy_disclosureTtl {
  font-size: 2.4rem;
  font-weight: lighter;
  margin-bottom: 2%;
}
.privacy_disclosureText {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-left: 5%;
  margin-bottom: 2%;
}
.privacy_disclosureSubtext {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-left: 5%;
  margin-bottom: 5%;
}
.privacy_stopTtl {
  font-size: 2.4rem;
  font-weight: lighter;
  margin-bottom: 2%;
}
.privacy_stopText {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-left: 5%;
  margin-bottom: 2%;
}
.privacy_stopSubtext {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-left: 5%;
  margin-bottom: 5%;
}
.privacy_counterTtl {
  font-size: 2.4rem;
  font-weight: lighter;
  margin-bottom: 2%;
}
.privacy_counterText {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-left: 5%;
  margin-bottom: 2%;
}
.privacy_counterSubtext {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-left: 5%;
  margin-bottom: 5%;
}
.privacy_counterAddress {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-left: 5%;
  margin-bottom: 5%;
}
.privacy_counterAddress p {
  line-height: 2;
}
.privacy_procedureTtl {
  font-size: 2.4rem;
  font-weight: lighter;
  margin-bottom: 2%;
}
.privacy_procedureSubttl {
  font-size: 2rem;
  font-weight: lighter;
  margin-bottom: 2%;
}
.privacy_procedureText {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-left: 5%;
  margin-bottom: 2%;
}
.privacy_procedureDay {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-left: 5%;
  margin-bottom: 5%;
}
.privacy_procedureDay p {
  line-height: 2;
}

/* 480px〜599px：SP横
------------------------------ */
@media screen and (min-width: 375px) and (max-width: 599px) {
  .privacy_summaryText {
    font-size: 1.2rem;
  }

  .privacy_box {
    margin-bottom: 10%;
  }

  .privacy_userTtl {
    font-size: 1.6rem;
  }

  .privacy_userText {
    font-size: 1.2rem;
  }

  .privacy_userSubttl {
    font-size: 1.4rem;
  }

  .privacy_userSubtext {
    font-size: 1.1rem;
  }

  .privacy_counterTtl {
    font-size: 1.4rem;
  }

  .privacy_counterText {
    font-size: 1.2rem;
  }

  .privacy_counterAddress {
    font-size: 1.2rem;
  }

  .privacy_procedureTtl {
    font-size: 1.4rem;
  }

  .privacy_procedureText {
    font-size: 1.2rem;
  }

  .privacy_procedureDay {
    font-size: 1.2rem;
  }
}
/* 600px〜959px：タブレット
------------------------------ */
@media screen and (min-width: 600px) and (max-width: 959px) {
  .privacy_userTtl {
    font-size: 2rem;
  }

  .privacy_userSubttl {
    font-size: 1.8rem;
  }

  .privacy_objectiveTtl {
    font-size: 2rem;
  }

  .privacy_suspensionTtl {
    font-size: 2rem;
  }

  .privacy_safetyTtl {
    font-size: 2rem;
  }

  .privacy_disclosureTtl {
    font-size: 2rem;
  }

  .privacy_stopTtl {
    font-size: 2rem;
  }

  .privacy_counterTtl {
    font-size: 2rem;
  }

  .privacy_counterAddress {
    font-size: 1.1rem;
  }

  .privacy_procedureTtl {
    font-size: 2rem;
  }
}
/* 960px〜1279px：小型PC
------------------------------ */
/* 1280px〜：大型PC
------------------------------ */

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