@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");

/* noto-sans-jp-regular - latin_japanese */
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src:
    local("Noto Sans Japanese Regular"),
    local("NotoSansJapanese-Regular"),
    url("../fonts/NotoSansJP-Regular.woff2") format("woff2"),
    url("../fonts/NotoSansJP-Regular.woff") format("woff");
}
/* noto-sans-jp-500 - latin_japanese */
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src:
    local("Noto Sans Japanese Medium"),
    local("NotoSansJapanese-Medium"),
    url("../fonts/NotoSansJP-Medium.woff2") format("woff2"),
    url("../fonts/NotoSansJP-Medium.woff") format("woff");
}
/* noto-sans-jp-700 - latin_japanese */
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src:
    local("Noto Sans Japanese Bold"),
    local("NotoSansJapanese-Bold"),
    url("../fonts/NotoSansJP-Bold.woff2") format("woff2"),
    url("../fonts/NotoSansJP-Bold.woff") format("woff");
}

*,
*::before,
*::after {
  box-sizing: border-box;
  font-variant-ligatures: none;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
}
body {
  font-family:
    "Noto Sans JP",
    -apple-system,
    BlinkMacSystemFont,
    "Helvetica Neue",
    YuGothic,
    "ヒラギノ角ゴ ProN W3",
    Hiragino Kaku Gothic ProN,
    Arial,
    "メイリオ",
    Meiryo,
    sans-serif;
  font-size: 100%;
  font-weight: 400;
  color: #000;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
img {
  vertical-align: bottom;
  max-width: 100%;
}
img[src$=".svg"] {
  width: 100%;
  height: auto;
  flex-shrink: 0;
  display: block;
}

/* FONT
***************************************************************/
.sans {
  font-family:
    "Noto Sans JP",
    -apple-system,
    BlinkMacSystemFont,
    "Helvetica Neue",
    YuGothic,
    "ヒラギノ角ゴ ProN W3",
    Hiragino Kaku Gothic ProN,
    Arial,
    "メイリオ",
    Meiryo,
    sans-serif;
  font-weight: 400;
}
.serif {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
}
.oswald {
  font-family: "Oswald", sans-serif;
  font-style: normal;
}

/* LINK
***************************************************************/
a {
  transition: 0.3s ease;
  text-decoration: none;
  color: #000;
}
a:active,
a:focus {
  outline: none;
}
a img {
  transition: 0.3s ease;
}

/* NONE
***************************************************************/
.none {
  display: none;
}
.linkNone {
  pointer-events: none;
}
@media all and (min-width: 681px) {
  .nonePC {
    display: none !important;
  }
  .linkNonePC {
    pointer-events: none;
  }
}
@media all and (max-width: 680px) {
  .noneSP {
    display: none !important;
  }
  .linkNoneSP {
    pointer-events: none;
  }
}

/* clearfix
***************************************************************/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* Load Effect
***************************************************************/
@keyframes opacity {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body {
  animation: opacity ease 1s forwards;
}

/* GoogleMap
***************************************************************/
.gm-style-pbt {
  text-align: center;
}
@media all and (max-width: 680px) {
  .gm-style-pbt {
    font-size: 16px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

#infscr-loading {
  text-align: center;
}
.comingSoon {
  text-align: center;
  padding-bottom: 50px;
}

/* lazyload
***************************************************************/

.lazyload {
  opacity: 0;
}
.lazyloaded {
  opacity: 1;
  transition: opacity ease 0.3s;
}

/* フェード
***************************************************************/

@keyframes action1_up {
  0% {
    opacity: 0;
    transform: translate(0, 100px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes action1_left {
  0% {
    opacity: 0;
    transform: translate(-100px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes action1_right {
  0% {
    opacity: 0;
    transform: translate(100px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes action1_up_sp {
  0% {
    opacity: 0;
    transform: translate(0, 50px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes action1_left_sp {
  0% {
    opacity: 0;
    transform: translate(-50px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes action1_right_sp {
  0% {
    opacity: 0;
    transform: translate(50px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@media all and (min-width: 681px) {
  .action.up {
    opacity: 0;
    transform: translate(0, 40px);
  }
  .action.left {
    opacity: 0;
    transform: translate(-40px, 0);
  }
  .action.right {
    opacity: 0;
    transform: translate(40px, 0);
  }
  .action.up.scrollin,
  .action.left.scrollin,
  .action.right.scrollin {
    opacity: 1;
    transform: translate(0, 0);
    transition:
      transform 2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s,
      opacity 2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  }
  .action.delay1.scrollin {
    transition:
      transform 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1s,
      opacity 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  }
  .action.delay2.scrollin {
    transition:
      transform 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.5s,
      opacity 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.5s;
  }
  .action.delay3.scrollin {
    transition:
      transform 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2s,
      opacity 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2s;
  }
  .action.delay4.scrollin {
    transition:
      transform 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.5s,
      opacity 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.5s;
  }

  .action1 {
    opacity: 0;
    animation: opacity ease 1s forwards 0.25s;
  }
  .action1.delay1 {
    animation: opacity ease 1s forwards 0.75s;
  }
  .action1.delay2 {
    animation: opacity ease 1s forwards 1.25s;
  }

  .action1_up {
    opacity: 0;
    transform: translate(0, 100px);
    animation: action1_up ease 1s forwards 0.5s;
  }
  .action1_up.delay1 {
    animation: action1_up ease 1s forwards 0.75s;
  }
  .action1_up.delay2 {
    animation: action1_up ease 1s forwards 1s;
  }

  .action1_left {
    opacity: 0;
    transform: translate(-100px, 0);
    animation: action1_left ease 1s forwards 0.5s;
  }
  .action1_left.delay1 {
    animation: action1_left ease 1s forwards 0.75s;
  }
  .action1_left.delay2 {
    animation: action1_left ease 1s forwards 1s;
  }

  .action1_right {
    opacity: 0;
    transform: translate(100px, 0);
    animation: action1_right ease 1s forwards 0.5s;
  }
  .action1_right.delay1 {
    animation: action1_right ease 1s forwards 0.75s;
  }
  .action1_right.delay2 {
    animation: action1_right ease 1s forwards 1s;
  }
}

@media all and (max-width: 680px) {
  .action.up_sp {
    opacity: 0;
    transform: translate(0, 50px);
  }
  .action.left_sp {
    opacity: 0;
    transform: translate(-40px, 0);
  }
  .action.right_sp {
    opacity: 0;
    transform: translate(40px, 0);
  }
  .action.up_sp.scrollin,
  .action.left_sp.scrollin,
  .action.right_sp.scrollin {
    opacity: 1;
    transform: translate(0, 0);
    transition:
      transform 2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s,
      opacity 2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  }
  .action.delay1_sp.scrollin {
    transition:
      transform 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1s,
      opacity 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  }
  .action.delay2_sp.scrollin {
    transition:
      transform 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.5s,
      opacity 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.5s;
  }
  .action.delay3_sp.scrollin {
    transition:
      transform 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2s,
      opacity 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2s;
  }
  .action.delay4_sp.scrollin {
    transition:
      transform 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.5s,
      opacity 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.5s;
  }

  .action1_up_sp {
    opacity: 0;
    transform: translate(0, 50px);
    animation: action1_up_sp ease 1s forwards 0.5s;
  }
  .action1_up_sp.delay1 {
    animation: action1_up_sp ease 1s forwards 0.75s;
  }
  .action1_up_sp.delay2 {
    animation: action1_up_sp ease 1s forwards 1s;
  }

  .action1_left_sp {
    opacity: 0;
    transform: translate(-50px, 0);
    animation: action1_left_sp ease 1s forwards 0.5s;
  }
  .action1_left_sp.delay1 {
    animation: action1_left_sp ease 1s forwards 0.75s;
  }
  .action1_left_sp.delay2 {
    animation: action1_left_sp ease 1s forwards 1s;
  }

  .action1_right_sp {
    opacity: 0;
    transform: translate(50px, 0);
    animation: action1_right_sp ease 1s forwards 0.5s;
  }
  .action1_right_sp.delay1 {
    animation: action1_right_sp ease 1s forwards 0.75s;
  }
  .action1_right_sp.delay2 {
    animation: action1_right_sp ease 1s forwards 1s;
  }
}

@keyframes blur {
  0% {
    opacity: 0;
    -ms-filter: blur(6px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    -ms-filter: blur(0);
    filter: blur(0);
  }
}
.blur {
  opacity: 0;
}
.scrollin.blur {
  animation: blur 1.5s ease-in-out 0.5s forwards;
}

@keyframes passing-bar {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}

@keyframes passing-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.action1 {
  position: relative;
}
.action1::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #f27e00;
  z-index: 1;
}
.action1.scrollin::before {
  animation: passing-bar 0.6s ease 0.4s 1 normal forwards;
}
.action1 .action_item {
  display: block;
  opacity: 0;
  transform: translate3d(0, 0, 0);
}
.action1.scrollin .action_item {
  animation: passing-txt 0.6s ease 0.3s 1 normal forwards;
}

/* head
***************************************************************/
#header {
  width: 100%;
  height: 60px;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5555;
  display: flex;
  justify-content: space-between;
}
.siteID {
  display: block;
  width: 80px;
}
.h_box1 {
  display: flex;
  align-items: center;
}
.h_archive_btn1 {
  width: 100px;
  height: 28px;
  background-color: #ffe900;
  color: #006a9a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
  margin-right: 38px;
}
.gNav {
  display: flex;
  padding-right: 30px;
}
.gNav .li1:nth-of-type(1n + 2) {
  margin-left: 30px;
}
.gNav .link1 {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  height: 60px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.43;
}
.gNav .link1 .s1 {
  font-size: 12px;
}
.h_conv1 {
  width: 120px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f555a8;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
}
.h_jp_en {
  width: 100px;
  display: block;
  margin-left: 20px;
  margin-right: 20px;
}
.h_toggle {
  width: 60px;
  height: 60px;
  background-color: #006ab0;
  position: relative;
  z-index: 10;
  cursor: pointer;
  transition: 0.3s ease;
}
.h_toggle::before,
.h_toggle::after {
  content: "";
  background-color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  margin: auto;
  display: block;
  width: 30px;
  height: 3px;
  transition: 0.3s ease-in-out;
}
.h_toggle::before {
  transform: translateY(-5px) rotate(0deg);
}
.h_toggle::after {
  transform: translateY(5px) rotate(0deg);
}
.open .h_toggle::before {
  transform: translateY(0) rotate(-30deg);
}
.open .h_toggle::after {
  transform: translateY(0) rotate(30deg);
}
.d_nav {
  width: 400px;
  height: 100vh;
  background-color: #006ab0;
  padding: 70px 0 50px;
  position: fixed;
  top: 0;
  right: -420px;
  z-index: 8;
  transition: right 0.3s ease;
  overflow: auto;
}
.open .d_nav {
  right: 0;
}
.d_nav_list1 .li1 {
  border-bottom: 1px solid #fff;
}
.d_nav_list1 .link1 {
  width: 100%;
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
  padding: 8px 40px 12px;
  color: #fff;
}
.d_nav_list1 .link1 .t1 {
  font-size: 30px;
  font-weight: 600;
}
.d_subNav {
  padding: 25px 0 0 20px;
  display: flex;
}
.d_subNav .link1 {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  padding: 0 20px;
}
.d_subNav .link1:nth-of-type(n + 2) {
  border-left: 1px solid #fff;
}
@media all and (min-width: 681px) {
  body,
  #header {
    min-width: 1200px;
  }
  .main {
    padding-top: 60px;
  }
  a.siteID:hover {
    opacity: 0.7;
  }
  .gNav a.link1:hover {
    color: #f555a8;
  }
  a.h_conv1:hover {
    background-color: #006ab0;
  }
  a.h_jp_en:hover {
    opacity: 0.7;
  }
  .h_toggle:hover {
    background-color: #f555a8;
  }
  .d_nav_list1 .link1:hover {
    background-color: #fff;
    color: #006ab0;
  }
  .d_subNav .link1:hover {
    opacity: 0.6;
  }
  .h_archive_btn1:hover {
    background-color: #006a9a;
    color: #fff;
  }
}
@media all and (max-width: 680px) {
  .main {
    padding-top: 40px;
  }
  #header {
    height: 40px;
  }
  .siteID {
    display: block;
    width: 53.35px;
  }
  .h_archive_btn1 {
    width: 80px;
    height: 20px;
    font-size: 12px;
    margin-right: 0;
  }
  .h_conv1 {
    width: 90px;
    height: 30px;
    font-size: 14px;
  }
  .h_jp_en {
    width: 70px;
    margin-left: 10px;
    margin-right: 10px;
  }
  .h_toggle {
    width: 40px;
    height: 40px;
  }
  .h_toggle::before,
  .h_toggle::after {
    width: 20px;
    height: 2px;
  }
  .h_toggle::before {
    transform: translateY(-3.5px) rotate(0deg);
  }
  .h_toggle::after {
    transform: translateY(3.5px) rotate(0deg);
  }
  .d_nav {
    width: 100%;
    height: 100vh;
    padding: 40px 20px 50px;
    right: -100vw;
  }
  .open .d_nav {
    right: 0;
  }
  .d_nav_list1 .link1 {
    font-size: 13px;
    padding: 10px 20px;
  }
  .d_nav_list1 .link1 .t1 {
    font-size: 20px;
  }
  .d_subNav {
    padding: 30px 0 0;
    justify-content: center;
  }
  .d_subNav .link1 {
    font-size: 13px;
    padding: 0 15px;
  }
}
@media all and (max-width: 370px) {
}

/* syusaiWrap
***************************************************************/
.syusaiWrap {
  padding-top: 100px;
  background-color: #fff;
}
.syusai_dl1 {
  width: 765px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.syusai_dl1 + .syusai_dl1 {
  border-top: 1px solid #000;
}
.syusai_dl1 .dt1 {
  width: 145px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
}
.syusai_dl1 .dd1 {
  width: calc(100% - 145px);
  padding: 30px 0;
  display: flex;
  align-items: center;
}
.syusai_dl1 .dd1 .syusai_img1:nth-of-type(1n + 2) {
  margin-left: 34px;
}
.syusai_img1 {
  display: block;
}
@media all and (min-width: 681px) {
  .syusai_dl1 .dd1 .syusai_img1.img3 {
    width: 333px;
    display: flex;
    justify-content: center;
  }
  .syusai_dl1 .dd1 .syusai_img1.img4 {
    width: 177px;
    display: flex;
    justify-content: center;
  }
  a.syusai_img1:hover {
    opacity: 0.7;
  }
}
@media all and (max-width: 680px) {
  .syusaiWrap {
    padding: 50px 5% 0;
  }
  .syusai_dl1 {
    width: 100%;
  }
  .syusai_dl1 .dt1 {
    width: 60px;
    font-size: 15px;
  }
  .syusai_dl1 .dd1 {
    width: calc(100% - 60px);
    padding: 20px 0;
  }
  .syusai_dl1 .dd1 .syusai_img1:nth-of-type(1n + 2) {
    margin-left: 27px;
  }
  .syusai_dl1 .dd1 .syusai_img1 {
    display: flex;
    justify-content: center;
  }
  .syusai_dl1 .dd1 .syusai_img1.img1 {
    width: 166.5px;
  }
  .syusai_dl1 .dd1 .syusai_img1.img1 img {
    width: 166.5px;
  }
  .syusai_dl1 .dd1 .syusai_img1.img2 {
    width: 88.5px;
  }
  .syusai_dl1 .dd1 .syusai_img1.img2 img {
    width: 88.5px;
  }
  .syusai_dl1 .dd1 .syusai_img1.img3 {
    width: 166.5px;
  }
  .syusai_dl1 .dd1 .syusai_img1.img3 img {
    width: 74.5px;
  }
  .syusai_dl1 .dd1 .syusai_img1.img4 {
    width: 88.5px;
  }
  .syusai_dl1 .dd1 .syusai_img1.img4 img {
    width: 74.5px;
  }
}
@media all and (max-width: 370px) {
}

/* footer
***************************************************************/
#footer {
  width: 100%;
  background-color: #006ab0;
}
.f_inner1 {
  width: 1000px;
  margin: 0 auto;
  padding: 50px 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.f_logo1 {
  width: 304px;
}
.f_box1_list1 {
  padding-top: 34px;
  display: flex;
}
.f_box1_list1 .li1:nth-of-type(1n + 2) {
  border-left: 1px solid #fff;
  margin-left: 15px;
  padding-left: 15px;
}
.f_box1_list1 .link1 {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  color: #fff;
  display: block;
}
.f_box2 {
  width: 640px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
}
.f_box2_tit1 {
  color: #006ab0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
}
.f_box2_block1 {
  width: 390px;
}
.f_box2_dl1 {
  display: flex;
  align-items: center;
}
.f_box2_dl1 + .f_box2_dl1 {
  margin-top: 10px;
}
.f_box2_dl1 .dt1 {
  width: 120px;
  height: 30px;
  border: 1px solid #006ab0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0;
  color: #006ab0;
}
.f_box2_dl1 .dd1 {
  width: calc(100% - 120px);
  padding-left: 15px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
}
.cRight {
  width: 100%;
  background-color: #fff;
  color: #006ab0;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0;
  padding: 5px 0;
}
@media all and (min-width: 681px) {
  .f_box1_list1 .link1:hover {
    opacity: 0.7;
  }
}
@media all and (max-width: 680px) {
  .f_inner1 {
    width: 100%;
    padding: 20px 5% 20px;
    display: block;
  }
  .f_box1 {
    width: 100%;
    padding-bottom: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
  .f_logo1 {
    width: 152px;
  }
  .f_box1_list1 {
    padding-top: 0;
    display: block;
  }
  .f_box1_list1 .li1:nth-of-type(1n + 2) {
    border-left: none;
    margin-left: 0;
    padding-left: 0;
    margin-top: 5px;
  }
  .f_box1_list1 .link1 {
    font-size: 12px;
  }
  .f_box2 {
    width: 100%;
    display: block;
    padding: 10px 15px 15px;
  }
  .f_box2_tit1 {
    font-size: 16px;
  }
  .f_box2_block1 {
    width: 100%;
    padding-top: 10px;
  }
  .f_box2_dl1 + .f_box2_dl1 {
    margin-top: 8px;
  }
  .f_box2_dl1 .dt1 {
    width: 90px;
    height: 21px;
    font-size: 11px;
  }
  .f_box2_dl1 .dd1 {
    width: calc(100% - 90px);
    padding-left: 10px;
    font-size: 11px;
  }
  .cRight {
    font-size: 10px;
    padding: 8px 0;
  }
}
@media all and (max-width: 370px) {
}

/* sub_mv1
***************************************************************/
.sub_mv1 {
  width: 100%;
  position: relative;
}
.sub_mv1_img {
  width: 100%;
}
.mv_pan {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
}
.mv_pan_list1 {
  padding: 4px 15px;
  background-color: #fff;
  display: flex;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
}
.mv_pan_list1 .li1 {
  position: relative;
}
.mv_pan_list1 .li1:nth-of-type(n + 2) {
  margin-left: 30px;
}
.mv_pan_list1 .li1:nth-of-type(n + 2)::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #006ab0;
  border-right: 2px solid #006ab0;
  position: absolute;
  left: -20px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
}
.main1Wrap {
  background-color: #006ab0;
  color: #fff;
  padding: 30px 0 150px;
}
.privacy_inner1 {
  width: 800px;
  margin: 0 auto;
  padding-top: 70px;
}
.privacy_h2 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
  border-bottom: 1px solid #fff;
  padding-bottom: 15px;
}
.privacy_h3 {
  font-size: 24px;
  font-weight: 700;
  text-align: justify;
  letter-spacing: 0;
  line-height: 1.5;
  margin-top: 40px;
}
.en .privacy_h3 {
  text-align: left;
  word-break: keep-all;
}
.privacy_p1 {
  font-size: 16px;
  font-weight: 400;
  text-align: justify;
  letter-spacing: 0;
  line-height: 1.75;
  margin-top: 20px;
}
.en .privacy_p1 {
  text-align: left;
  word-break: keep-all;
}
.privacy_p1.right {
  text-align: right;
}
.privacy_p1 a {
  color: #fff;
  text-decoration: underline;
}
.privacy_ol1 {
  counter-reset: item;
  font-size: 16px;
  font-weight: 400;
  text-align: justify;
  letter-spacing: 0;
  line-height: 1.75;
  margin-top: 20px;
}
.en .privacy_ol1 {
  text-align: left;
  word-break: keep-all;
}
.privacy_ol1 p {
  display: inline;
}
.privacy_ol1 > li {
  padding-left: 40px;
  text-indent: -40px;
}
.privacy_ol1 > li:nth-of-type(n + 2) {
  margin-top: 25px;
}
.privacy_ol1 > li:before {
  counter-increment: item;
  content: "（" counter(item) "）";
}
.privacy_ol1 ol {
  counter-reset: item;
  padding-top: 15px;
}
.privacy_ol1 ol > li {
  padding-left: 14px;
  text-indent: -14px;
}
.privacy_ol1 ol > li:nth-of-type(n + 2) {
  margin-top: 10px;
}
.privacy_ol1 ol > li:before {
  counter-increment: item;
  content: counter(item) ".";
}
.privacy_ol1 ul {
  padding-top: 15px;
}
.privacy_ol1 ul > li {
  padding-left: 16px;
  text-indent: -16px;
}
.privacy_ol1 ul > li:nth-of-type(n + 2) {
  margin-top: 10px;
}
.privacy_ol1 ul > li:before {
  content: "・";
}
@media all and (min-width: 681px) {
  .privacy_p1 a:hover {
    text-decoration: none;
  }
}
@media all and (max-width: 680px) {
  .main1Wrap {
    padding: 20px 5% 70px;
  }
  .privacy_inner1 {
    width: 100%;
    padding-top: 60px;
  }
  .privacy_h2 {
    font-size: 24px;
    padding-bottom: 12px;
  }
  .privacy_h3 {
    font-size: 20px;
    margin-top: 20px;
  }
  .privacy_p1 {
    font-size: 14px;
    margin-top: 12px;
  }
  .privacy_ol1 {
    font-size: 14px;
    margin-top: 12px;
  }
  .privacy_ol1 > li {
    padding-left: 36px;
    text-indent: -36px;
  }
  .privacy_ol1 > li:nth-of-type(n + 2) {
    margin-top: 12px;
  }
  .privacy_ol1 ol {
    padding-top: 12px;
  }
  .privacy_ol1 ol > li {
    padding-left: 12px;
    text-indent: -12px;
  }
  .privacy_ol1 ol > li:nth-of-type(n + 2) {
    margin-top: 12px;
  }
  .privacy_ol1 ul {
    padding-top: 12px;
  }
  .privacy_ol1 ul > li {
    padding-left: 13px;
    text-indent: -13px;
  }
  .privacy_ol1 ul > li:nth-of-type(n + 2) {
    margin-top: 12px;
  }
}
@media all and (max-width: 370px) {
}

/* top_btn1
***************************************************************/
.top_btn1 {
  width: 300px;
  height: 80px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #f555a8;
  position: relative;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
  background: #f555a8 url(../img/common/arrow1_w.svg) no-repeat right 15px center / 20px;
}
.top_btn1 .s1 {
  font-size: 15px;
  display: block;
}
.top_btn1.type_movie {
  background: #f555a8 url(../img/common/arrow_movie1_w.svg) no-repeat left 20px center / 40px;
  padding-left: 25px;
  width: 340px;
}
@media all and (min-width: 681px) {
  .top_btn1:hover {
    opacity: 0.8;
  }
}
@media all and (max-width: 680px) {
  .top_btn1 {
    width: 225px;
    height: 60px;
    font-size: 16px;
  }
  .top_btn1 .s1 {
    font-size: 13px;
  }
  .top_btn1.type_movie {
    background-size: 30px;
    width: 100%;
  }
}
@media all and (max-width: 370px) {
}

/* コンテンツ
***************************************************************/
@media all and (min-width: 681px) {
}
@media all and (max-width: 680px) {
}
@media all and (max-width: 370px) {
}

/* コンテンツ
***************************************************************/
@media all and (min-width: 681px) {
}
@media all and (max-width: 680px) {
}
@media all and (max-width: 370px) {
}

/* コンテンツ
***************************************************************/
@media all and (min-width: 681px) {
}
@media all and (max-width: 680px) {
}
@media all and (max-width: 370px) {
}
