/*
* main.css
*
*/
/* ------------------------
  reset
------------------------ */
html,
body {
  height: 100%;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
}

pre,
textarea {
  overflow: auto;
}

template {
  display: none;
}

details,
main,
summary {
  display: block;
}

input[type=number] {
  width: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

progress {
  display: inline-block;
}

small {
  font-size: 75%;
}

sub,
sup {
  position: relative;
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

textarea {
  resize: vertical;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

audio:not([controls]) {
  display: none;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  min-height: 1.5em;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

input {
  line-height: normal;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  border-style: none;
  cursor: pointer;
  background-color: transparent;

  -webkit-appearance: button;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

code,
kbd,
pre,
samp {
  font-family: monospace;
}

ol,
ul {
  list-style: none;
}

select {
     -moz-appearance: none;
  -webkit-appearance: none;
}

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

fieldset {
  border: 0;
}

/* ------------------------
  Base Settings
------------------------ */
html {
  font-size: inherit;
}

body {
  background-color: #fff;
  word-wrap: break-word;
  color: #333;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.6875;

  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

a {
  text-decoration: underline;
  color: #00f;
}
a:visited {
  color: #000080;
}
a:hover {
  text-decoration: none;
  color: #f00;
}
a:active {
  text-decoration: none;
  color: #ff8000;
}
a[href^="tel:"]:hover {
  color: #00f;
}
@media (min-width: 768px) {
  a[href^="tel:"] {
    cursor: text;
    text-decoration: none;
  }
}

/* ------------------------
  utilities Classes
------------------------ */
.u-hidden {
  display: none !important;
  visibility: hidden;
}

@media (max-width: 767.98px) {
  .u-hidden-sm {
    display: none !important;
    visibility: hidden;
  }
}

.u-hidden-up-sm {
  display: none !important;
  visibility: hidden;
}

@media (max-width: 767.98px) {
  .u-hidden-down-sm {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .u-hidden-md {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 768px) {
  .u-hidden-up-md {
    display: none !important;
    visibility: hidden;
  }
}

@media (max-width: 1023.98px) {
  .u-hidden-down-md {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 1024px) {
  .u-hidden-lg {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 1024px) {
  .u-hidden-up-lg {
    display: none !important;
    visibility: hidden;
  }
}

.u-hidden-down-lg {
  display: none !important;
  visibility: hidden;
}

.bl_headerLogo {
  position: absolute;
  z-index: 3;
  width: 18.6666666667vw;
}
@media (min-width: 768px) {
  .bl_headerLogo {
    width: 140px;
  }
}
.bl_headerLogo a {
  transition: opacity 0.2s;
}
.bl_headerLogo a:hover {
  opacity: 0.7;
}

.un_menuWrapper {
  position: absolute;
  z-index: 20;
  top: 2.6666666667vw;
  right: 2.1333333333vw;
}
@media (min-width: 768px) {
  .un_menuWrapper {
    display: flex;
    top: 27px;
    right: 32px;

    gap: 20px;
  }
}

.un_menuBtn {
  display: block;
  position: relative;
  z-index: 5;
  margin-right: 0;
  margin-left: auto;
  border-radius: 50%;
  width: 9.6vw;
  height: 9.6vw;
  background-color: #fff;
}
.un_menuBtn > span {
  display: block;
  position: absolute;
  z-index: 1;
  left: 50%;
  width: 3.7333333333vw;
  height: 0.5333333333vw;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translate(-50%, -50%);
  transform-origin: center;
  background-color: #015db2;

  backface-visibility: hidden;
}
.un_menuBtn > span:nth-child(1) {
  top: calc(50% - 0.5333333333vw);
}
.un_menuBtn > span:nth-of-type(2) {
  top: calc(50% + 0.5333333333vw);
}
.un_menuBtn.is_open > span:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.un_menuBtn.is_open > span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.un_headerNav {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 4.6666666667vw;
  width: 9.6vw;
  height: 9.6vw;
  background-color: #fff;
}
@media (min-width: 768px) {
  .un_headerNav {
    display: block;
    position: relative;
    padding-right: 0;
    padding-left: 0;
    width: auto;
    height: auto;
  }
}
.un_headerNav.is_open {
  width: 39.3333333333vw;
}

.un_headerNavList {
  display: flex;
  border-radius: 4.6666666667vw;
  width: 39.3333333333vw;
  background-color: #fff;
}
@media (max-width: 767.98px) {
  .un_headerNavList {
    flex-direction: column;
    padding: 5.8666666667vw 3.0666666667vw 0 4.1333333333vw;
  }
}
@media (min-width: 768px) {
  .un_headerNavList {
    justify-content: center;
    padding: 0 13px;
    border-radius: 21px;
    width: auto;
    min-width: 334px;
  }
}
@media (max-width: 767.98px) {
  .un_headerNavList li {
    position: relative;
  }
  .un_headerNavList li::after {
    content: "";
    position: absolute;
    top: -0.5333333333vw;
    right: 3px;
    bottom: 0;
    margin: auto;
    border-right: 1px solid #0064c6;
    border-bottom: 1px solid #0064c6;
    width: 6px;
    height: 6px;
    transform: rotate(45deg);
  }
}
.un_headerNavList li + li::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 50%;
  width: 1px;
  height: 10px;
  transform: translateY(-50%);
  background-color: rgba(47, 49, 51, 0.3);
}
@media (max-width: 767.98px) {
  .un_headerNavList li + li::before {
    top: auto;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(0);
    background-color: transparent;
    background-image: url("/summer/assets/img/headerMenu_line.png");
    background-repeat: repeat-x;
    background-size: 4px 1px;
  }
}
.un_headerNavList li a {
  display: block;
  padding-right: 4.8vw;
  transition: color 0.3s;
  text-align: right;
  text-decoration: none;
  color: #0064c6;
  font-size: 3.2vw;
  font-weight: bold;
  line-height: 10.8vw;
}
@media (min-width: 768px) {
  .un_headerNavList li a {
    padding: 1px 12px;
    text-align: left;
    letter-spacing: 0.1em;
    font-size: 13px;
    line-height: 40px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .un_headerNavList li a:hover {
    opacity: 1;
    color: #00d5ff;
  }
}

#btn-menu {
  overflow: hidden;
  position: relative;
  z-index: 4;
  padding: 0;
  width: 9.3333333333vw;
  height: 9.3333333333vw;
  cursor: pointer;
}

.un_menu_trigger.active .btn-bg {
  opacity: 0;
  transition: opacity 0.3s 0.3s;
}
.un_menu_trigger.active p span {
  background-color: #015db2;
}
.un_menu_trigger p {
  position: relative;
  z-index: 1;
  top: 3.7333333333vw;
  width: 9.3333333333vw;
  height: 9.3333333333vw;
}
.un_menu_trigger p.menu-btn_s span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 2.8vw;
  width: 3.7333333333vw;
  height: 0.5333333333vw;
  transition: background-color 0.3s;
  background-color: #015db2;
}

.un_snsWrapper {
  margin-top: 4.2666666667vw;
}
@media (min-width: 768px) {
  .un_snsWrapper {
    display: flex;
    align-items: center;
    margin-top: 0;

    gap: 14px;
  }
}

.el_sns {
  display: flex;
  flex-direction: row-reverse;
  margin-right: auto;
  margin-left: auto;
  width: 6.6666666667vw;
}
@media (min-width: 768px) {
  .el_sns {
    margin-right: 0;
    margin-left: 0;
    width: 35px;
  }
}
.el_sns + .el_sns {
  margin-top: 2.6666666667vw;
}
@media (min-width: 768px) {
  .el_sns + .el_sns {
    margin-top: 0;
  }
}
.el_sns a {
  display: block;
  transition: opacity 0.2s;
}
.el_sns a:hover {
  opacity: 0.7;
}

.un_menu {
  border-radius: 42px;
  width: 334px;
  background: rgba(255, 255, 255, 0.85);
  text-align: center;
}
.un_menu li {
  display: inline-block;
}
.un_menu li a {
  display: block;
  padding: 0 14px 0 22px;
  transition: color 0.3s;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #0064c6;
  font-size: 13px;
  font-weight: bold;
  line-height: 44px;
}
@media (min-width: 768px) {
  .un_menu li a {
    transition: color 0.3s;
  }
}
@media (hover: hover) and (pointer: fine) {
  .un_menu li a:hover {
    color: #00d5ff;
  }
}
.un_menu li + li::before {
  content: "";
  display: inline-block;
  position: relative;
  top: 15px;
  float: left;
  width: 2px;
  height: 14px;
  background: rgba(47, 49, 51, 0.3);
}

/* --------------------------------
   footer
-------------------------------- */
.ly_footer {
  position: relative;
  background: #fff;
}

.un_footerHead {
  position: relative;
  z-index: 3;
}

.un_footerImg img {
  width: 100%;
}

.un_footerMid {
  overflow: hidden;
  position: relative;
  z-index: 5;
  padding-top: 13.3333333333vw;
  padding-bottom: 2vw;
}
@media (min-width: 768px) {
  .un_footerMid {
    padding-top: 2.6041666667vw;
    padding-bottom: 28px;
  }
}
@media (max-width: 767.98px) {
  .un_footerMid {
    padding-top: 7.4666666667vw;
    padding-bottom: 1.0666666667vw;
  }
}
@media (min-width: 1536px) {
  .un_footerMid {
    padding-top: 8.6588541667vw;
    padding-bottom: 1.8229166667vw;
  }
}

.un_footerLogo {
  margin-right: auto;
  margin-left: auto;
  width: 19.2vw;
}
@media (min-width: 768px) {
  .un_footerLogo {
    width: 92px;
  }
}
.un_footerLogo a {
  transition: opacity 0.2s;
}
.un_footerLogo a:hover {
  opacity: 0.7;
}

.un_footerCopyRight {
  margin-top: 6.9333333333vw;
  text-align: center;
  letter-spacing: 0.05em;
  color: #0075c1;
  font-size: 2.6666666667vw;
}
@media (min-width: 768px) {
  .un_footerCopyRight {
    margin-top: 54px;
    font-size: 10px;
  }
}
.un_footerCopyRight small {
  font-size: 100%;
}

.un_footerBottom {
  position: relative;
  z-index: 3;
  padding-top: 2.6666666667vw;
  padding-bottom: 2.6666666667vw;
  border-top: 1px solid #ccc;
  background-color: var(--color-white);
}
@media (min-width: 768px) {
  .un_footerBottom {
    padding: 10px 32px 20px;
  }
}
@media (min-width: 1536px) {
  .un_footerBottom {
    padding-top: 0.6510416667vw;
    padding-bottom: 1.3020833333vw;
  }
}

.un_footerOtsukaLogo {
  margin-right: auto;
  margin-left: auto;
  width: 25.0666666667vw;
  transition: opacity 0.2s;
}
@media (min-width: 768px) {
  .un_footerOtsukaLogo {
    margin-right: 0;
    width: 126px;
  }
}
.un_footerOtsukaLogo:hover {
  opacity: 0.7;
}

/* --------------------------------
   animation
-------------------------------- */
.fadein .img {
  opacity: 0;
  transform: translateY(30px);
}

.fadein.ended .img {
  opacity: 1;
  transition: opacity 0.8s linear, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.3s;
  transform: translateY(0px);
}
@media (max-width: 767.98px) {
  .fadein.ended .img {
    transition-delay: 0.6s;
  }
}

/************************************
	pop
************************************/
#wrapper.fixed {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

body.fixed {
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modal .bg {
  position: fixed;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.modal .popBox {
  display: none;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 980px;
  height: auto;
  transform: translate3d(-50%, -50%, 0);
}
@media (max-width: 767.98px) {
  .modal .popBox {
    width: 100%;
  }
}
.modal .popBox .pop_inner {
  overflow: hidden;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
}
.modal .popBox .pop_inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  border: none;
  width: 100%;
  height: 100%;
}
.modal .mfp-close {
  display: inline-block;
  opacity: 1;
  position: fixed;
  z-index: 10;
  top: 1vw;
  right: 1vw;
  width: 60px;
  height: 60px;
  cursor: pointer;
  font-size: 0;
}
@media (max-width: 767.98px) {
  .modal .mfp-close {
    top: 3vw;
    right: 3vw;
    width: 15vw;
    height: 15vw;
  }
}
.modal .mfp-close a {
  display: block;
  width: 60px;
  height: 60px;
}
@media (max-width: 767.98px) {
  .modal .mfp-close a {
    width: 7.4vw;
    height: 7.4vw;
  }
}
.modal .mfp-close span::before,
.modal .mfp-close span::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -8% 0 0 -42%;
  margin: 0 0 0 -50%;
  width: 100%;
  height: 6%;
  background: #fff;
}
.modal .mfp-close span::before {
  transform: rotate(-45deg);
}
.modal .mfp-close span::after {
  transform: rotate(45deg);
}

.loader {
  overflow: hidden;
  position: fixed;
  z-index: 999999999;
  width: 100%;
  height: 100vh;
  background: #fff;
}

/* clearfix
--------------------------------------------------------- */
.clearfix {
  *zoom: 1;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.un_pageTop {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 10;
  right: 2.6666666667vw;
  bottom: 5.3333333333vw;
  border-radius: 100%;
  width: 10.6666666667vw;
  transition: opacity 0.2s linear, visibility 0.2s linear;
  box-shadow: 0 2px 10px 0 rgba(255, 255, 255, 0.3);
}
@media (min-width: 768px) {
  .un_pageTop {
    right: 2.6041666667vw;
    bottom: 2.6041666667vw;
    width: 50px;
  }
}
.un_pageTop:hover {
  opacity: 0.7;
}
.un_pageTop.is_show {
  visibility: visible;
  opacity: 1;
}
.un_pageTop.is_fixed {
  position: absolute;
}
@media (min-width: 768px) {
  .un_pageTop.is_fixed {
    bottom: 24px;
  }
}
@media (max-width: 767.98px) {
  .un_pageTop.is_fixed {
    bottom: -3.2vw;
  }
}
.un_pageTop > a {
  display: block;
  transition: opacity 0.2s;
}
.un_pageTop > a:hover {
  opacity: 0.7;
}

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal .bg {
  position: fixed;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.modal .popBox {
  display: none;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 71.6145833333vw;
  height: auto;
  transform: translate3d(-50%, -50%, 0);
}

@media (max-width: 767.98px) {
  .modal .popBox {
    width: 100%;
  }
}
.modal .popBox .pop_inner {
  overflow: hidden;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
}

.modal .popBox .pop_inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  border: none;
  width: 100%;
  height: 100%;
}

.modal .mfp-close {
  display: inline-block;
  opacity: 1;
  position: fixed;
  z-index: 10;
  top: 1vw;
  right: 1vw;
  width: 60px;
  height: 60px;
  cursor: pointer;
  font-size: 0;
}
@media (min-width: 768px) {
  .modal .mfp-close {
    top: -45.5729166667vw;
    right: -76.8229166667vw;
    bottom: 0;
    left: 0;
    margin: auto;
  }
}

@media (max-width: 767.98px) {
  .modal .mfp-close {
    top: 3vw;
    right: 3vw;
    width: 12vw;
    height: 12vw;
  }
}
.modal .mfp-close a {
  display: block;
  width: 60px;
  height: 60px;
}

@media (max-width: 767.98px) {
  .modal .mfp-close a {
    width: 7.4vw;
    height: 7.4vw;
  }
}
.modal .mfp-close span::before,
.modal .mfp-close span::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -8% 0 0 -42%;
  margin: 0 0 0 -50%;
  width: 100%;
  height: 6%;
  background: #fff;
}

.modal .mfp-close span::before {
  transform: rotate(-45deg);
}

.modal .mfp-close span::after {
  transform: rotate(45deg);
}

/* ------------------------
  Print Styles
------------------------ */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
/*# sourceMappingURL=main.css.map */