@charset 'UTF-8';

/*
 * Update date: 2018-10-25
 */

/* ------------------------------------------- */
/*                                             */
/* Table of Contents                           */
/*                                             */
/* 1- Reset                                    */
/* 2- Structure                                */
/* 3- Content                                  */
/* X- Tricks                                   */
/*                                             */
/* ------------------------------------------- */

/* 1- Reset                                    */
/* ------------------------------------------- */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-family: 'Open Sans', Calibri, sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
}

@-ms-viewport {
  width: device-width;
}

body {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  color: #2c3e50;
  background-color: #fff;
}

[tabindex='-1']:focus {
  outline: none !important;
}

article,
aside,
dialog,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

hr {
  overflow: visible;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: .5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  cursor: help;
  text-decoration: underline;
  text-decoration: underline dotted;
  border-bottom: 0;
  -webkit-text-decoration: underline dotted;
}

address {
  font-style: normal;
  line-height: inherit;
  margin-bottom: 1rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

dfn {
  font-style: italic;
}

b,
strong {
  font-weight: bold;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

a {
  text-decoration: none;
  color: $green;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;

  &:hover {
    text-decoration: underline;
    color: $green-dark;
  }

  &:not([href]):not([tabindex]) {
    text-decoration: none;
    color: inherit;

    &:focus,
    &:hover {
      text-decoration: none;
      color: inherit;
    }

    &:focus {
      outline: 0;
    }
  }
}

pre,
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

pre {
  overflow: auto;
  margin-top: 0;
  margin-bottom: 1rem;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

a,
area,
button,
[role='button'],
input:not([type='range']),
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: .75rem;
  padding-bottom: .75rem;
  caption-side: bottom;
  text-align: left;
  color: #868e96;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: .5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type='radio'],
input[type='checkbox'] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

input[type='date'],
input[type='time'],
input[type='datetime-local'],
input[type='month'] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  font-size: 1.5rem;
  line-height: inherit;
  display: block;
  width: 100%;
  max-width: 100%;
  margin-bottom: .5rem;
  padding: 0;
  white-space: normal;
  color: inherit;
}

progress {
  vertical-align: baseline;
}

[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}

[type='search'] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type='search']::-webkit-search-cancel-button,
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

/* 2- Structure                                */
/* ------------------------------------------- */
.mypage {
  background-color: #fff;
}

.mypage-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 8px;
  box-sizing: border-box !important;
}

.main-header .mypage-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Header */
.main-header {
  padding: 10px 0;
}

.mypage-logo {
  margin-right: 32px;
}

.mypage-navigation {
  display: flex;
  align-items: center;
}

.main-menu ul {
  display: flex;
  align-items: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.main-menu li {
  margin-right: 26px;
}

.main-header a {
  cursor: pointer;
  color: #72828a;
}

.main-header a:not(.active):hover {
  color: #222;
}

.main-header a.active {
  color: #f04d52;
}

.main-header a i {
  margin-right: 4px;
}

.mypage-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.mypage-contact .phone {
  font-size: 24px;
  font-weight: 600;
}

.mypage-contact .mail {
  font-size: 13px;
}

/* Footer */
.main-footer {
  background-color: #4a575d;
  color: #fff;
}

.main-footer .mypage-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 200px;
  padding: 30px 8px;
}

.footer-title {
  margin: 0 0 16px 0;
  font-weight: 400;
  color: #ccc;
}

.social-network {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #72828a;
  border: 1px solid #72828a;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-decoration: none;
  font-size: 20px;
  margin-left: 4px;
}

.social-network:hover {
  color: #fff;
  border-color: #fff;
}

.footer-addock h5 {
  color: #aaa;
  font-weight: 400;
  margin: 8px 0 0 0;
}

.footer-addock a {
  color: #aaa;
  font-weight: 600;
  text-decoration: none;
}

.footer-addock a:hover {
  text-decoration: underline;
}

.footer-payment .footer-title {
  text-align: center;
}

.footer-payment img {
  height: 26px;
  margin: 0 4px;
}

.footer-payment img.visa {
  height: 22px;
}

.footer-socialNetworks {
  margin-top: 15px;
}

.footer-socialNetworks a {
  margin-right: 10px;
  opacity: .5;
  transition: .2s ease-in-out;
  -webkit-transition: .2s ease-in-out;
}

.footer-socialNetworks a:hover {
  opacity: 1;
}

/* 3- Content                                  */
/* ------------------------------------------- */
.banner {
  position: relative;
  overflow: hidden;
}

.banner__div {
  height: 500px;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.banner__img {
  display: block;
  width: 100%;
  max-width: 100%;
}

.headline {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  min-width: 1000px;
  max-width: calc(100% - 100px);
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .1);
  transform: translate(-50%, -50%);
}

.headline-title {
  font-size: 42px;
  font-weight: 800;
  text-shadow: 2px 2px 2px #666;
}

.headline-description {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  text-shadow: 2px 2px 2px #666;
}

#apropos-content {
  display: none;
}

article.mypage-container {
  position: relative;
  min-height: 500px;
  padding: 16px 8px;
}

[id*="iframe_loading"] {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, calc(-50% - 40px));
}

@media screen and (max-width: 1000px) {
  .headline {
    min-width: 0;
    width: 100%;
  }
}

@media screen and (max-width: 900px) {
  .main-footer .mypage-container {
    flex-direction: column;
    align-items: center;
    padding: 16px 8px;
  }

  .main-footer .mypage-container>* {
    margin-bottom: 16px;
  }

  .footer-title {
    text-align: center !important;
  }
}

@media screen and (max-width: 570px) {
  .mypage-contact .phone {
    font-size: 13px;
  }

  .mypage-contact .mail {
    font-size: 11px;
  }

  .banner,
  .banner .banner__div {
    height: 300px;
  }

  .banner.no-image {
    height: auto;
  }

  .headline-title {
    font-size: 30px;
  }

  .headline-description {
    font-size: 16px;
  }

  .main-menu {
    display: none;
  }
}

/* X- Tricks                                   */
/* ------------------------------------------- */
.txt-xs {
  font-size: .75rem;
}

.txt-sm {
  font-size: .875rem;
}

.txt-l {
  font-size: 1.125rem;
}

.txt-xl {
  font-size: 1.25rem;
}

.txt-xxl {
  font-size: 1.5rem;
}

.txt-xxxl {
  font-size: 2rem;
}

.txt-center {
  text-align: center;
}

.txt-left {
  text-align: left;
}

.txt-right {
  text-align: right;
}

.pt10 {
  padding-top: 10px;
}

/* Class for conditionnal mobile rendering     */
/* ------------------------------------------- */

.desktop-only {
  display: none;
}

.mobile-only {
  display: block;
}

@media screen and (min-width: 1025px) {
  .desktop-only {
    display: block;
  }

  .mobile-only {
    display: none;
  }
}